:root {
  --ink: #16112f;
  --plum: #261044;
  --plum-soft: #4a2379;
  --violet: #6d28d9;
  --violet-2: #7c3aed;
  --lavender: #eee7ff;
  --lavender-2: #f6f2ff;
  --paper: #fffdf9;
  --white: #ffffff;
  --warm: #f8f5f0;
  --muted: #645d78;
  --line: rgba(38, 16, 68, .13);
  --shadow: 0 24px 60px rgba(62, 34, 101, .14);
  --shadow-strong: 0 34px 90px rgba(49, 25, 85, .22);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  background:
    radial-gradient(circle at 3% 10%, rgba(124, 58, 237, .09), transparent 21rem),
    linear-gradient(180deg, #fffefd 0%, #fbf9f6 46%, #fff 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(109, 40, 217, .45);
  outline-offset: 4px;
}

.skip-link,
.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:focus {
  position: fixed;
  width: auto;
  height: auto;
  clip: auto;
  left: 18px;
  top: 16px;
  z-index: 300;
  padding: 11px 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--plum);
}

.construction-marquee {
  position: relative;
  z-index: 120;
  overflow: hidden;
  color: #fff;
  background: var(--plum);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.construction-marquee__track {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 8px 0;
  color: #fff;
  font-family: "DM Mono", monospace;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  animation: constructionMarquee 24s linear infinite;
}

.construction-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
}

.construction-marquee__track span::after {
  content: "•";
  opacity: .64;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-weight: 600;
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  margin: 0;
}

em {
  color: var(--violet);
  font-style: italic;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--violet);
  font-family: "DM Mono", monospace;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .22em;
  line-height: 1.3;
  text-transform: uppercase;
}

.lead {
  max-width: 47ch;
  color: #332b4f;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.85;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(38, 16, 68, .08);
  background: rgba(255, 253, 249, .82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 64px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 244px;
  flex: 0 0 auto;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 2px;
  color: var(--ink);
  line-height: 1;
}

.brand strong {
  color: #1b1434;
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-size: 2.05rem;
  font-style: italic;
  letter-spacing: 0;
}

.brand small {
  color: #1b1434;
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.35vw, 36px);
}

.nav-links a:not(.nav-cta) {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #17102f;
  font-size: .92rem;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  transition: color .2s ease, text-decoration-color .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--violet);
  text-decoration-color: currentColor;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--violet), #7f48f2);
  box-shadow: 0 16px 38px rgba(109, 40, 217, .29);
  transition: transform .2s ease, box-shadow .2s ease;
}

.nav-cta::after {
  content: "\2197";
  display: inline-block;
  margin-left: 10px;
  font-size: .82em;
  font-weight: 500;
  line-height: 1;
  transition: transform .2s ease, color .2s ease;
}

.nav-links .nav-cta:hover {
  color: #fff;
  background: linear-gradient(135deg, #4a168f, #251044);
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(109, 40, 217, .36);
}

.nav-links .nav-cta:hover::after,
.nav-links .nav-cta:focus-visible::after {
  color: #fff;
  transform: translate(2px, -2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(38, 16, 68, .18);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--plum);
}

.hero {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  padding: 88px 0 0;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 47% 0 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,253,249,1) 0%, rgba(255,253,249,.98) 62%, rgba(255,253,249,0) 100%),
    radial-gradient(circle at 20% 30%, rgba(124, 58, 237, .12), transparent 22rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,253,249,1) 0%, rgba(255,253,249,.9) 29%, rgba(255,253,249,.2) 50%, rgba(255,253,249,0) 64%),
    linear-gradient(180deg, rgba(255,253,249,0) 0%, rgba(255,253,249,1) 97%);
}

.hero-grid {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(430px, .78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: 34px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  transform: translateY(-65px);
}

.hero h1 {
  max-width: 13.2ch;
  font-size: clamp(3.35rem, 4.95vw, 5.05rem);
  color: var(--ink);
  transform: translateY(10px);
}

.hero h1 em {
  display: block;
  margin-top: 2px;
}

.hero .lead {
  margin-top: 28px;
  transform: translateY(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  transform: translateY(10px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: .98rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(.98);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), #7638e8);
  box-shadow: 0 18px 40px rgba(109, 40, 217, .28);
}

.btn-secondary {
  color: #2e1757;
  border-color: rgba(109, 40, 217, .54);
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 12px 30px rgba(38, 16, 68, .08);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 34px;
  width: min(var(--max), calc(100vw - 64px));
  max-width: none;
  margin-top: 56px;
}

.trust-badges span {
  display: grid;
  grid-template-columns: 42px max-content;
  align-items: center;
  gap: 12px;
  color: #231947;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-badges i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--violet);
  border-radius: 11px;
  color: var(--violet);
  font-style: normal;
  font-size: 1.16rem;
}

.hero-visual {
  position: relative;
  width: calc(100% + 3vw);
  height: 500px;
  min-height: 0;
  margin-top: -88px;
  margin-left: 0;
  margin-right: -3vw;
  overflow: visible;
}

.hero-visual > img:not(.pixel) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 48%;
  filter: saturate(.94) contrast(1.04) brightness(.88);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 100% 0%,
      rgba(255, 253, 249, .22) 0%,
      rgba(255, 253, 249, .08) 9%,
      rgba(255, 253, 249, 0) 17%
    ),
    radial-gradient(
      ellipse at 100% 100%,
      rgba(255, 253, 249, .24) 0%,
      rgba(255, 253, 249, .09) 10%,
      rgba(255, 253, 249, 0) 18%
    ),
    radial-gradient(
      ellipse at 0% 100%,
      rgba(255, 253, 249, 1) 0%,
      rgba(255, 253, 249, .42) 7%,
      rgba(255, 253, 249, .14) 14%,
      rgba(255, 253, 249, 0) 22%
    ),
    linear-gradient(
      90deg,
      rgba(255, 253, 249, 1) 0%,
      rgba(255, 253, 249, .34) 5%,
      rgba(255, 253, 249, .08) 10%,
      rgba(255, 253, 249, 0) 15%
    ),
    linear-gradient(
      0deg,
      rgba(255, 253, 249, 1) 0%,
      rgba(255, 253, 249, .38) 6%,
      rgba(255, 253, 249, .12) 12%,
      rgba(255, 253, 249, 0) 18%
    );
}

.hero-dashboard {
  position: absolute;
  z-index: 3;
  right: clamp(38px, 4vw, 74px);
  top: 350px;
  bottom: auto;
  width: min(390px, 54%);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 18px;
  color: #221542;
  background: rgba(255,255,255,.82);
  box-shadow: 0 26px 70px rgba(16, 9, 34, .25);
  backdrop-filter: blur(14px);
  animation: dashboardFloat 6s ease-in-out infinite;
}

.dash-top {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.dash-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff6b6b;
}

.dash-top span:nth-child(2) {
  background: #ffc15d;
}

.dash-top span:nth-child(3) {
  background: #50c878;
}

.hero-dashboard strong {
  display: block;
  margin-bottom: 14px;
  font-size: .98rem;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.dash-metrics span {
  padding: 10px;
  border: 1px solid rgba(38, 16, 68, .1);
  border-radius: 12px;
  background: #fff;
}

.dash-metrics b,
.dash-metrics small {
  display: block;
}

.dash-metrics b {
  color: var(--violet);
  font-size: .95rem;
}

.dash-metrics small {
  color: var(--muted);
  font-size: .66rem;
}

.dash-activity {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.dash-activity span {
  position: relative;
  padding-left: 16px;
  color: #3b315a;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.35;
}

.dash-activity span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--violet);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, .1);
}

.pixel {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.trusted-band {
  position: relative;
  z-index: 4;
  margin-top: 8px;
  padding-top: 38px;
}

.trusted-band::before {
  content: "";
  position: absolute;
  top: -31px;
  left: 50%;
  width: min(var(--max), calc(100% - 64px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(38, 16, 68, .16), transparent);
}

.trusted-shell {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 30px;
  min-height: 124px;
  padding: 24px 30px;
  border: 1px solid rgba(38, 16, 68, .13);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,245,240,.86)),
    url("/assets/rebrand/dot-grid.svg");
  box-shadow: 0 18px 58px rgba(38, 16, 68, .1);
}

.trusted-shell p {
  color: #281c4a;
  font-size: .92rem;
  font-weight: 900;
  line-height: 1.35;
}

.client-logos {
  position: relative;
  overflow: hidden;
  min-width: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
  animation: trustedCarousel 28s linear infinite;
}

.client-logos img {
  max-height: 48px;
  width: 150px;
  object-fit: contain;
  opacity: 1;
  flex: 0 0 auto;
}

.client-logos .client-logo-marvel {
  max-height: 72px;
}

.wordmark {
  display: block;
  color: #17102f;
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: .95;
  white-space: nowrap;
}

.wordmark small {
  display: block;
  margin-top: 5px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: .54rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.honey {
  text-transform: uppercase;
  letter-spacing: .16em;
}

.breadbasket {
  font-size: 1.02rem;
  text-transform: uppercase;
}

@keyframes trustedCarousel {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 23px));
  }
}

.divisions,
.connected,
.work,
.cta-section {
  position: relative;
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.divisions {
  padding: 70px 0 46px;
  isolation: isolate;
}

.divisions::before {
  content: "";
  position: absolute;
  left: -9%;
  top: 8px;
  z-index: -2;
  width: 440px;
  height: 280px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(109, 40, 217, .075), transparent 68%);
}

.divisions::after {
  content: "";
  position: absolute;
  right: -7%;
  top: 18px;
  z-index: -1;
  width: 270px;
  height: 230px;
  pointer-events: none;
  opacity: .035;
  background:
    url("/assets/rebrand/pixel-field.svg") top right / 190px auto no-repeat,
    radial-gradient(circle at 72% 18%, rgba(109, 40, 217, .34), transparent 62%);
}

.section-intro {
  margin-bottom: 34px;
}

.two-col,
.work-head {
  display: grid;
  grid-template-columns: minmax(290px, .62fr) minmax(360px, .38fr);
  align-items: end;
  gap: 44px;
}

.section-intro h2 {
  color: var(--ink);
  font-size: clamp(2.25rem, 4.2vw, 4.1rem);
}

.section-intro p:not(.eyebrow) {
  max-width: 46ch;
  color: #2d244d;
  font-size: 1rem;
  line-height: 1.8;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.division-card {
  position: relative;
  min-height: 354px;
  display: flex;
  flex-direction: column;
  padding: 27px 24px 22px;
  border: 1px solid rgba(38, 16, 68, .15);
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,255,255,.68)),
    radial-gradient(circle at 85% 18%, rgba(124, 58, 237, .08), transparent 7rem);
  box-shadow: 0 12px 38px rgba(38, 16, 68, .055);
  overflow: hidden;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), box-shadow .28s ease, border-color .28s ease, background .28s ease;
  will-change: transform;
}

.division-card > * {
  position: relative;
  z-index: 1;
}

.division-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: 12px;
  pointer-events: none;
  opacity: .38;
  background: linear-gradient(180deg, rgba(255,255,255,.68), rgba(255,255,255,0) 44%);
  transition: opacity .28s ease;
}

.division-card::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 26px;
  width: 72px;
  height: 98px;
  opacity: 0;
  background-image: url("/assets/rebrand/pixel-field.svg");
  background-size: cover;
  transition: opacity .28s ease;
}

.division-card:hover {
  transform: translateY(-8px);
  border-color: rgba(109, 40, 217, .46);
  box-shadow: 0 24px 62px rgba(109, 40, 217, .145);
}

.division-card:hover::before {
  opacity: .72;
}

.division-card:hover::after {
  opacity: .34;
}

.division-card img {
  width: 78px;
  height: 78px;
  padding: 16px;
  border: 1px solid rgba(109, 40, 217, .18);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(238,230,255,.98), rgba(255,255,255,.94)),
    radial-gradient(circle at 24% 18%, rgba(109, 40, 217, .16), transparent 62%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 10px 26px rgba(109, 40, 217, .08);
  transform-origin: center;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), box-shadow .28s ease, border-color .28s ease;
}

.division-card:hover img {
  transform: scale(1.05);
  border-color: rgba(109, 40, 217, .28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 14px 32px rgba(109, 40, 217, .12);
}

.division-card h3 {
  margin-top: 28px;
  font-size: clamp(1.4rem, 2vw, 1.95rem);
}

.division-card p {
  margin-top: 14px;
  color: #30284d;
  font-size: .94rem;
  line-height: 1.75;
}

.division-card a {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  align-self: flex-end;
  margin-top: auto;
  border: 1px solid rgba(109, 40, 217, .42);
  border-radius: 999px;
  color: var(--violet);
  background: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), background .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.division-card:hover a {
  transform: translateX(6px);
  border-color: rgba(109, 40, 217, .6);
  box-shadow: 0 10px 24px rgba(109, 40, 217, .14);
}

.division-card a:hover {
  color: #fff;
  background: var(--violet);
}

.division-card-featured {
  border-color: rgba(109, 40, 217, .34);
  background:
    linear-gradient(145deg, rgba(255,255,255,.97), rgba(255,255,255,.74)),
    radial-gradient(circle at 88% 16%, rgba(109, 40, 217, .13), transparent 8rem);
  box-shadow: 0 16px 46px rgba(109, 40, 217, .09);
}

.division-card-featured::after {
  opacity: .18;
}

.connected {
  position: relative;
  width: min(1680px, calc(100% - 48px));
  overflow: hidden;
  margin-top: 34px;
  margin-inline: auto;
  padding: 48px 32px 34px;
  border-radius: 14px;
  background:
    url("/assets/rebrand/pixel-field.svg") right -22px top -34px / 230px auto no-repeat,
    radial-gradient(circle at 86% 10%, rgba(109, 40, 217, .11), transparent 24rem),
    linear-gradient(135deg, rgba(255,253,249,.98), rgba(246,242,255,.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 22px 64px rgba(109, 40, 217, .1);
  isolation: isolate;
}

.connected-copy {
  max-width: 760px;
  margin-bottom: 36px;
}

.connected-copy h2 {
  font-size: clamp(2.9rem, 5.4vw, 5.8rem);
  line-height: .98;
}

.connected-copy p:not(.eyebrow) {
  max-width: 48ch;
  margin-top: 20px;
  color: #2a2148;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 700;
  line-height: 1.75;
}

.connected-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.os-launch {
  min-width: 208px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--violet);
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.35;
  transition: transform .2s ease, color .2s ease;
}

.connected-actions .text-link {
  margin-top: 0;
}

.text-link:hover {
  transform: translateX(4px);
  color: var(--plum);
}

.os-window {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 16, 68, .12);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 30px 82px rgba(38, 16, 68, .17);
  animation: osFadeIn .42s ease both;
}

.os-browser-bar {
  min-height: 52px;
  display: grid;
  grid-template-columns: auto minmax(190px, 1fr) auto auto auto auto;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(38, 16, 68, .1);
  background: linear-gradient(180deg, #fff, #fbf8ff);
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #ff6767;
}

.window-dots span:nth-child(2) {
  background: #ffbd50;
}

.window-dots span:nth-child(3) {
  background: #56ca78;
}

.os-search {
  justify-self: end;
  width: min(310px, 100%);
  padding: 9px 14px;
  border: 1px solid rgba(38, 16, 68, .1);
  border-radius: 999px;
  color: #8a829e;
  background: rgba(255,255,255,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 800;
}

.os-search::placeholder {
  color: #8a829e;
}

.os-key,
.os-tool {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  border-radius: 10px;
  color: #6d6289;
  background: rgba(109, 40, 217, .08);
  font-size: .78rem;
  font-weight: 900;
}

.os-admin {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #21173d;
  font-size: .82rem;
  font-weight: 900;
  white-space: nowrap;
}

.os-admin span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--violet);
  background: #eee6ff;
}

.os-admin i {
  color: #8b829d;
  font-style: normal;
}

.os-layout {
  display: grid;
  grid-template-columns: 214px 1fr;
  min-height: 588px;
}

.os-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 30px 20px;
  border-right: 1px solid rgba(38, 16, 68, .08);
  background: linear-gradient(180deg, #fbf8ff, #f1ebff);
}

.os-sidebar strong {
  margin-bottom: 22px;
  color: var(--plum);
  font-size: 1.35rem;
}

.os-sidebar button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  color: #51486b;
  background: transparent;
  font: inherit;
  font-size: .9rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: transform .24s ease, color .24s ease, background .24s ease;
}

.os-sidebar button::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1.8px solid currentColor;
  border-radius: 5px;
  opacity: .72;
}

.os-sidebar button:hover {
  transform: translateX(3px);
  color: var(--violet);
  background: rgba(255,255,255,.64);
}

.os-website-toggle {
  margin-bottom: 12px;
  border: 1px solid rgba(109, 40, 217, .22) !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--violet), #7c3aed) !important;
  box-shadow: 0 14px 28px rgba(109, 40, 217, .18);
}

.os-website-toggle::before {
  border-color: rgba(255,255,255,.78) !important;
}

.os-sidebar .active {
  color: var(--violet);
  background: linear-gradient(90deg, rgba(109, 40, 217, .15), rgba(109, 40, 217, .07));
  box-shadow: inset 3px 0 0 rgba(109, 40, 217, .75);
}

.os-window.is-website-mode .os-sidebar button:not(.os-website-toggle) {
  opacity: .58;
}

.os-window.is-website-mode .os-sidebar button:not(.os-website-toggle):hover {
  opacity: 1;
}

.os-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: min-content;
  gap: 16px;
  padding: 28px;
  background:
    radial-gradient(circle at 85% 4%, rgba(109, 40, 217, .05), transparent 16rem),
    #fff;
}

.os-main.is-changing {
  animation: osViewIn .28s ease both;
}

.os-card,
.metric-card,
.activity-card,
.chart-card,
.feature-card {
  border: 1px solid rgba(38, 16, 68, .11);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #fdfcff);
  box-shadow: 0 10px 28px rgba(38, 16, 68, .055);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.os-card:hover,
.metric-card:hover,
.activity-card:hover,
.chart-card:hover,
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 40, 217, .22);
  box-shadow: 0 16px 38px rgba(109, 40, 217, .11);
}

.metric-card {
  min-height: 126px;
  padding: 22px 20px;
}

.metric-card span,
.os-card span {
  color: #5c5476;
  font-size: .8rem;
  font-weight: 900;
}

.metric-card strong,
.os-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1;
}

.metric-card em,
.os-card em {
  display: block;
  margin-top: 8px;
  color: #0e9f6e;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
}

.activity-card,
.chart-card {
  min-height: 270px;
  padding: 22px;
}

.activity-card {
  grid-column: span 2;
}

.chart-card {
  grid-column: span 2;
}

.activity-card h3,
.chart-card h3,
.os-panel-title {
  margin-bottom: 18px;
  color: #20163d;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: .98rem;
  line-height: 1.2;
}

.activity-card p,
.os-list-row {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: start;
  gap: 10px;
  margin-top: 13px;
  color: #2d244d;
  font-size: .84rem;
  font-weight: 800;
}

.activity-card i,
.os-list-row i {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 6px;
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(109, 40, 217, .1);
}

.activity-card p:nth-child(3) i,
.os-list-row:nth-child(3) i {
  background: #35b779;
}

.activity-card p:nth-child(4) i,
.os-list-row:nth-child(4) i {
  background: #ff6b4a;
}

.activity-card p:nth-child(5) i,
.os-list-row:nth-child(5) i {
  background: #f59f32;
}

.activity-card small,
.os-list-row small {
  color: #7b728f;
  font-size: .72rem;
  font-weight: 800;
}

.activity-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--violet);
  font-size: .82rem;
  font-weight: 900;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.chart-filter {
  height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(38, 16, 68, .1);
  border-radius: 9px;
  color: #4b4268;
  background: #fff;
  font-size: .74rem;
  font-weight: 900;
}

.chart-card svg {
  width: 100%;
  height: auto;
}

.grid-line {
  fill: none;
  stroke: rgba(38, 16, 68, .08);
  stroke-width: 1;
}

.chart-fill {
  fill: url("#chartFill");
}

.chart-line {
  fill: none;
  stroke: var(--violet);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: chartDraw .9s ease .18s forwards;
}

.chart-dots circle {
  fill: #fff;
  stroke: var(--violet);
  stroke-width: 4;
}

.feature-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 18px;
}

.feature-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--violet);
  background: rgba(109, 40, 217, .1);
  font-style: normal;
  font-weight: 900;
}

.feature-card h4 {
  font-size: .94rem;
}

.feature-card p {
  margin-top: 4px;
  color: #625a78;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.35;
}

.os-wide {
  grid-column: span 2;
}

.os-full {
  grid-column: 1 / -1;
}

.status-pill {
  justify-self: end;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--violet);
  background: rgba(109, 40, 217, .1);
  font-size: .68rem;
  font-weight: 900;
}

.website-preview {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid rgba(38, 16, 68, .11);
  border-radius: 18px;
  background: #fffdf9;
  box-shadow: 0 18px 48px rgba(38, 16, 68, .08);
}

.website-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(38, 16, 68, .09);
}

.website-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-weight: 1000;
}

.website-brand i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--violet);
  font-style: normal;
}

.website-nav {
  display: flex;
  gap: 18px;
  color: #50456f;
  font-size: .82rem;
  font-weight: 900;
}

.website-hero {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(320px, 1fr);
  gap: 28px;
  padding: 34px;
  background:
    radial-gradient(circle at 85% 20%, rgba(109, 40, 217, .12), transparent 18rem),
    linear-gradient(135deg, #fffdf9, #f8f4ff);
}

.website-hero h3 {
  max-width: 10ch;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
}

.website-hero h3 em {
  color: var(--violet);
}

.website-hero p {
  max-width: 44ch;
  margin-top: 18px;
  color: #3b315a;
  font-weight: 800;
  line-height: 1.7;
}

.website-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.website-actions span {
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--violet);
  font-weight: 900;
}

.website-actions span:nth-child(2) {
  color: var(--violet);
  border: 1px solid rgba(109, 40, 217, .26);
  background: #fff;
}

.website-panel {
  display: grid;
  gap: 14px;
  align-self: stretch;
  padding: 18px;
  border: 1px solid rgba(38, 16, 68, .09);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 40px rgba(38, 16, 68, .08);
}

.website-panel-row {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 13px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(38, 16, 68, .08);
}

.website-panel-row i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--violet);
  background: rgba(109, 40, 217, .1);
  font-style: normal;
  font-weight: 1000;
}

.website-panel-row b {
  display: block;
  color: #20163d;
}

.website-panel-row small {
  color: #7b728f;
  font-weight: 800;
}

.website-panel-row strong {
  color: var(--violet);
}

.website-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 34px 34px;
}

.website-card {
  min-height: 130px;
  padding: 18px;
  border: 1px solid rgba(38, 16, 68, .1);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(38, 16, 68, .055);
}

.website-card h4 {
  color: #20163d;
  font-size: .98rem;
}

.website-card p {
  margin-top: 10px;
  color: #625a78;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.5;
}

.os-demo-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.os-demo-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.os-demo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 17, 47, .52);
  backdrop-filter: blur(10px);
}

.os-demo-panel {
  position: relative;
  z-index: 1;
  width: min(1420px, calc(100vw - 52px));
  max-height: calc(100dvh - 52px);
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,253,249,.98), rgba(247,243,255,.96));
  box-shadow: 0 40px 120px rgba(16, 9, 34, .34);
  transform: scale(.965) translateY(18px);
  transition: transform .32s cubic-bezier(.2, .8, .2, 1);
}

.os-demo-overlay.is-open .os-demo-panel {
  transform: none;
}

.os-demo-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(38, 16, 68, .14);
  border-radius: 999px;
  color: var(--plum);
  background: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.os-demo-head {
  max-width: 780px;
  margin-bottom: 22px;
  padding-right: 58px;
}

.os-demo-head h2 {
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.os-demo-head p:not(.eyebrow) {
  margin-top: 12px;
  color: #372d57;
  font-weight: 700;
  line-height: 1.7;
}

.os-window-expanded .os-layout {
  min-height: min(690px, 62dvh);
}

body.os-demo-lock {
  overflow: hidden;
}

@keyframes osFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes osViewIn {
  from {
    opacity: .3;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes chartDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes constructionMarquee {
  from {
    transform: translateX(0);
  }

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

.work {
  position: relative;
  padding: 82px 0 56px;
}

.work-transform {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: start;
}

.work-transform-main .section-intro {
  max-width: 680px;
  margin-bottom: 34px;
}

.work-transform-main .section-intro p {
  max-width: 46ch;
}

.compare-slider {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(38, 16, 68, .16);
  isolation: isolate;
  transition: opacity .24s ease;
}

.compare-slider.is-swapping {
  opacity: .78;
}

.compare-slider.is-live-site .compare-img,
.compare-slider.is-live-site .compare-before,
.compare-slider.is-live-site .compare-label,
.compare-slider.is-live-site .compare-handle,
.compare-slider.is-live-site input[type="range"] {
  display: none;
}

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .24s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.work-live-preview {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: none;
  background: #fff;
}

.compare-slider.is-live-site .work-live-preview {
  display: block;
}

.work-live-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.work-live-image {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
}

.work-live-preview.is-static-preview iframe {
  display: none;
}

.work-live-preview.is-static-preview .work-live-image {
  display: block;
}

.work-live-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  color: #fff;
  background: rgba(13, 9, 28, .72);
  box-shadow: 0 14px 34px rgba(13, 9, 28, .22);
  font-size: .82rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
  transition: transform .22s ease, background .22s ease;
}

.work-live-link:hover {
  background: var(--violet);
  transform: translateY(-2px);
}

.compare-before {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
  overflow: hidden;
}

.compare-before .compare-img {
  position: absolute;
  inset: 0;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: var(--pos, 50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 249, .94);
  box-shadow: 0 14px 38px rgba(38, 16, 68, .18);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.compare-handle::before {
  content: "\2039\203A";
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.compare-handle::after {
  content: "";
  position: absolute;
  top: -44vh;
  bottom: -44vh;
  left: 50%;
  width: 2px;
  background: rgba(255, 253, 249, .9);
  transform: translateX(-50%);
  z-index: -1;
}

.compare-slider input[type="range"] {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-label {
  position: absolute;
  top: 18px;
  z-index: 6;
  padding: 7px 10px;
  border-radius: 7px;
  color: #fff;
  background: rgba(13, 9, 28, .9);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.compare-label-before {
  left: 18px;
}

.compare-label-after {
  right: 18px;
  background: rgba(109, 40, 217, .9);
}

.work-built {
  margin-top: 22px;
}

.work-built > span {
  display: block;
  color: var(--violet);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.work-active-copy {
  max-width: 720px;
  margin: 9px 0 16px;
  color: var(--muted);
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.65;
  transition: opacity .22s ease, transform .22s ease;
}

.work-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  transition: opacity .22s ease, transform .22s ease;
}

.work-badges.is-swapping,
.work-active-copy.is-swapping {
  opacity: .4;
  transform: translateY(4px);
}

.work-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(109, 40, 217, .1);
  border-radius: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 30px rgba(38, 16, 68, .06);
  font-size: .82rem;
  font-weight: 700;
}

.work-badges span::before {
  content: "\2713";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--violet);
  background: rgba(109, 40, 217, .09);
  font-size: .72rem;
}

.work-projects {
  align-self: stretch;
  padding-top: 18px;
}

.work-projects > div {
  overflow: hidden;
  border: 1px solid rgba(38, 16, 68, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .56);
  box-shadow: 0 18px 54px rgba(38, 16, 68, .08);
}

.work-project-item {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 22px 24px;
  border: 0;
  border-bottom: 1px solid rgba(38, 16, 68, .08);
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background .24s ease, box-shadow .24s ease, transform .24s ease;
}

.work-project-item:last-child {
  border-bottom: 0;
}

.work-project-item:hover,
.work-project-item.is-active {
  background: rgba(255, 255, 255, .88);
}

.work-project-item.is-active {
  box-shadow: inset 3px 0 0 var(--violet), inset 0 0 0 1px rgba(109, 40, 217, .2);
}

.work-project-item strong {
  display: block;
  font-size: 1.14rem;
  line-height: 1.14;
}

.work-project-item.is-active strong {
  font-size: 1.28rem;
}

.work-project-item em {
  display: inline-flex;
  width: max-content;
  margin-top: 8px;
  padding: 4px 8px;
  border: 1px solid rgba(109, 40, 217, .32);
  border-radius: 999px;
  color: var(--violet);
  font-size: .74rem;
  font-style: normal;
  font-weight: 800;
}

.work-project-item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .91rem;
  font-weight: 700;
  line-height: 1.5;
}

.work-project-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  align-self: center;
  border: 1px solid rgba(109, 40, 217, .24);
  border-radius: 999px;
  color: var(--violet);
  background: #fff;
  font-weight: 900;
  transition: transform .24s ease, color .24s ease, background .24s ease;
}

.work-project-item:hover .work-project-arrow,
.work-project-item.is-active .work-project-arrow {
  color: #fff;
  background: var(--violet);
  transform: translateX(4px);
}

.work-library-link {
  justify-content: flex-end;
  margin-top: 28px;
  font-size: 1rem;
}

.cta-section {
  margin-top: 14px;
  padding: 50px 0 52px;
  border-top: 1px solid rgba(38, 16, 68, .1);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(310px, .92fr) repeat(3, minmax(190px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.cta-title {
  position: relative;
  padding-right: 30px;
}

.cta-title h2 {
  max-width: 10ch;
  font-size: clamp(2.45rem, 4.1vw, 4rem);
}

.cta-title::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -2px;
  width: min(190px, 62%);
  height: 3px;
  border-radius: 999px;
  background: var(--violet);
  transform: rotate(-4deg);
}

.cta-item {
  padding: 12px 28px;
  border-left: 1px solid rgba(38, 16, 68, .12);
}

.cta-item h3 {
  margin-bottom: 18px;
  color: var(--violet);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: .96rem;
  line-height: 1.3;
}

.cta-item p {
  color: #332b4f;
  font-size: .93rem;
  font-weight: 650;
  line-height: 1.7;
}

.cta-item p + p {
  margin-top: 17px;
}

.cta-item small {
  color: var(--muted);
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 10% 0%, rgba(109, 40, 217, .2), transparent 22rem),
    linear-gradient(180deg, #17112d, #100b22);
}

.footer-shell {
  width: min(var(--max), calc(100% - 64px));
  min-height: 104px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 34px;
}

.footer-logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo span {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.footer-logo strong {
  color: #fff;
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-size: 2.05rem;
  font-style: italic;
}

.footer-logo small {
  color: rgba(255,255,255,.88);
  font-size: .5rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-shell nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
}

.footer-shell nav a {
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  font-weight: 700;
}

.footer-shell nav a:hover {
  color: #fff;
}

.socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.socials a {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
  opacity: .86;
}

.public-footer {
  padding: 44px 0 26px;
}

.public-footer-shell {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(520px, 1.4fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.public-footer-brand {
  display: grid;
  gap: 18px;
}

.public-footer-brand p {
  max-width: 36ch;
  color: rgba(255, 255, 255, .74);
  font-weight: 600;
}

.public-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.public-footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .06);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.public-footer-social a:hover,
.public-footer-social a:focus-visible {
  color: #fff;
  border-color: rgba(167, 139, 250, .55);
  background: rgba(139, 92, 246, .32);
  transform: translateY(-2px);
}

.public-footer-social svg {
  display: block;
}

.public-footer-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 420px;
}

.public-footer-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 0 14px;
  font: 700 .92rem/1 "DM Sans", system-ui, sans-serif;
}

.public-footer-form input::placeholder {
  color: rgba(255, 255, 255, .58);
}

.public-footer-form button {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), #7f48f2);
  box-shadow: 0 14px 32px rgba(109, 40, 217, .24);
  padding: 0 18px;
  font: 900 .92rem/1 "DM Sans", system-ui, sans-serif;
  cursor: pointer;
}

.public-footer-form .form-note {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
}

.public-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.public-footer-links h4 {
  margin: 0 0 12px;
  color: rgba(238, 231, 255, .92);
  font-family: "DM Mono", monospace;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.public-footer-links a,
.public-footer-links span {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
  font-weight: 700;
}

.public-footer-links a:hover {
  color: #fff;
}

.public-footer-base {
  width: min(var(--max), calc(100% - 64px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .68);
  font-size: .88rem;
}

@keyframes dashboardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1180px) {
  .brand {
    min-width: 218px;
  }

  .hero-grid {
    grid-template-columns: minmax(370px, .86fr) minmax(440px, 1.14fr);
  }

  .trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
    margin-top: 48px;
  }

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

  .division-card {
    min-height: 310px;
  }

  .connected-copy {
    max-width: 620px;
  }

  .connected {
    padding: 42px 24px 28px;
  }

  .os-layout {
    grid-template-columns: 186px 1fr;
  }

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

  .activity-card,
  .chart-card,
  .os-wide {
    grid-column: span 1;
  }

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

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

  .brand {
    min-width: 202px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 110;
  }

  .nav-links {
    position: fixed;
    inset: 78px 18px auto;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(38, 16, 68, .12);
    border-radius: 18px;
    background: rgba(255, 253, 249, .96);
    box-shadow: 0 24px 70px rgba(38, 16, 68, .18);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a:not(.nav-cta) {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: var(--lavender-2);
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 0;
  }

  .hero-grid {
    width: min(var(--max), calc(100% - 36px));
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .hero h1 {
    max-width: 11.5ch;
    font-size: clamp(3.15rem, 12vw, 5.5rem);
  }

  .hero-visual {
    width: 100%;
    height: clamp(360px, 54vw, 500px);
    min-height: 0;
    margin: 0;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .hero-dashboard {
    left: 24px;
    right: auto;
    top: auto;
    bottom: 24px;
    width: min(390px, calc(100% - 48px));
  }

  .trusted-band {
    margin-top: 28px;
  }

  .trusted-shell {
    width: min(var(--max), calc(100% - 36px));
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .client-logos {
    width: 100%;
  }

  .client-logo-track {
    gap: 34px;
  }

  .divisions,
  .connected,
  .work,
  .cta-section {
    width: min(var(--max), calc(100% - 36px));
  }

  .two-col {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

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

  .connected {
    padding: 42px 22px;
  }

  .os-layout {
    grid-template-columns: 1fr;
  }

  .os-sidebar {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 8px;
    overflow-x: auto;
    padding: 18px;
  }

  .os-sidebar strong {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }

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

  .activity-card,
  .chart-card {
    grid-column: span 2;
  }

  .work-transform {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .work-projects {
    padding-top: 0;
  }

  .work-library-link {
    justify-content: flex-start;
  }

  .footer-shell {
    width: min(var(--max), calc(100% - 36px));
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 28px 0;
  }

  .footer-shell nav {
    justify-content: flex-start;
  }

  .public-footer-shell,
  .public-footer-links {
    grid-template-columns: 1fr;
  }

  .public-footer-shell,
  .public-footer-base {
    width: min(var(--max), calc(100% - 36px));
  }

  .public-footer-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 176px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1.65rem;
  }

  .brand small {
    font-size: .44rem;
  }

  .nav-shell {
    min-height: 70px;
  }

  .nav-links {
    inset-top: 70px;
  }

  .hero h1 {
    font-size: clamp(2.86rem, 15vw, 4.2rem);
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-badges {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
  }

  .hero-dashboard {
    display: none;
  }

  .wordmark {
    font-size: 1.08rem;
  }

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

  .division-card {
    min-height: 280px;
  }

  .connected {
    margin-top: 10px;
    padding: 34px 14px 22px;
  }

  .connected-copy h2 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .connected-actions {
    gap: 18px;
  }

  .os-browser-bar {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 10px 12px;
  }

  .os-search,
  .os-key,
  .os-tool {
    display: none;
  }

  .os-admin b,
  .os-admin i {
    display: none;
  }

  .os-layout {
    grid-template-columns: 1fr;
  }

  .os-sidebar {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(38, 16, 68, .08);
  }

  .os-sidebar strong {
    display: none;
  }

  .os-sidebar button {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .os-main {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .metric-card,
  .activity-card,
  .chart-card,
  .feature-card,
  .os-wide,
  .os-full {
    grid-column: span 1;
  }

  .activity-card p,
  .os-list-row {
    grid-template-columns: 18px 1fr;
  }

  .status-pill {
    justify-self: start;
    grid-column: 2;
  }

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

  .website-topbar,
  .website-nav {
    flex-wrap: wrap;
  }

  .work {
    padding-top: 58px;
  }

  .compare-slider {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .compare-label {
    top: 12px;
    font-size: .62rem;
  }

  .compare-label-before {
    left: 12px;
  }

  .compare-label-after {
    right: 12px;
  }

  .compare-handle {
    width: 46px;
    height: 46px;
  }

  .work-badges span {
    width: 100%;
  }

  .work-project-item {
    padding: 18px;
  }

  .work-project-item.is-active strong {
    font-size: 1.16rem;
  }

  .os-demo-overlay {
    padding: 12px;
  }

  .os-demo-panel {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    padding: 16px;
    border-radius: 18px;
  }

  .os-demo-head {
    padding-right: 46px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-item {
    padding: 0;
    border-left: 0;
  }

}

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

  .client-logo-track {
    animation: none !important;
    transform: none !important;
  }

  .construction-marquee__track {
    animation: none !important;
  }
}
