:root {
  --ink: #080908;
  --muted: #656965;
  --paper: #f6f5f1;
  --white: #ffffff;
  --line: rgba(8, 9, 8, .12);
  --brand: #7410ff;
  --brand-dark: #5400c7;
  --brand-mid: #8f45ff;
  --brand-soft: #efe6ff;
  --brand-pale: #f6f0ff;
  --soft: #e9e7df;
  --radius: 8px;
  --space: clamp(22px, 4vw, 56px);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: clip;
  overscroll-behavior-x: none;
  text-rendering: geometricPrecision;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page {
  width: 100%;
  max-width: 100%;
  background: var(--paper);
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  max-width: 100%;
  margin-inline: auto;
}

.promo-strip {
  position: relative;
  z-index: 31;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 16px;
  background: #000;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

.promo-strip span {
  min-width: 0;
  color: #f5f0ff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.promo-strip b {
  display: inline-block;
  color: var(--brand-mid);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: transform .2s ease;
}

.promo-strip:hover b,
.promo-strip:focus-visible b {
  transform: translateX(4px);
}

.nav {
  position: sticky;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  margin-bottom: -70px;
  pointer-events: none;
}

.nav__bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  width: 100%;
  min-height: 70px;
  padding: 10px clamp(16px, 4vw, 50px);
  border: 0;
  border-bottom: 1px solid rgba(8, 9, 8, .12);
  border-radius: 0;
  background: rgba(246, 245, 241, .56);
  box-shadow: 0 14px 42px rgba(8, 9, 8, .06);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

body.menu-open .nav__bar {
  background: rgba(246, 245, 241, .98);
  box-shadow: none;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(116, 16, 255, .22);
}

.nav__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .62);
}

.nav__links a {
  padding: 9px 13px;
  border-radius: 6px;
  color: rgba(8, 9, 8, .76);
  font-size: 13px;
  font-weight: 500;
  transition: background .2s ease, color .2s ease;
}

.nav__links a:hover {
  color: var(--ink);
  background: var(--white);
}

.nav__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav__menu-toggle {
  display: none;
  position: relative;
  z-index: 45;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 9, 8, .12);
  border-radius: var(--radius);
  background: var(--ink);
  cursor: pointer;
}

.nav__menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform .22s ease, top .22s ease;
}

.nav__menu-toggle span:first-child {
  top: 16px;
}

.nav__menu-toggle span:last-child {
  top: 25px;
}

.nav__menu-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.nav__menu-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--mobile-menu-top, 70px);
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 89;
  display: none;
  height: auto;
  padding: 26px 16px calc(22px + env(safe-area-inset-bottom));
  background: rgba(246, 245, 241, .99);
  color: var(--ink);
  opacity: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(8, 9, 8, .16);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  width: min(100%, 520px);
  min-height: auto;
  margin-inline: auto;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 6px;
  border-bottom: 1px solid rgba(8, 9, 8, .12);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(42px, 12vw, 70px);
  font-weight: 700;
  line-height: .92;
}

.mobile-menu a::after {
  content: "→";
  color: var(--brand);
  font-size: .62em;
}

.mobile-menu .mobile-menu__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 58px;
  margin-top: 24px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--white);
  cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.mobile-menu .mobile-menu__cta::after {
  content: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 34px);
  padding: 104px 0 28px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.06);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, .9), rgba(8, 9, 8, .54) 48%, rgba(8, 9, 8, .2)),
    linear-gradient(0deg, rgba(8, 9, 8, .92), transparent 44%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .66fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  min-height: calc(100svh - 166px);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
  line-height: .91;
}

h1 {
  max-width: 880px;
  font-size: clamp(50px, 7vw, 96px);
  font-weight: 700;
}

h2 {
  max-width: 850px;
  font-size: clamp(38px, 6vw, 84px);
  font-weight: 700;
}

h3 {
  font-size: clamp(24px, 3vw, 42px);
}

.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn--brand {
  background: var(--brand);
  color: var(--white);
}

.btn--light {
  border-color: rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.arrow {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}

.btn--light .arrow {
  background: var(--white);
  color: var(--ink);
}

.btn--brand .arrow {
  background: var(--white);
  color: var(--brand);
}

.step-icon {
  display: inline-flex;
  align-items: end;
  justify-content: center;
  gap: 2px;
  width: 24px;
  height: 24px;
  padding: 5px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
}

.step-icon i {
  display: block;
  width: 4px;
  border-radius: 2px 2px 1px 1px;
  background: currentColor;
}

.step-icon i:first-child {
  height: 5px;
}

.step-icon i:nth-child(2) {
  height: 9px;
}

.step-icon i:last-child {
  height: 13px;
}

.hero__panel {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(8, 9, 8, .7);
  box-shadow: 0 24px 90px rgba(0, 0, 0, .36);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.panel__top {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  padding: 16px 16px 0;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.stock-card {
  margin: 16px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
}

.stock-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.stock-card__head strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 22px;
}

.status-pill {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(116, 16, 255, .12);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 700;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

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

.product-row:last-child {
  border-bottom: 0;
}

.bar {
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: #ecece7;
  overflow: hidden;
}

.bar__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}

.bar__fill--webshop {
  width: 82%;
}

.bar__fill--pickup {
  width: 56%;
  background: var(--brand-mid);
}

.bar__fill--low {
  width: 22%;
  background: var(--brand-dark);
}

.qty {
  min-width: 58px;
  text-align: right;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.panel__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .1);
}

.metric {
  padding: 16px;
  background: rgba(255, 255, 255, .08);
}

.metric b {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.metric span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 500;
}

.ticker {
  border-block: 1px solid rgba(255, 255, 255, .14);
  background: var(--brand);
  color: var(--white);
  overflow: hidden;
}

.ticker__inner {
  display: flex;
  width: max-content;
  animation: move 28s linear infinite;
}

.ticker span {
  padding: 16px 18px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.integration-strip {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.integration-strip__inner {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
}

.integration-strip__copy {
  min-width: 0;
}

.integration-strip h2 {
  max-width: 520px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.04;
}

.integration-strip p {
  max-width: 580px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.integration-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.integration-pill {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 46px;
  padding: 0 10px;
  border: 1px solid rgba(8, 9, 8, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .62);
  color: rgba(8, 9, 8, .74);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.05;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .64);
}

.integration-pill--logo {
  padding: 0 12px;
}

.integration-pill--logo img {
  display: block;
  width: min(100%, 116px);
  max-height: 26px;
  object-fit: contain;
}

.integration-pill--billingo img {
  width: min(100%, 128px);
  max-height: 30px;
}

.integration-pill--woocommerce img {
  width: min(100%, 70px);
  max-height: 24px;
}

.integration-pill--szamlazz img {
  width: min(100%, 118px);
  max-height: 22px;
}

.integration-pill--gls img {
  width: min(100%, 58px);
  max-height: 21px;
}

.section {
  padding: clamp(70px, 10vw, 140px) 0;
}

.section--dark {
  color: var(--white);
  background: #101310;
}

.section--black {
  color: var(--white);
  background: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section-copy {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 400;
}

.section--dark .section-copy,
.section--black .section-copy {
  color: rgba(255, 255, 255, .66);
}

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

.feature {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.feature:nth-child(2) {
  background: #f6f5f1;
  color: var(--ink);
}

.feature:nth-child(3) {
  background: var(--brand);
  color: var(--white);
}

.feature__num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.feature:nth-child(1) .feature__num,
.feature:nth-child(4) .feature__num {
  background: var(--white);
  color: var(--ink);
}

.feature h3 {
  margin-bottom: 14px;
  font-size: 26px;
  line-height: .98;
}

.feature p {
  margin: 0;
  color: currentColor;
  opacity: .75;
  font-weight: 400;
}

.showcase {
  padding-top: clamp(80px, 10vw, 140px);
}

.showcase__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, 1.45fr) minmax(280px, .55fr);
  gap: clamp(16px, 3vw, 28px);
  margin-top: clamp(42px, 6vw, 78px);
  align-items: stretch;
}

.warehouse-visual {
  position: relative;
  min-height: clamp(360px, 36vw, 520px);
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d8d4c8;
  box-shadow: 0 30px 100px rgba(8, 9, 8, .14);
}

.warehouse-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, .08), transparent 42%),
    linear-gradient(0deg, rgba(8, 9, 8, .24), transparent 56%);
  pointer-events: none;
}

.warehouse-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 72% center;
}

.warehouse-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  max-width: min(330px, calc(100% - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: rgba(8, 9, 8, .72);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.warehouse-visual figcaption span,
.operation-chip span,
.eyebrow,
.flow-proof span {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.warehouse-visual figcaption b {
  font-size: 16px;
  font-weight: 600;
}

.operation-chip {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  width: min(260px, calc(100% - 36px));
  padding: 12px 48px 12px 14px;
  border: 1px solid rgba(8, 9, 8, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 50px rgba(8, 9, 8, .18);
  backdrop-filter: blur(18px);
}

.operation-chip span {
  color: var(--muted);
}

.operation-chip b {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.operation-chip__step {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  line-height: 1;
}

.operation-chip--order {
  top: 22px;
  right: 22px;
}

.operation-chip--stock {
  left: 22px;
  top: 32%;
  border-color: rgba(116, 16, 255, .2);
}

.operation-chip--status {
  right: 38px;
  bottom: 112px;
  width: min(230px, calc(100% - 36px));
}

.warehouse-flow {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(8, 9, 8, .08);
  overflow: hidden;
}

.warehouse-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(116, 16, 255, .035), transparent 42%),
    linear-gradient(180deg, rgba(8, 9, 8, .02), transparent 34%);
  pointer-events: none;
}

.warehouse-flow > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--brand);
}

.warehouse-flow h3 {
  max-width: 620px;
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: .98;
  letter-spacing: 0;
}

.warehouse-flow h3 span {
  text-decoration-line: line-through;
  text-decoration-color: var(--brand);
  text-decoration-thickness: .12em;
  text-decoration-skip-ink: none;
}

.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: 2px;
}

.flow-list::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(116, 16, 255, .72), rgba(116, 16, 255, .18));
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 0;
  border-top: 0;
}

.flow-step:not(:last-child)::after {
  content: none;
}

.flow-step span {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(116, 16, 255, .22);
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 0 5px var(--white);
}

.flow-step > div {
  position: relative;
  min-width: 0;
  min-height: 100%;
  padding: 13px 14px 14px;
  border: 1px solid rgba(8, 9, 8, .09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 30px rgba(8, 9, 8, .045);
}

.flow-step > div::before {
  content: none;
}

.flow-step--conditional {
  grid-template-columns: 40px 1fr;
  margin-left: 28px;
}

.flow-step--conditional::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 18px;
  width: 18px;
  border-top: 1px dashed rgba(116, 16, 255, .36);
}

.flow-step--conditional span {
  width: 36px;
  height: 36px;
  margin-top: 0;
  border-style: dashed;
  background: var(--white);
  color: var(--brand-dark);
  box-shadow: 0 0 0 6px var(--white);
}

.flow-step--conditional > div {
  border-style: dashed;
  background: rgba(246, 245, 241, .72);
  box-shadow: none;
}

.flow-step--conditional > div::before {
  content: "Csak ha nincs készleten";
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 7px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(116, 16, 255, .08);
  color: var(--brand-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.flow-step b {
  display: block;
  font-size: 15px;
  font-weight: 650;
}

.flow-step small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.flow-proof {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: var(--radius);
  background: #101310;
  color: var(--white);
}

.flow-proof b {
  max-width: 360px;
  font-size: 17px;
  font-weight: 650;
}

.sync-chip {
  position: absolute;
  z-index: 4;
  top: 26px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(8, 9, 8, .18);
  transform: translateX(-50%) rotate(-2deg);
}

.sync-chip span {
  font-size: 12px;
  font-weight: 500;
}

.sync-chip b {
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .16);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.screen {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(8, 9, 8, .1);
}

.screen--inventory {
  background: linear-gradient(180deg, #fff 0%, #f7f6f2 100%);
}

.screen--shop {
  background: #111210;
  color: var(--white);
}

.screen__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(8, 9, 8, .1);
  font-size: 13px;
  font-weight: 700;
}

.screen--shop .screen__toolbar {
  border-color: rgba(255, 255, 255, .13);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
}

.window-dots i:nth-child(2) {
  background: var(--brand-mid);
}

.window-dots i:nth-child(3) {
  background: var(--brand-soft);
}

.inventory-layout {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 14px;
  padding: 18px;
}

.inventory-summary,
.inventory-feed {
  display: grid;
  gap: 10px;
}

.mini-panel,
.order-line,
.shop-product {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.mini-panel {
  padding: 16px;
}

.stock-health {
  display: grid;
  align-content: end;
  min-height: 126px;
  padding: 16px;
  border: 1px solid rgba(116, 16, 255, .16);
  border-radius: var(--radius);
  background: var(--brand-pale);
}

.stock-health span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.stock-health b {
  margin-top: 8px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 48px;
  line-height: .9;
}

.stock-health small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.mini-panel strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 42px;
  line-height: .9;
}

.mini-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 160px;
  margin-top: 22px;
}

.chart__bar {
  flex: 1;
  min-width: 14px;
  border-radius: 6px 6px 0 0;
  background: var(--brand);
}

.chart__bar:nth-child(even) {
  background: var(--brand-mid);
}

.chart__bar--1 {
  height: 42%;
}

.chart__bar--2 {
  height: 72%;
}

.chart__bar--3 {
  height: 55%;
}

.chart__bar--4 {
  height: 88%;
}

.chart__bar--5 {
  height: 66%;
}

.chart__bar--6 {
  height: 95%;
}

.order-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.thumb {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--soft);
}

.order-line:nth-child(2) .thumb {
  background: var(--brand);
}

.order-line:nth-child(3) .thumb {
  background: var(--brand-mid);
}

.order-line b {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.order-line small {
  color: var(--muted);
  font-weight: 400;
}

.sku-strip {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin: 0 18px 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.sku-strip span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.sku-strip b {
  font-size: 14px;
  font-weight: 500;
}

.storefront {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.store-hero {
  display: grid;
  align-content: end;
  min-height: 150px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(116, 16, 255, .94), rgba(84, 0, 199, .72)),
    linear-gradient(90deg, rgba(255,255,255,.12), transparent);
}

.store-hero span {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.store-hero b {
  margin-top: 20px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 38px;
  line-height: .92;
}

.store-hero small {
  margin-top: 10px;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

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

.shop-product {
  min-height: 190px;
  padding: 12px;
  color: var(--white);
  background: #20231f;
  border-color: rgba(255, 255, 255, .13);
}

.shop-photo {
  position: relative;
  height: 106px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(116, 16, 255, .92), rgba(143, 69, 255, .78));
}

.shop-product:nth-child(2) .shop-photo {
  background: linear-gradient(135deg, rgba(84, 0, 199, .92), rgba(183, 143, 255, .78));
}

.shop-photo span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.shop-product b {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.shop-product small {
  color: rgba(255, 255, 255, .62);
  font-weight: 400;
}

.cart-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.cart-mini b {
  display: block;
  font-size: 15px;
  font-weight: 500;
}

.cart-mini small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.cart-mini span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  font-weight: 700;
}

.band {
  padding: 34px 0;
  background: var(--ink);
  color: var(--white);
}

.band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.band__item {
  min-height: 148px;
  padding: 20px;
  background: #111411;
}

.band__item b {
  display: block;
  margin-bottom: 28px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 40px;
  line-height: .9;
}

.band__item span {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 400;
}

.audience {
  color: var(--white);
  background: var(--ink);
}

.audience .section-copy {
  color: rgba(255, 255, 255, .66);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(34px, 5vw, 58px);
}

.audience-card {
  display: grid;
  align-content: start;
  min-height: 240px;
  grid-column: span 2;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
}

.audience-card:nth-child(4),
.audience-card:nth-child(5) {
  grid-column: span 3;
}

.audience-card__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border: 1px solid rgba(143, 69, 255, .34);
  border-radius: var(--radius);
  background: rgba(116, 16, 255, .16);
  color: #b98cff;
}

.audience-card__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card h3 {
  max-width: 360px;
  margin-bottom: 12px;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: .98;
}

.audience-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 16px;
  font-weight: 400;
}

.pricing-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 44px;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f0efed;
  box-shadow: inset 0 0 0 1px rgba(8, 9, 8, .04);
}

.pricing-toggle button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-toggle button.is-active {
  background: var(--brand);
  color: var(--white);
}

.pricing-toggle button span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.pricing-toggle button.is-active span {
  background: rgba(255, 255, 255, .18);
  color: var(--white);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.plan {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.plan--featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-18px);
}

.plan__tag {
  align-self: flex-start;
  margin-bottom: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(8, 9, 8, .08);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.plan:not(.plan--featured) {
  padding-top: 66px;
}

.plan--featured .plan__tag {
  background: var(--brand);
  color: var(--white);
}

.plan h3 {
  margin-bottom: 14px;
  font-size: 38px;
}

.plan p {
  min-height: 74px;
  margin: 0;
  color: var(--muted);
  font-weight: 400;
}

.plan--featured p {
  color: rgba(255, 255, 255, .68);
}

.price {
  margin: 34px 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(44px, 5vw, 62px);
  font-weight: 700;
  line-height: .9;
}

.price small {
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.plan--featured .price small {
  color: rgba(255, 255, 255, .56);
}

.price em {
  display: block;
  margin-top: 12px;
  color: #00a33a;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

.plan--featured .price em {
  color: #7dff9d;
}

.plan ul {
  display: grid;
  gap: 13px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  font-weight: 500;
}

.plan li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
}

.plan li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  border-radius: 6px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.plan--featured li::before {
  background: rgba(255, 255, 255, .14);
  color: var(--white);
}

.plan__cta {
  width: 100%;
  margin-top: auto;
  background: var(--ink);
  color: var(--white);
}

.plan--featured .plan__cta {
  background: var(--brand);
  color: var(--white);
}

.plan__cta .arrow {
  background: var(--white);
  color: var(--ink);
}

.plan--featured .plan__cta .arrow {
  color: var(--brand);
}

.plan__details {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 8, .04);
  color: rgba(8, 9, 8, .78);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.plan__details:hover,
.plan__details:focus-visible {
  border-color: rgba(116, 16, 255, .24);
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.plan--featured .plan__details {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
}

.plan--featured .plan__details:hover,
.plan--featured .plan__details:focus-visible {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .14);
  color: var(--white);
}

.plan__details + .plan__cta {
  margin-top: 0;
}

.plan-info {
  max-width: 820px;
  margin: 24px auto 0;
  color: rgba(8, 9, 8, .74);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.plan-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.proof-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-width: 0;
  overflow: hidden;
}

.proof-grid > * {
  min-width: 0;
}

.proof-logos {
  width: 100%;
  min-width: 0;
  max-width: 580px;
  margin-top: clamp(34px, 5vw, 62px);
}

.proof-logos p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .44);
  font-size: 13px;
  font-weight: 400;
}

.logo-rail {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .12);
}

.logo-rail::before,
.logo-rail::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 72px;
  pointer-events: none;
}

.logo-rail::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}

.logo-rail::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink), transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-roll 30s linear infinite;
}

.demo-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 132px;
  padding: 18px 24px 18px 0;
  color: rgba(255, 255, 255, .72);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  filter: grayscale(1);
}

.demo-logo::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: .76;
}

.demo-logo--mark::before {
  border-radius: 6px;
  transform: rotate(45deg);
}

.demo-logo--dot::before {
  border-width: 7px;
}

.demo-logo--image {
  min-width: 158px;
  padding-right: 30px;
}

.demo-logo--image::before {
  display: none;
}

.demo-logo--image img {
  width: 128px;
  height: auto;
  max-height: 38px;
  opacity: .72;
  filter: brightness(0) invert(1);
}

.demo-logo--start {
  min-width: 122px;
}

.demo-logo--start img {
  width: 74px;
  max-height: 43px;
}

.demo-logo--smartkidzone {
  min-width: 184px;
}

.demo-logo--smartkidzone img {
  width: 154px;
  max-height: 42px;
}

.demo-logo--gelbau {
  min-width: 104px;
}

.demo-logo--gelbau img {
  width: 44px;
  max-height: 44px;
}

.demo-logo--village {
  min-width: 184px;
}

.demo-logo--village img {
  width: 154px;
  max-height: 38px;
}

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

.quote-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  min-width: 0;
  min-height: 250px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.quote:nth-child(2) {
  background: var(--brand);
  color: var(--white);
}

.quote:nth-child(3) {
  background: var(--white);
  color: var(--ink);
}

.quote__person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote__person img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.quote:nth-child(3) .quote__person img {
  border-color: rgba(8, 9, 8, .12);
}

.quote__person small {
  display: grid;
  gap: 2px;
  color: currentColor;
  font-size: 14px;
  font-weight: 500;
  opacity: .62;
}

.quote p {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.step {
  min-height: 260px;
  padding: 22px;
  background: var(--white);
}

.step b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 72px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
}

.process-note {
  max-width: 760px;
  margin: 22px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(116, 16, 255, .16);
  border-radius: var(--radius);
  background: var(--brand-pale);
  color: rgba(8, 9, 8, .78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.faq {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(28px, 6vw, 90px);
}

details {
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: var(--white);
}

details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1;
  list-style: none;
}

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

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--brand);
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 720px;
  margin: 0;
  padding: 0 0 26px;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  font-weight: 400;
}

.cta {
  position: relative;
  padding: clamp(70px, 10vw, 120px) 0;
  color: var(--white);
  background: var(--brand);
}

.cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.cta h2 {
  max-width: 960px;
}

.cta p {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: 20px;
  font-weight: 500;
}

.trial-cta {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 260px;
  min-height: 78px;
  padding: 16px 62px 16px 22px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(8, 9, 8, .16);
}

.trial-cta__arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--brand);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-45deg);
  transition: transform .22s ease;
}

.trial-cta:hover .trial-cta__arrow,
.trial-cta:focus-visible .trial-cta__arrow {
  animation: arrow-nudge .62s ease-in-out;
}

.trial-cta span {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.trial-cta span:not(.trial-cta__arrow) {
  padding-right: 4px;
}

.trial-cta small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

@keyframes arrow-nudge {
  0%,
  100% {
    transform: rotate(-45deg) translate(0, 0);
  }

  50% {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, .72);
  background: var(--ink);
  font-size: 14px;
  font-weight: 400;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 28px;
  align-items: center;
}

.footer__grid .brand {
  padding-left: 0;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-self: end;
}

.footer__links a,
.footer__link-button {
  color: rgba(255, 255, 255, .72);
  transition: color .2s ease;
}

.footer__links a:hover,
.footer__links a:focus-visible,
.footer__link-button:hover,
.footer__link-button:focus-visible {
  color: var(--white);
}

.footer__link-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.footer__socials {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
}

.footer__socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .68);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.footer__socials a:hover,
.footer__socials a:focus-visible {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  transform: translateY(-1px);
}

.footer__socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__socials a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.footer__copy {
  grid-column: 1;
  justify-self: start;
  margin: 0;
  color: rgba(255, 255, 255, .48);
  white-space: nowrap;
}

.subpage .nav {
  position: relative;
  margin-bottom: 0;
}

.subpage .nav__bar {
  background: rgba(246, 245, 241, .94);
}

.legal-page {
  min-height: 64vh;
}

.legal-hero {
  padding: clamp(70px, 10vw, 120px) 0;
  color: var(--white);
  background: var(--brand);
}

.legal-hero__inner {
  max-width: none;
}

.legal-hero .eyebrow {
  display: none;
}

.legal-hero p {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}

.legal-content {
  padding: clamp(54px, 8vw, 96px) 0;
}

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

.legal-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-card--wide {
  grid-column: 1 / -1;
}

.legal-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.legal-card p {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
}

.legal-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(120px, .34fr) minmax(0, 1fr);
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.legal-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-list dd {
  min-width: 0;
  margin: 0;
  font-weight: 600;
}

.legal-list a {
  color: var(--brand-dark);
  overflow-wrap: anywhere;
}

.compare-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.compare-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.compare-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 8, .74);
  backdrop-filter: blur(10px);
}

.compare-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  padding: clamp(20px, 2.7vw, 30px);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .34);
}

.compare-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.compare-modal__close::before,
.compare-modal__close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.compare-modal__close::before {
  transform: rotate(45deg);
}

.compare-modal__close::after {
  transform: rotate(-45deg);
}

.compare-modal__head {
  max-width: 720px;
  margin-bottom: 22px;
  padding-right: 48px;
}

.compare-modal__head h2 {
  font-size: clamp(34px, 4.4vw, 52px);
}

.compare-modal__head p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
}

.compare-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.compare-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}

.compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f0efed;
  color: rgba(8, 9, 8, .78);
  font-size: 13px;
  font-weight: 800;
}

.compare-table th:first-child {
  width: 34%;
  text-align: left;
}

.compare-table tbody th {
  color: rgba(8, 9, 8, .78);
  font-size: 14px;
  font-weight: 600;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-mark {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.compare-mark--yes {
  background: var(--brand-soft);
  color: var(--brand);
}

.compare-mark--no {
  background: rgba(8, 9, 8, .06);
  color: rgba(8, 9, 8, .38);
}

.compare-value {
  display: inline-block;
  color: rgba(8, 9, 8, .78);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 8, .72);
  backdrop-filter: blur(10px);
}

.contact-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  max-height: min(680px, calc(100svh - 40px));
  overflow: auto;
  padding: clamp(20px, 2.7vw, 30px);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .32);
}

.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.contact-modal__close::before,
.contact-modal__close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.contact-modal__close::before {
  transform: rotate(45deg);
}

.contact-modal__close::after {
  transform: rotate(-45deg);
}

.contact-modal__head {
  max-width: 540px;
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.contact-modal__head h2 {
  font-size: clamp(34px, 4.4vw, 48px);
}

.contact-modal__head p {
  max-width: 540px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(330px, 1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--brand-soft);
  color: var(--brand);
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.contact-card b {
  display: block;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 650;
  line-height: 1.1;
  word-break: break-word;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label:nth-child(3),
.contact-form label:nth-child(4),
.contact-form .btn {
  grid-column: 1 / -1;
}

.contact-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.contact-form .field-error {
  min-height: 16px;
  color: #b42318;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 9, 8, .14);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input {
  min-height: 42px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 88px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(116, 16, 255, .13);
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, .12);
}

.contact-form__status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-form__status[data-type="success"] {
  color: #067647;
}

.contact-form__status[data-type="error"] {
  color: #b42318;
}

.contact-form .btn {
  width: 100%;
  min-height: 46px;
  margin-top: 0;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--white);
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: .72;
}

.contact-form .btn .arrow {
  background: var(--white);
  color: var(--brand);
}

@media (max-width: 980px) {
  .nav__bar {
    grid-template-columns: 1fr auto;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .mobile-menu {
    display: block;
  }

  .sync-chip {
    position: static;
    justify-self: start;
    transform: none;
  }

  .hero__grid,
  .split,
  .showcase__stage,
  .proof-grid,
  .faq,
  .cta__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    align-items: start;
    min-height: auto;
  }

  .hero__panel {
    max-width: 560px;
  }

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

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

  .plan {
    min-height: auto;
  }

  .plan--featured {
    transform: none;
  }

  .pricing-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .plans {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 72px);
    grid-template-columns: none;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding: 0 0 12px;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .plans::-webkit-scrollbar {
    display: none;
  }

  .plan {
    min-height: auto;
    padding-inline: 18px;
  }

  .plan:not(.plan--featured) {
    padding-top: 22px;
  }

  .plan p {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .promo-strip,
  .hero,
  .ticker,
  .integration-strip,
  .section,
  .band,
  .cta,
  footer,
  .contact-modal {
    max-width: 100%;
    overflow-x: hidden;
  }

  .wrap {
    width: min(100% - 24px, var(--max));
  }

  .section {
    padding: 64px 0;
  }

  h2 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .section-copy {
    margin-top: 18px;
    font-size: 17px;
  }

  .integration-strip {
    padding: 22px 0;
  }

  .integration-strip__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .integration-strip h2 {
    font-size: 25px;
    line-height: 1.04;
  }

  .integration-strip p {
    font-size: 14px;
    line-height: 1.45;
  }

  .integration-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .integration-pill {
    min-height: 44px;
    padding: 0 8px;
    font-size: 12px;
  }

  .promo-strip {
    min-height: 32px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .nav {
    top: 0;
    margin-bottom: -60px;
  }

  .nav__bar {
    width: 100%;
    min-height: 60px;
    padding: 8px 12px;
  }

  .brand span {
    max-width: 124px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand {
    padding-left: 0;
  }

  .mobile-menu {
    padding: 22px 12px calc(22px + env(safe-area-inset-bottom));
  }

  .mobile-menu__inner {
    justify-content: flex-start;
  }

  .mobile-menu a {
    min-height: 62px;
    padding-inline: 0;
    font-size: clamp(36px, 10.5vw, 52px);
  }

  .contact-modal {
    padding: 12px;
  }

  .compare-modal {
    padding: 12px;
  }

  .compare-modal__panel {
    max-height: calc(100svh - 24px);
    padding: 24px 16px 18px;
  }

  .compare-modal__head {
    padding-right: 42px;
  }

  .compare-modal__head p {
    font-size: 15px;
  }

  .compare-table {
    min-width: 760px;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 10px;
  }

  .contact-modal__panel {
    max-height: calc(100svh - 24px);
    padding: 24px 16px 18px;
  }

  .contact-modal__head {
    padding-right: 42px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-card {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-icon svg {
    width: 23px;
    height: 23px;
  }

  .contact-card small {
    font-size: 13px;
  }

  .contact-card b {
    font-size: 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .hero {
    min-height: calc(100svh - 32px);
    padding: 138px 0 56px;
  }

  .hero__grid {
    gap: 0;
  }

  h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .lead {
    margin-top: 20px;
    font-size: 18px;
  }

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

  .btn {
    width: 100%;
  }

  .hero__panel {
    display: none;
  }

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

  .feature-grid,
  .showcase__stage,
  .process {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 10px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .feature,
  .screen,
  .warehouse-visual,
  .warehouse-flow,
  .band__item,
  .plan,
  .step {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

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

  .feature {
    min-height: 250px;
  }

  .showcase__stage {
    position: relative;
    margin-top: 38px;
    gap: 0;
    align-items: stretch;
  }

  .warehouse-visual {
    min-height: 230px;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: none;
  }

  .warehouse-flow {
    min-height: auto;
    border-bottom: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: none;
  }

  .warehouse-visual img {
    object-position: 38% center;
  }

  .warehouse-visual figcaption {
    display: none;
  }

  .operation-chip {
    display: none;
  }

  .warehouse-flow {
    padding: 20px;
  }

  .warehouse-flow h3 {
    font-size: 32px;
  }

  .flow-step {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

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

  .flow-list::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(116, 16, 255, .72), rgba(116, 16, 255, .18));
  }

  .flow-step:not(:last-child)::after {
    content: none;
  }

  .flow-step span {
    width: 38px;
    height: 38px;
    border-width: 1px;
  }

  .flow-step > div {
    padding: 13px 14px;
  }

  .flow-step--conditional {
    margin-left: 18px;
  }

  .flow-step--conditional::before {
    content: "";
    left: -8px;
    top: 19px;
    width: 18px;
  }

  .band {
    padding: 24px 0;
  }

  .band__grid {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: min(100% - 24px, var(--max));
    margin-inline: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    scroll-snap-type: none;
  }

  .band__item {
    display: flex;
    min-height: 132px;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: #111411;
  }

  .band__item b {
    margin-bottom: 18px;
    font-size: clamp(30px, 9vw, 44px);
  }

  .band__item span {
    font-size: 13px;
    line-height: 1.35;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }

  .audience-card,
  .audience-card:nth-child(4),
  .audience-card:nth-child(5) {
    grid-column: auto;
    min-height: auto;
    padding: 18px;
  }

  .audience-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 30px;
  }

  .audience-card h3 {
    font-size: 28px;
  }

  .audience-card p {
    font-size: 15px;
  }

  .pricing-head {
    margin-bottom: 28px;
  }

  .pricing-toggle {
    width: 100%;
  }

  .pricing-toggle button {
    justify-content: center;
    flex: 1;
    padding-inline: 8px;
    font-size: 13px;
  }

  .pricing-toggle button span {
    padding-inline: 8px;
    font-size: 11px;
  }

  .plans {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 72px);
    grid-template-columns: none;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding: 0 0 12px;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .plans::-webkit-scrollbar {
    display: none;
  }

  .plan {
    min-height: auto;
    padding-inline: 18px;
  }

  .plan:not(.plan--featured) {
    padding-top: 22px;
  }

  .plan h3 {
    font-size: 34px;
  }

  .plan p {
    min-height: 0;
  }

  .price {
    margin: 26px 0;
  }

  .proof-grid {
    gap: 36px;
  }

  .proof-logos {
    display: block;
    max-width: none;
    margin-top: 34px;
  }

  .proof-logos p {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .logo-rail::before,
  .logo-rail::after {
    width: 36px;
  }

  .demo-logo {
    min-width: 118px;
    padding: 14px 20px 14px 0;
  }

  .demo-logo--image {
    min-width: 132px;
    padding-right: 24px;
  }

  .demo-logo--image img {
    width: 106px;
    max-height: 32px;
  }

  .demo-logo--start {
    min-width: 96px;
  }

  .demo-logo--start img {
    width: 62px;
    max-height: 36px;
  }

  .demo-logo--smartkidzone,
  .demo-logo--village {
    min-width: 152px;
  }

  .demo-logo--smartkidzone img,
  .demo-logo--village img {
    width: 128px;
    max-height: 34px;
  }

  .demo-logo--gelbau {
    min-width: 84px;
  }

  .demo-logo--gelbau img {
    width: 38px;
    max-height: 38px;
  }

  .quote-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .quote {
    min-height: 250px;
    gap: 18px;
    padding: 14px;
  }

  .quote__person {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .quote__person img {
    width: 38px;
    height: 38px;
  }

  .quote__person small {
    font-size: 12px;
    line-height: 1.15;
  }

  .quote p {
    font-size: clamp(15px, 4.2vw, 19px);
  }

  .process {
    margin-top: 34px;
    border: 0;
    border-radius: 0;
    background: transparent;
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .process-note {
    margin-top: 14px;
    padding: 16px;
    font-size: 15px;
    text-align: left;
  }

  .step b,
  .feature__num {
    margin-bottom: 34px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: stretch;
    text-align: center;
  }

  .footer__grid .brand {
    order: 1;
    width: 100%;
    justify-content: center;
    padding-left: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .footer__grid .brand span {
    max-width: none;
  }

  .footer__socials {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .footer__socials a {
    width: 42px;
    height: 42px;
  }

  .footer__links {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px 8px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .footer__links a,
  .footer__link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 38px;
    padding: 0 6px;
    text-align: center;
    line-height: 1.2;
  }

  .footer__copy {
    order: 4;
    width: 100%;
    padding-top: 18px;
    text-align: center;
    white-space: normal;
  }

  .legal-content__grid {
    grid-template-columns: 1fr;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
