@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/poppins-400.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/poppins-500.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/poppins-600.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/poppins-700.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/poppins-800.woff2") format("woff2");
}

:root {
  --deep: #4c1d95;
  --deepest: #24105e;
  --purple: #7c3aed;
  --lavender: #a78bfa;
  --teal: #14b8a6;
  --coral: #ff6b6b;
  --ink: #0f172a;
  --body: #33436a;
  --muted: #64748b;
  --cloud: #f3f4f6;
  --soft-purple: #faf8ff;
  --line: #e7e2f2;
  --shadow: 0 18px 45px rgb(76 29 149 / 0.12);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 7.5rem;
}

body {
  margin: 0;
  background: #fff;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.5;
}

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

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

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

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 20;
  border-radius: 0.5rem;
  background: var(--deep);
  color: #fff;
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: 98px;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--cloud);
  background: rgb(255 255 255 / 0.96);
  padding: 0.35rem clamp(1.25rem, 5vw, 5rem);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: flex;
  width: clamp(155px, 14vw, 170px);
  flex: 0 0 auto;
  align-items: center;
  overflow: hidden;
}

.brand-lockup img {
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-left: auto;
}

nav a {
  font-size: 0.9rem;
  font-weight: 600;
}

nav a:hover,
nav a:focus-visible {
  color: var(--purple);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, var(--deep), var(--purple));
  box-shadow: 0 10px 24px rgb(76 29 149 / 0.2);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.82rem 1.1rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  box-shadow: 0 14px 28px rgb(76 29 149 / 0.28);
  transform: translateY(-2px);
}

.button:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible {
  outline: 3px solid rgb(20 184 166 / 0.38);
  outline-offset: 3px;
}

.header-cta {
  margin-left: 0.8rem;
}

.menu-toggle {
  display: none;
}

.section-shell {
  width: min(100%, 1340px);
  margin: 0 auto;
  padding-right: clamp(1.4rem, 5vw, 5rem);
  padding-left: clamp(1.4rem, 5vw, 5rem);
}

.hero {
  display: grid;
  min-height: 500px;
  align-items: center;
  gap: clamp(2rem, 3vw, 3rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0 0 1.5rem;
  color: var(--deepest);
  font-size: clamp(3.15rem, 5.2vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--purple), var(--coral));
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 31rem;
  margin: 0 0 1.8rem;
  color: var(--body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
}

.hero-ecosystem {
  position: relative;
  min-height: 410px;
  isolation: isolate;
  animation: hero-reveal 700ms ease-out both;
}

.hero-ecosystem::before {
  position: absolute;
  inset: 7% 2% 5%;
  z-index: -3;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgb(167 139 250 / 0.18) 0,
    rgb(124 58 237 / 0.07) 38%,
    transparent 72%
  );
  content: "";
  filter: blur(10px);
}

.ecosystem-bloom {
  position: absolute;
  top: 102px;
  left: 50%;
  z-index: 2;
  width: 185px;
  filter: drop-shadow(0 20px 18px rgb(76 29 149 / 0.18));
  transform: translateX(-50%);
  animation: hero-float 6s ease-in-out 800ms infinite;
}

.ecosystem-card {
  position: absolute;
  z-index: 4;
  display: flex;
  width: 168px;
  min-height: 86px;
  align-items: center;
  gap: 0.72rem;
  border: 1px solid rgb(76 29 149 / 0.06);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.96);
  box-shadow: 0 16px 35px rgb(76 29 149 / 0.1);
  padding: 0.9rem 0.85rem;
}

.ecosystem-card strong {
  color: var(--deepest);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.45;
}

.ecosystem-learning {
  top: 10px;
  left: 2%;
}

.ecosystem-teams {
  top: 10px;
  right: 2%;
}

.ecosystem-attendance {
  bottom: 8px;
  left: 0;
}

.ecosystem-shifts {
  right: 0;
  bottom: 8px;
}

.app-stack {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.app-stack img,
.ecosystem-app-icon {
  width: 34px;
  height: 34px;
  border-radius: 0.65rem;
  object-fit: contain;
}

.app-stack img {
  border: 2px solid #fff;
}

.app-stack img + img {
  margin-left: -12px;
}

.connector {
  position: absolute;
  z-index: -1;
  width: 30%;
  height: 92px;
  border-color: rgb(124 58 237 / 0.55);
  border-style: dashed;
  border-width: 0;
}

.connector-learning {
  top: 86px;
  left: 18%;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-radius: 0 0 0 2rem;
}

.connector-teams {
  top: 86px;
  right: 18%;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-radius: 0 0 2rem;
}

.connector-attendance {
  bottom: 82px;
  left: 15%;
  border-top-width: 1px;
  border-left-width: 1px;
  border-radius: 2rem 0 0;
}

.connector-shifts {
  right: 15%;
  bottom: 82px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-radius: 0 2rem 0 0;
}

.products {
  padding-top: 5.5rem;
  padding-bottom: 5.75rem;
}

.section-heading {
  max-width: 730px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.story h2 {
  margin: 0 0 0.7rem;
  color: var(--deepest);
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.product-columns {
  display: grid;
  align-items: start;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 3rem;
}

.product-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 12px 32px rgb(76 29 149 / 0.05);
}

.group-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--soft-purple);
  padding: 1.5rem;
}

.group-heading h3 {
  margin: 0 0 0.35rem;
  color: var(--deepest);
  font-size: 1.12rem;
  font-weight: 700;
}

.group-heading p {
  max-width: 25rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.status,
.product-status {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--lavender);
  border-radius: 999px;
  color: var(--purple);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  padding: 0.34rem 0.55rem;
  white-space: nowrap;
}

.status {
  margin-left: auto;
}

.status-teal,
.product-status-teal {
  border-color: rgb(20 184 166 / 0.55);
  color: #078f82;
}

.product-list {
  display: grid;
  gap: 0;
}

.product {
  display: grid;
  align-items: center;
  gap: 1rem;
  grid-template-columns: 84px 1fr;
  padding: 1.2rem 1.35rem;
}

.product + .product {
  border-top: 1px solid var(--line);
}

.product img {
  width: 84px;
  height: 84px;
  border-radius: 1.2rem;
  object-fit: contain;
}

.product h4 {
  margin: 0 0 0.28rem;
  color: var(--deepest);
  font-size: 0.93rem;
  font-weight: 600;
}

.product p {
  max-width: 28rem;
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.principles {
  padding-top: 4.5rem;
  padding-bottom: 6rem;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}

.principle-list article {
  padding: 0 1.5rem;
  text-align: center;
}

.principle-list article + article {
  border-left: 1px solid var(--line);
}

.principle-list img {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.75rem;
  object-fit: cover;
}

.principle-list h3 {
  margin: 0 0 0.45rem;
  color: var(--deepest);
  font-size: 0.98rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.principle-list p {
  max-width: 13rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.story {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  margin-bottom: 2.25rem;
  border-radius: 1.5rem;
  background: var(--soft-purple);
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.story-copy {
  max-width: 36rem;
}

.story p {
  margin: 0;
  color: #46547a;
  font-size: 0.92rem;
  line-height: 1.8;
}

.story p + p {
  margin-top: 1rem;
}

.story-art {
  margin: 0;
}

.story-art img {
  width: 100%;
  border-radius: 1.25rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
}

.contact > div {
  padding: 0 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: cover;
}

.contact > div + div {
  border-left: 1px solid var(--line);
}

.contact h3 {
  margin: 0 0 0.25rem;
  color: var(--deepest);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 1.25rem 1.25rem;
  border-radius: 1rem;
  background: #1a0b4b;
  color: #fff;
  padding: 1.4rem clamp(1.25rem, 4vw, 3rem);
}

footer img {
  width: 264px;
  height: auto;
}

footer p {
  margin: 0;
  font-size: 0.78rem;
}

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

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

@keyframes hero-float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -8px);
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 98px;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .brand-lockup {
    width: 160px;
  }

  nav {
    position: absolute;
    top: calc(100% - 0.25rem);
    right: 1rem;
    left: 1rem;
    display: none;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    background: #fff;
    box-shadow: 0 16px 30px rgb(15 23 42 / 0.13);
    padding: 0.8rem;
  }

  nav.is-open {
    display: grid;
    gap: 0.2rem;
  }

  nav a {
    padding: 0.65rem;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    border: 0;
    background: none;
    color: var(--deep);
    font-size: 0.84rem;
    font-weight: 700;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 3.75rem;
    padding-bottom: 3rem;
  }

  .hero-ecosystem {
    width: min(100%, 680px);
    min-height: 490px;
    margin: 0 auto;
  }

  .product-columns {
    grid-template-columns: 1fr;
  }

  .principle-list {
    gap: 2.5rem 0;
    grid-template-columns: 1fr 1fr;
  }

  .principle-list article:nth-child(3) {
    border-left: 0;
  }

  .story {
    width: auto;
    grid-template-columns: 1fr;
    margin-right: 1.25rem;
    margin-left: 1.25rem;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 6.5rem;
  }

  .site-header {
    min-height: 92px;
  }

  .brand-lockup {
    width: 150px;
  }

  .hero {
    gap: 2.5rem;
    padding-top: 3.1rem;
  }

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

  .hero-ecosystem {
    min-height: 445px;
  }

  .ecosystem-card {
    width: 138px;
    min-height: 76px;
    gap: 0.5rem;
    border-radius: 0.85rem;
    padding: 0.7rem;
  }

  .ecosystem-card strong {
    font-size: 0.59rem;
  }

  .ecosystem-learning,
  .ecosystem-attendance {
    left: 0;
  }

  .ecosystem-teams,
  .ecosystem-shifts {
    right: 0;
  }

  .app-stack img,
  .ecosystem-app-icon {
    width: 29px;
    height: 29px;
    border-radius: 0.52rem;
  }

  .app-stack img + img {
    margin-left: -13px;
  }

  .ecosystem-bloom {
    top: 124px;
    width: 166px;
  }

  .connector-learning,
  .connector-teams {
    top: 82px;
  }

  .connector-attendance,
  .connector-shifts {
    bottom: 78px;
  }

  .products {
    padding-top: 4.25rem;
    padding-bottom: 4rem;
  }

  .group-heading {
    display: grid;
  }

  .status {
    margin-left: 0;
  }

  .product {
    align-items: start;
    grid-template-columns: 66px 1fr;
    padding: 1rem;
  }

  .product img {
    width: 66px;
    height: 66px;
    border-radius: 1rem;
  }

  .principles {
    padding-top: 3.75rem;
    padding-bottom: 4.5rem;
  }

  .principle-list {
    grid-template-columns: 1fr;
  }

  .principle-list article {
    padding: 0.2rem 1rem 2rem;
  }

  .principle-list article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 2rem;
  }

  .contact {
    width: auto;
    grid-template-columns: 1fr;
    margin-right: 1.25rem;
    margin-left: 1.25rem;
    padding: 0;
  }

  .contact > div {
    padding: 1.15rem;
  }

  .contact > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  footer img {
    width: min(264px, 100%);
  }
}

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

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