:root {
  --white: #ffffff;
  --black: #292929;
  --muted: #636363;
  --blue: #578cff;
  --blue-soft: #9cc3ff;
  --blue-pale: #f0f6ff;
  --line: rgba(41, 41, 41, 0.1);
  --card: #f7fbff;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.gradient-bg {
  position: absolute;
  inset: 0 0 auto;
  height: 560px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 58% at 50% -35%, rgba(156, 195, 255, 0.24) 0%, rgba(240, 246, 255, 0.38) 48%, rgba(255, 255, 255, 0) 82%),
    linear-gradient(180deg, rgba(240, 246, 255, 0.92) 0%, rgba(240, 246, 255, 0.46) 34%, rgba(255, 255, 255, 0) 100%);
}

.nav-wrap {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  padding: 26px 40px 0;
}

.nav {
  width: min(1120px, 100%);
  height: 42px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.logo img {
  width: 122px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--black);
  font-size: 14px;
}

.nav-links a,
.nav-item > button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: -0.02em;
  opacity: 0.82;
  cursor: pointer;
}

.nav-links a:hover,
.nav-item > button:hover {
  opacity: 1;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 42px;
}

.nav-item > button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0;
  line-height: 42px;
}

.chevron {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(87, 140, 255, 0.14), transparent 36%),
    #151515;
  color: var(--white);
  box-shadow: 0 30px 80px rgba(41, 41, 41, 0.28);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-menu {
  width: min(560px, calc(100vw - 40px));
  padding: 12px;
}

.mega-feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.mega-feature strong {
  display: block;
  color: var(--white);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.05;
}

.mega-feature em,
.mega-grid em,
.resource-menu em {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-style: normal;
  line-height: 1.3;
}

.mega-icon,
.mega-grid span {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: #ff8a1f;
}

.mega-icon {
  width: 56px;
  height: 56px;
  font-size: 25px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  padding: 12px 6px 4px;
}

.mega-grid a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: center;
  min-height: 48px;
  padding: 7px 10px;
  border-radius: 12px;
}

.mega-grid span {
  width: 38px;
  height: 38px;
  font-size: 18px;
  font-weight: 600;
}

.mega-grid strong,
.resource-menu strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
}

.resource-menu {
  width: 300px;
  padding: 14px;
}

.resource-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 13px;
}

.mega-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  opacity: 1;
}

.nav .button {
  grid-column: 3;
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 4px 6px 4px 18px;
  border-radius: 1000px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.button span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
}

.button-small {
  min-height: 36px;
  padding-left: 14px;
  font-size: 14px;
}

.button-small span {
  width: 26px;
  height: 26px;
}

.button-block {
  width: 100%;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 116px 0 50px;
  text-align: center;
}

.reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  text-align: left;
}

.avatars {
  display: flex;
  width: 78px;
}

.avatars span {
  width: 34px;
  height: 34px;
  margin-left: -8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd5bd, #7d9fff);
}

.avatars span:first-child {
  margin-left: 0;
  background: linear-gradient(145deg, #f2b088, #f8e6d8);
}

.avatars span:last-child {
  background: linear-gradient(145deg, #1f2937, #9cc3ff);
}

.stars {
  color: #111;
  font-size: 12px;
  line-height: 1.2;
}

.stars b,
.stars em {
  font-style: normal;
  font-weight: 500;
}

.reviews p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.hero h1 {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(42px, 4.45vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: inline-flex;
  align-items: center;
}

.hero h1 span::after {
  content: "✦";
  margin-left: 12px;
  color: var(--black);
  font-size: 0.78em;
}

.hero-copy {
  max-width: 460px;
  margin: 20px auto 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.customer-marquee {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, calc(100vw - 40px));
  margin: 58px 0 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.customer-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  padding: 0 90px;
  animation: logo-marquee 34s linear infinite;
}

.customer-logo {
  display: inline-flex;
  width: 148px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
}

.customer-logo img {
  display: block;
  width: 100%;
  max-width: 148px;
  max-height: 44px;
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: none !important;
  mix-blend-mode: normal;
}

.customer-logo--lockup {
  width: 188px;
  gap: 10px;
  justify-content: flex-start;
}

.customer-logo--hole {
  width: 214px;
}

.customer-logo--khan {
  width: 154px;
}

.customer-logo--emperor {
  width: 176px;
}

.customer-logo--dropezy {
  width: 132px;
}

.customer-logo--lockup .customer-logo-mark {
  width: 38px;
  height: 38px;
  max-width: 38px;
  max-height: 38px;
  border-radius: 8px;
  object-fit: contain;
}

.customer-logo-name {
  min-width: 0;
  color: var(--black);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.02em;
  white-space: normal;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

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

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

.hero + .section {
  padding-top: 42px;
}

.product-hero + .section {
  padding-top: 46px;
}

.product-overview {
  padding-bottom: 54px;
}

.product-overview + .product-features,
.product-features + .oms-flow {
  padding-top: 54px;
}

.label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.label::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.section > h2,
.intro h2,
.cta h2 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--black);
  font-size: clamp(34px, 3.75vw, 52px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.service-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-radius: 22px;
  background: var(--card);
  overflow: hidden;
}

.service-card:nth-child(3) {
  background: var(--blue-pale);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.05;
}

.service-card p,
.feature-grid p,
.footer p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.product-art {
  position: relative;
  width: min(330px, 100%);
  height: 230px;
  margin: 30px auto 0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 24% 18%, rgba(87, 140, 255, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 255, 0.82));
  box-shadow: inset 0 0 0 1px rgba(87, 140, 255, 0.08), 0 24px 54px rgba(41, 41, 41, 0.06);
  overflow: hidden;
}

.product-art::after {
  content: "";
  position: absolute;
  inset: auto -24px -34px 30%;
  height: 92px;
  border-radius: 999px;
  background: rgba(87, 140, 255, 0.12);
  filter: blur(14px);
}

.art-window,
.floating-ticket,
.receipt,
.recipe-card,
.api-stack,
.api-core,
.stock-chip,
.yield-badge,
.pay-pill,
.node {
  position: absolute;
  z-index: 1;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(41, 41, 41, 0.08);
}

.art-window {
  left: 28px;
  right: 28px;
  top: 28px;
  padding: 18px;
}

.art-topline,
.oms-bar {
  display: flex;
  gap: 7px;
}

.art-topline span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-soft);
}

.art-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  margin: 18px 0 12px;
}

.art-kpis b {
  font-size: 26px;
  font-weight: 500;
}

.art-kpis em,
.floating-ticket em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.art-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.art-row i {
  color: var(--black);
  font-style: normal;
  font-weight: 500;
}

.warehouse-map {
  position: absolute;
  inset: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.warehouse-map span {
  border-radius: 14px;
  background: rgba(87, 140, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(87, 140, 255, 0.09);
}

.warehouse-map span:nth-child(2),
.warehouse-map span:nth-child(5) {
  background: rgba(87, 140, 255, 0.28);
}

.floating-ticket {
  right: 24px;
  bottom: 24px;
  padding: 16px 18px;
}

.floating-ticket b {
  display: block;
  font-size: 18px;
  font-weight: 500;
}

.stock-chart {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  height: 150px;
  display: flex;
  align-items: end;
  gap: 14px;
}

.stock-chart span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue), var(--blue-soft));
}

.stock-chip,
.yield-badge,
.pay-pill {
  right: 24px;
  top: 24px;
  padding: 10px 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
}

.node {
  display: grid;
  width: 68px;
  height: 48px;
  place-items: center;
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
}

.node.center {
  left: calc(50% - 34px);
  top: calc(50% - 24px);
  background: var(--blue);
  color: var(--white);
}

.node.n1 { left: 24px; top: 28px; }
.node.n2 { right: 24px; top: 28px; }
.node.n3 { left: 32px; bottom: 28px; }
.node.n4 { right: 32px; bottom: 28px; }

.receipt,
.recipe-card {
  left: 52px;
  right: 52px;
  top: 28px;
  padding: 20px;
}

.receipt b,
.recipe-card b {
  display: block;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
}

.receipt span,
.recipe-card span,
.api-stack span {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.receipt i {
  color: var(--black);
  font-style: normal;
}

.pay-pill {
  top: auto;
  bottom: 22px;
}

.yield-badge {
  top: auto;
  bottom: 24px;
}

.api-stack {
  left: 26px;
  top: 34px;
  width: 150px;
  padding: 14px 18px;
}

.api-stack span {
  display: block;
}

.api-core {
  right: 36px;
  top: 82px;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
}

.intro {
  padding-top: 46px;
  padding-bottom: 130px;
}

.intro h2 {
  max-width: 920px;
}

.intro h2 span {
  color: var(--blue);
}

.feature-grid article,
.team-grid article {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.feature-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.feature-grid article,
.team-grid article {
  padding: 26px;
}

.feature-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
}

.team-grid span {
  display: block;
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.commitment-section {
  padding-top: 36px;
}

.commitment-panel {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
  align-items: start;
  padding: 46px;
  border-radius: 30px;
  background: var(--blue-pale);
}

.commitment-panel .label {
  justify-content: flex-start;
  margin-left: 0;
}

.commitment-panel h2 {
  grid-column: 1;
  margin: 0;
  color: var(--black);
  font-size: clamp(34px, 3.75vw, 52px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.commitment-copy {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.commitment-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  letter-spacing: -0.02em;
}

.commitment-copy p + p {
  margin-top: 18px;
}

.founders-section {
  padding-top: 64px;
}

.founders-section > h2 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--black);
  font-size: clamp(34px, 3.75vw, 52px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-align: center;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.founder-card {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.founder-card img {
  width: 148px;
  height: 148px;
  border-radius: 26px;
  background: var(--blue-pale);
  object-fit: cover;
}

.founder-card h3 {
  color: var(--black);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.founder-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
}

.founder-card ul {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-left: 18px;
  color: var(--black);
  font-size: 15px;
  line-height: 1.45;
}

.faq {
  max-width: 760px;
}

details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 22px;
  font-weight: 500;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.cta {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 110px;
  padding: 84px 30px;
  border-radius: 30px;
  background: var(--blue-pale);
  text-align: center;
}

.cta .button {
  margin-top: 32px;
}

.next-product {
  width: min(980px, calc(100% - 40px));
  margin: -70px auto 110px;
  padding: 34px 0 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.next-product a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--black);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.next-product span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0;
}

.demo-page,
.contact-page {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 80px;
  text-align: center;
}

.about-page {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 40px;
  text-align: center;
}

.legal-page {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 90px;
}

.legal-page h1 {
  color: var(--black);
  font-size: clamp(42px, 4.45vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
  text-align: center;
}

.legal-page h2,
.legal-page h3 {
  margin: 44px 0 14px;
  color: var(--black);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.legal-page h4 {
  margin: 28px 0 10px;
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.legal-page p {
  margin-top: 16px;
}

.legal-page ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.demo-page h1,
.contact-page h1,
.about-page h1 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--black);
  font-size: clamp(42px, 4.45vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
}

.about-page h1 strong {
  color: var(--blue);
  font-weight: 400;
}

.demo-page > p:not(.label),
.contact-page > p:not(.label),
.about-page > p:not(.label) {
  max-width: 560px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.calendly-shell {
  margin-top: 48px;
  padding: 14px;
  border-radius: 30px;
  background: var(--blue-pale);
}

.calendly-inline-widget {
  height: 1080px;
  min-height: 1080px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
}

.calendly-inline-widget iframe {
  height: 100% !important;
  overflow: hidden;
}

.contact-section {
  padding-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.contact-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
}

.contact-card h2 {
  margin: 0 0 20px;
  color: var(--black);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.contact-card > a,
.contact-card p,
.contact-card address {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.contact-card > a {
  display: block;
  width: fit-content;
  margin-top: 10px;
}

.contact-card p {
  margin-top: 18px;
}

.contact-card address {
  font-style: normal;
}

.contact-card strong {
  color: var(--black);
  font-weight: 500;
}

.contact-card a {
  color: var(--black);
}

.contact-support {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
  min-height: 0;
  margin-bottom: 16px;
  background: var(--blue-pale);
}

.contact-support p {
  max-width: 420px;
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 22px;
}

.support-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.contact-highlight-group {
  display: grid;
  gap: 12px;
}

.contact-highlight {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(43, 63, 102, 0.08);
}

.contact-highlight small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-highlight strong {
  color: var(--black);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.product-hero {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 50px;
  text-align: center;
}

.product-hero h1 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--black);
  font-size: clamp(42px, 4.45vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
}

.product-hero > p:not(.label) {
  max-width: 560px;
  margin: 22px auto 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.product-panel {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
  padding: 44px;
  border-radius: 30px;
  background: var(--blue-pale);
}

.product-panel .label {
  justify-content: flex-start;
  margin-left: 0;
}

.product-panel h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.product-panel p:not(.label) {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.oms-visual {
  padding: 20px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(41, 41, 41, 0.06);
}

.oms-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.oms-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-soft);
}

.oms-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.oms-metrics b {
  display: block;
  font-size: 26px;
  font-weight: 500;
}

.oms-metrics span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.oms-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.oms-row span {
  color: var(--muted);
}

.oms-row b {
  font-weight: 500;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 18px;
}

.service-links .text-link {
  margin-top: 0;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.flow-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.flow-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
}

.flow-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
}

.flow-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.demo-footer-bottom {
  margin-top: 0;
}

.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 70px;
}

.footer h4 {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 700;
}

.footer p {
  max-width: 260px;
  margin: 20px 0 24px;
}

.footer-top > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: var(--muted);
  font-size: 16px;
}

.footer .logo,
.footer .button {
  color: var(--black);
}

.footer .button {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 900px) {
  .nav-wrap {
    padding: 18px 20px 0;
  }

  .nav {
    position: relative;
    z-index: 32;
    grid-template-columns: 1fr auto;
    height: 44px;
    width: 100%;
  }

  .nav-links,
  .nav > .button {
    display: none;
  }

  .menu-button {
    position: fixed;
    top: 18px;
    right: 20px;
    display: grid;
    justify-self: end;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(41, 41, 41, 0.08);
    border-radius: 50%;
    background: var(--black);
    box-shadow: 0 10px 26px rgba(41, 41, 41, 0.16);
    z-index: 33;
  }

  .menu-button i {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--white);
    transition: transform 160ms ease;
  }

  .menu-open .menu-button i:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-open .menu-button i:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 31;
    top: 74px;
    left: 20px;
    right: 20px;
    max-height: calc(100vh - 94px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background:
      radial-gradient(circle at 90% 0%, rgba(87, 140, 255, 0.14), transparent 38%),
      #151515;
    color: var(--white);
    box-shadow: 0 28px 70px rgba(41, 41, 41, 0.28);
  }

  .menu-open .mobile-menu {
    display: grid;
    gap: 18px;
  }

  .menu-open {
    overflow: hidden;
  }

  .mobile-menu-group {
    display: grid;
    gap: 4px;
  }

  .mobile-menu-group > span {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
  }

  .mobile-menu a + a {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-demo-link {
    min-height: 48px;
    padding: 0 6px 0 18px !important;
    border: 0 !important;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white) !important;
  }

  .mobile-demo-link span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--blue);
  }

  .service-grid,
  .feature-grid,
  .team-grid,
  .founder-grid,
  .contact-grid,
  .contact-support,
  .about,
  .stats,
  .footer-top,
  .product-panel,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .product-panel {
    padding: 30px;
  }

  .customer-track {
    gap: 10px;
    animation-duration: 34s;
  }

  .customer-logo {
    width: 120px;
    height: 36px;
  }

  .customer-logo img {
    max-width: 120px;
    max-height: 36px;
  }

  .customer-logo--lockup {
    width: 164px;
    gap: 8px;
  }

  .customer-logo--hole {
    width: 176px;
  }

  .customer-logo--khan {
    width: 136px;
  }

  .customer-logo--emperor {
    width: 154px;
  }

  .customer-logo--dropezy {
    width: 120px;
  }

  .customer-logo--lockup .customer-logo-mark {
    width: 34px;
    height: 34px;
    max-width: 34px;
    max-height: 34px;
  }

  .customer-logo-name {
    font-size: 12px;
  }

  .commitment-panel,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .commitment-copy {
    min-width: 0;
    grid-column: 1;
    grid-row: auto;
  }

  .commitment-copy p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .commitment-panel,
  .commitment-panel .label {
    text-align: center;
    justify-content: center;
  }

  .service-card h3,
  .service-card p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 560px) {
  .gradient-bg {
    height: 500px;
    background:
      radial-gradient(ellipse 130% 56% at 50% -32%, rgba(156, 195, 255, 0.24) 0%, rgba(240, 246, 255, 0.38) 48%, rgba(255, 255, 255, 0) 82%),
      linear-gradient(180deg, rgba(240, 246, 255, 0.92) 0%, rgba(240, 246, 255, 0.46) 34%, rgba(255, 255, 255, 0) 100%);
  }

  .logo img {
    width: 118px;
  }

  .hero {
    padding-top: 102px;
    width: calc(100vw - 40px);
  }

  .hero h1 {
    max-width: 310px;
    font-size: 30px;
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal;
  }

  .hero h1 span {
    display: inline;
  }

  .hero h1 span::after {
    margin-left: 8px;
  }

  .hero-copy,
  .demo-page > p:not(.label),
  .contact-page > p:not(.label),
  .about-page > p:not(.label) {
    font-size: 16px;
    max-width: 280px;
    overflow-wrap: anywhere;
  }

  .section {
    width: calc(100vw - 40px);
    padding: 72px 0;
  }

  .hero + .section {
    padding-top: 32px;
  }

  .product-hero + .section {
    padding-top: 30px;
  }

  .product-overview {
    padding-bottom: 38px;
  }

  .product-overview + .product-features,
  .product-features + .oms-flow {
    padding-top: 38px;
  }

  .section > h2,
  .intro h2,
  .cta h2 {
    max-width: 280px;
    font-size: 26px;
    line-height: 1.08;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .service-card {
    width: 100%;
    min-height: 430px;
    padding: 22px;
  }

  .service-card h3 {
    font-size: 21px;
    overflow-wrap: anywhere;
  }

  .service-card p,
  .feature-grid p,
  .footer p {
    max-width: 300px;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .product-art {
    width: min(285px, 100%);
    height: 212px;
  }

  .art-window,
  .warehouse-map {
    inset: 22px;
  }

  .receipt,
  .recipe-card {
    left: 32px;
    right: 32px;
  }

  .api-stack {
    left: 20px;
    width: 132px;
  }

  .api-core {
    right: 24px;
  }

  .partners {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .button:not(.button-small) {
    width: 260px;
    max-width: calc(100vw - 40px);
  }

  .demo-page,
  .contact-page,
  .about-page,
  .product-hero,
  .legal-page,
  .cta,
  .next-product,
  .footer {
    width: calc(100vw - 40px);
  }

  .next-product {
    margin-top: -54px;
    margin-bottom: 80px;
  }

  .next-product a {
    max-width: 300px;
    font-size: 28px;
  }

  .product-hero h1 {
    max-width: 250px;
    font-size: 28px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .product-hero > p:not(.label),
  .product-panel p:not(.label) {
    max-width: 250px;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .product-panel {
    padding: 24px;
    overflow: hidden;
  }

  .product-panel h2 {
    max-width: 250px;
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .commitment-panel {
    padding: 26px;
  }

  .commitment-panel h2,
  .founders-section > h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .commitment-copy p {
    font-size: 16px;
  }

  .founder-card {
    padding: 24px;
    text-align: center;
  }

  .founder-card img {
    margin: 0 auto;
  }

  .founder-card ul {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .oms-visual {
    width: 100%;
    padding: 18px;
    overflow: hidden;
  }

  .oms-metrics {
    grid-template-columns: 1fr;
  }

  .oms-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
  }

  .oms-row b {
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: left;
  }

  .calendly-inline-widget {
    height: 1120px;
    min-height: 1120px;
  }

  .footer-bottom {
    display: grid;
    gap: 12px;
  }

  .legal-page h1,
  .demo-page h1,
  .contact-page h1,
  .about-page h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  .about-page h1 {
    max-width: 260px;
    font-size: 28px;
    overflow-wrap: break-word;
  }

  .about-page > p:not(.label) {
    max-width: 270px;
  }

  .commitment-section {
    width: calc(100vw - 32px);
  }

  .commitment-panel {
    padding: 26px 18px;
  }

  .commitment-copy {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .commitment-copy p {
    text-align: center;
  }
}
