html {
  scroll-padding-top: 92px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  border-bottom: 1px solid var(--site-border);
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(14px);
  font-family: var(--site-font);
}

.site-nav__inner {
  width: min(calc(100% - 48px), var(--site-container));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--site-fg);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.site-nav__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav__link,
.site-nav__summary {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  color: var(--site-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 12px;
  transition: color 0.16s ease, background 0.16s ease;
}

.site-nav__link:hover,
.site-nav__summary:hover,
.site-nav__link[aria-current="page"] {
  color: var(--site-fg);
  background: rgba(148, 163, 184, 0.1);
}

.site-nav__cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #68f6a2, var(--site-green));
  color: #05120c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 18px;
  box-shadow: 0 14px 34px rgba(87, 242, 135, 0.2);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.site-nav__cta:visited,
.site-nav__cta:focus-visible,
.site-nav__cta[aria-current="page"] {
  color: #05120c;
  background: linear-gradient(180deg, #68f6a2, var(--site-green));
  text-decoration: none;
}

.site-nav__cta:hover {
  color: #05120c;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(87, 242, 135, 0.26);
  filter: saturate(1.04);
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__summary {
  list-style: none;
  cursor: pointer;
}

.site-nav__summary::-webkit-details-marker {
  display: none;
}

.site-nav__summary::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.site-nav__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  padding: 8px;
  border: 1px solid var(--site-border-strong);
  border-radius: var(--site-radius);
  background: var(--site-surface-solid);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.site-nav__dropdown:not([open]) .site-nav__panel {
  display: none;
}

.site-nav__panel a {
  display: block;
  border-radius: 6px;
  color: var(--site-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  padding: 10px 12px;
}

.site-nav__panel a:hover,
.site-nav__panel a[aria-current="page"] {
  color: var(--site-fg);
  background: rgba(148, 163, 184, 0.1);
}

.site-nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--site-border);
  border-radius: 7px;
  background: transparent;
  color: var(--site-fg);
  cursor: pointer;
}

.site-nav__toggle span,
.site-nav__toggle::before,
.site-nav__toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav__toggle::before,
.site-nav__toggle::after {
  position: absolute;
}

.site-nav__toggle::before {
  transform: translateY(-6px);
}

.site-nav__toggle::after {
  transform: translateY(6px);
}

.site-footer {
  border-top: 1px solid var(--site-border);
  background: rgba(5, 7, 10, 0.72);
  color: var(--site-muted);
  font-family: var(--site-font);
}

.site-footer__inner {
  width: min(calc(100% - 48px), var(--site-container));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.site-footer__brand {
  color: var(--site-fg);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.site-footer__copy {
  color: var(--site-dim);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: var(--site-dim);
  font-size: 12px;
  line-height: 1.7;
  margin: 8px 0 0;
}

.site-footer__legal a {
  color: var(--site-dim);
  text-decoration: none;
}

.site-footer__beian {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-footer__beian img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.site-footer__legal a:hover {
  color: var(--site-fg);
}

.site-footer__beian {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-footer__beian img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.site-footer__links a {
  color: var(--site-muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--site-fg);
}

.site-form-status {
  margin-top: 14px;
  border: 1px solid var(--site-border);
  border-radius: 7px;
  background: rgba(79, 139, 255, 0.08);
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 12px;
}

.site-form-status.is-success {
  border-color: rgba(25, 230, 167, 0.34);
  background: rgba(25, 230, 167, 0.1);
  color: var(--site-green);
}

.site-form-status.is-error {
  border-color: rgba(248, 81, 73, 0.38);
  background: rgba(248, 81, 73, 0.1);
  color: #ff8b82;
}

.contact-drawer {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 5200;
  font-family: var(--site-font);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-drawer.is-suppressed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.contact-drawer__toggle {
  position: relative;
  z-index: 1;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(25, 230, 167, 0.38);
  border-radius: 999px;
  background: var(--site-green);
  color: #07110b;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  padding: 0 18px;
}

.contact-drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.34);
}

.contact-drawer__panel {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 58px;
  width: min(calc(100vw - 32px), 380px);
  border: 1px solid var(--site-border-strong);
  border-radius: 12px;
  background: var(--site-surface-solid);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  color: var(--site-fg);
  padding: 18px;
}

.contact-drawer:not(.is-open) .contact-drawer__panel {
  display: none;
}

.contact-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.contact-drawer__title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 4px;
}

.contact-drawer__desc {
  color: var(--site-muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.contact-drawer__close {
  width: 32px;
  height: 32px;
  border: 1px solid var(--site-border);
  border-radius: 7px;
  background: transparent;
  color: var(--site-muted);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.contact-drawer__body {
  display: grid;
  gap: 10px;
}

.contact-drawer__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--site-border);
  border-radius: 9px;
  background: rgba(148, 163, 184, 0.06);
  padding: 11px 12px;
}

.contact-drawer__item span {
  color: var(--site-muted);
  font-size: 12px;
}

.contact-drawer__item strong,
.contact-drawer__item a {
  color: var(--site-fg);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.contact-drawer__copy {
  border: 0;
  border-radius: 7px;
  background: rgba(25, 230, 167, 0.12);
  color: var(--site-green);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 9px;
}

.contact-drawer__qr {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--site-border);
  border-radius: 9px;
  background: rgba(148, 163, 184, 0.06);
  padding: 12px;
}

.contact-drawer__qr img {
  width: 84px;
  height: 84px;
  border-radius: 8px;
  background: #fff;
}

.contact-drawer__qr strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-drawer__qr span {
  color: var(--site-muted);
  font-size: 12px;
  line-height: 1.5;
}

.contact-drawer__cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--site-green);
  color: #07110b;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  margin-top: 2px;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 5400;
  transform: translateX(-50%);
  border: 1px solid rgba(25, 230, 167, 0.28);
  border-radius: 999px;
  background: var(--site-surface-solid);
  color: var(--site-green);
  font-family: var(--site-font);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.36);
}

.legal-page {
  min-height: 100vh;
  padding: 136px 24px 72px;
  background:
    radial-gradient(circle at 12% 0%, rgba(25, 230, 167, 0.08), transparent 30%),
    var(--site-bg);
  color: var(--site-fg);
  font-family: var(--site-font);
}

.legal-page__inner {
  width: min(100%, 920px);
  margin: 0 auto;
}

.legal-page__kicker {
  color: var(--site-green);
  font: 700 13px/1.3 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.legal-page h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0 0 18px;
}

.legal-page__lead {
  color: var(--site-muted);
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 42px;
}

.legal-section {
  border-top: 1px solid var(--site-border);
  padding: 28px 0;
}

.legal-section h2 {
  color: var(--site-fg);
  font-size: 22px;
  margin: 0 0 12px;
}

.legal-section p,
.legal-section li {
  color: var(--site-muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-section ul {
  margin: 12px 0 0 22px;
}

.legal-section a {
  color: var(--site-green);
}

.product-visual {
  width: min(100%, 720px);
  min-width: 0;
  border: 1px solid var(--site-border-strong);
  border-radius: 14px;
  background:
    radial-gradient(circle at 84% 8%, rgba(79, 139, 255, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(17, 27, 39, 0.94), rgba(5, 9, 14, 0.96));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  color: var(--site-fg);
  font-family: var(--site-font);
}

.product-visual__bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.42);
  padding: 0 18px;
}

.product-visual__title {
  color: var(--site-fg);
  font-size: 13px;
  font-weight: 700;
}

.product-visual__status {
  border: 1px solid rgba(25, 230, 167, 0.3);
  border-radius: 999px;
  background: rgba(25, 230, 167, 0.08);
  color: var(--site-green);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
  white-space: nowrap;
}

.product-visual__body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.product-visual__cols {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 14px;
}

.product-visual__panel {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.58);
  padding: 14px;
  min-width: 0;
}

.product-visual__panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--site-muted);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-visual__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.38);
  color: var(--site-muted);
  font-size: 12px;
  line-height: 1.35;
  padding: 9px 10px;
}

.product-visual__row + .product-visual__row {
  margin-top: 8px;
}

.product-visual__row strong {
  color: var(--site-fg);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.product-visual__row.is-active {
  border-color: rgba(25, 230, 167, 0.32);
  background: rgba(25, 230, 167, 0.08);
}

.product-visual__row.is-warning {
  border-color: rgba(242, 204, 96, 0.32);
  background: rgba(242, 204, 96, 0.08);
}

.product-visual__metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.product-visual__metric {
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.36);
  padding: 12px;
}

.product-visual__metric strong {
  display: block;
  color: var(--site-fg);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 18px;
  margin-bottom: 4px;
}

.product-visual__metric span {
  color: var(--site-muted);
  font-size: 11px;
}

.product-visual__stack {
  display: grid;
  gap: 10px;
}

.product-visual__code {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.5);
  color: var(--site-green);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  line-height: 1.65;
  padding: 12px;
}

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

.product-visual__asset {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.36);
  padding: 12px;
}

.product-visual__asset span {
  display: block;
  color: var(--site-muted);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  margin-bottom: 6px;
}

.product-visual__asset strong {
  color: var(--site-fg);
  font-size: 13px;
}

@media (max-width: 960px) {
  .site-nav__inner {
    width: min(calc(100% - 32px), var(--site-container));
  }

  .site-nav__toggle {
    position: relative;
    display: inline-flex;
  }

  .site-nav__menu {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--site-border-strong);
    border-radius: var(--site-radius);
    background: var(--site-surface-solid);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  }

  .site-nav.is-open .site-nav__menu {
    display: flex;
  }

  .site-nav__dropdown,
  .site-nav__panel {
    position: static;
  }

  .site-nav__panel {
    min-width: 0;
    margin: 4px 0 8px;
    border-color: var(--site-border);
    background: rgba(148, 163, 184, 0.06);
    box-shadow: none;
  }

  .site-nav__link,
  .site-nav__summary {
    justify-content: space-between;
    width: 100%;
  }

  .site-footer__inner {
    width: min(calc(100% - 32px), var(--site-container));
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .contact-drawer {
    right: 16px;
    bottom: 16px;
  }

  .contact-drawer__toggle {
    min-height: 42px;
    padding: 0 14px;
  }

  .contact-drawer__panel {
    right: 0;
    bottom: 52px;
  }

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

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

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

/* Joosure Design Standard v1.5 production alignment */
html {
  background: var(--bg-base);
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--site-font);
  color: var(--text-primary);
  background:
    linear-gradient(180deg, #061116 0%, #071923 42%, #050b10 100%) !important;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  max-width: 100%;
  overflow-x: clip;
}

body::selection {
  background: rgba(25, 230, 167, 0.24);
  color: var(--text-primary);
}

body a {
  text-underline-offset: 4px;
}

body h1,
body h2,
body h3,
body h4,
body p,
body li,
body input,
body textarea,
body select,
body button {
  letter-spacing: 0 !important;
}

body p,
body li {
  line-height: 1.72;
}

body .container {
  width: min(calc(100% - 48px), var(--site-container));
  max-width: var(--site-container);
  padding-left: 0;
  padding-right: 0;
}

body .nav,
body .site-nav {
  position: sticky;
  top: 0;
  height: 72px;
  border-bottom: 1px solid rgba(25, 230, 167, 0.14);
  background: rgba(5, 11, 16, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
}

body .nav-inner,
body .site-nav__inner {
  width: min(calc(100% - 48px), var(--site-container));
  min-height: 72px;
  height: 72px;
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 32px;
  margin: 0 auto;
}

body .nav-logo,
body .brand,
body .site-nav__brand {
  min-width: 220px;
  gap: 12px;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

body .site-nav__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

body .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-strong), var(--accent-2));
}

body .nav-links,
body .site-nav__menu {
  display: flex;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  gap: 10px;
  margin-left: 0;
}

body .nav-link,
body .nav-links a,
body .site-nav__link,
body .site-nav__summary {
  min-height: 40px;
  height: 40px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-secondary);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease-out), background var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out);
}

body .nav-link:hover,
body .nav-links a:hover,
body .site-nav__link:hover,
body .site-nav__summary:hover,
body .site-nav__link[aria-current="page"],
body .site-nav__panel a[aria-current="page"] {
  color: var(--brand-strong);
  background: rgba(25, 230, 167, 0.09);
  border-color: rgba(25, 230, 167, 0.18);
}

body .site-nav__cta,
body .nav-cta,
body .btn-primary,
body button.form-submit,
body input.form-submit,
body .contact-drawer__toggle,
body .contact-drawer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-strong), var(--brand));
  color: #03120f;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(25, 230, 167, 0.18);
  transition: transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out), filter var(--motion-fast) var(--ease-out);
}

body .site-nav__cta:visited,
body .site-nav__cta:focus-visible,
body .site-nav__cta[aria-current="page"] {
  color: #03120f;
  background: linear-gradient(180deg, var(--brand-strong), var(--brand));
  text-decoration: none;
  border: 0;
}

body .site-nav__cta:hover,
body .nav-cta:hover,
body .btn-primary:hover,
body button.form-submit:hover,
body input.form-submit:hover,
body .contact-drawer__toggle:hover,
body .contact-drawer__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(25, 230, 167, 0.24);
  filter: saturate(1.04);
}

body .site-nav__menu > .site-nav__cta {
  display: none !important;
}

body .site-nav__panel {
  border-color: rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  background: rgba(7, 25, 35, 0.98);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
}

body .site-nav__panel a {
  border-radius: 12px;
  color: var(--text-secondary);
  font-weight: 700;
}

body .hero::before,
body .hero::after,
body .console::after,
body .hero-product-demo::before {
  opacity: 0.08;
}

body .hero,
body .page-hero {
  min-height: auto;
  padding-top: 104px;
  padding-bottom: 84px;
}

body .hero-inner,
body .hero-layout,
body .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
  gap: 64px;
  align-items: center;
  min-width: 0;
}

body .hero-content,
body .hero-inner > *,
body .hero-layout > *,
body .hero-grid > *,
body .console,
body .hero-product-demo,
body .product-visual,
body .live-system {
  min-width: 0;
  max-width: 100%;
}

body .hero-title,
body .hero-content h1,
body .display-title,
body .legal-page h1,
body .placeholder-box h1 {
  max-width: 760px;
  font-family: var(--site-font);
  font-size: 60px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0 !important;
}

body .hero-title em,
body .highlight,
body .text-green {
  color: var(--brand-strong);
  background: none;
  -webkit-text-fill-color: currentColor;
}

body .hero-subtitle,
body .hero-description,
body .hero-copy,
body .lead,
body .section-subtitle,
body .legal-page__lead {
  max-width: 760px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.76;
  font-weight: 500;
  overflow-wrap: anywhere;
}

body .hero-badge,
body .hero-tag,
body .hero-badges .badge,
body .badge,
body .eyebrow,
body .section-label,
body .section-kicker,
body .legacy-block-kicker,
body .foundation-kicker,
body .placeholder-eyebrow,
body .legal-page__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(25, 230, 167, 0.24);
  border-radius: 999px;
  background: rgba(25, 230, 167, 0.08);
  color: var(--brand-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
}

body .hero-badge::before,
body .hero-tag::before,
body .hero-badges .badge::before,
body .badge::before,
body .eyebrow::before,
body .section-label::before,
body .section-kicker::before,
body .legacy-block-kicker::before,
body .foundation-kicker::before,
body .placeholder-eyebrow::before,
body .legal-page__kicker::before {
  content: none !important;
  display: none !important;
}

body .btn,
body .btn-primary,
body .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

body .btn-secondary {
  border: 1px solid var(--border-strong);
  background: rgba(148, 163, 184, 0.05);
  color: var(--text-primary);
}

body .btn-secondary:hover {
  border-color: rgba(25, 230, 167, 0.28);
  background: rgba(25, 230, 167, 0.07);
}

body .section {
  position: relative;
  padding-top: 112px;
  padding-bottom: 112px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  border-bottom: 0;
  overflow: clip;
}

body .section-title,
body .section h2,
body .cta-title {
  max-width: 980px;
  color: var(--text-primary);
  font-family: var(--site-font);
  font-size: 38px;
  line-height: 1.26;
  font-weight: 900;
  letter-spacing: 0 !important;
}

body .cta-section .section-label,
body .cta-section .cta-title,
body .cta-section .cta-subtitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body .section-head,
body .section-header {
  max-width: 780px;
  margin-bottom: 48px;
}

body .cards-grid,
body .solutions-grid,
body .resources-grid,
body .product-grid,
body .products-grid,
body .metrics-grid,
body .trust-cards,
body .value-metrics,
body .feature-grid,
body .capabilities-grid {
  gap: 24px;
}

body .card,
body .product-card,
body .solution-card,
body .resource-card,
body .trust-card,
body .value-metric,
body .metric-item,
body .metric-card,
body .focus-card,
body .panel-card,
body .step-card,
body .capability-card,
body .feature-card,
body .foundation-group,
body .contact-card,
body .legal-section,
body .cta-section,
body .product-visual,
body .hero-product-demo,
body .console,
body .integration-viz,
body .workflow-container,
body .problem-comparison,
body .engineering-stack,
body .capability-foundation {
  border-color: var(--border-subtle) !important;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 30, 42, 0.82), rgba(8, 20, 31, 0.78)) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

body .section.problem-section {
  width: min(calc(100% - 48px), var(--site-container));
  margin: 48px auto;
  padding: 76px clamp(32px, 5vw, 72px);
  border: 1px solid var(--border-subtle) !important;
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 10%, rgba(25, 230, 167, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(13, 30, 42, 0.86), rgba(8, 20, 31, 0.8)) !important;
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.24);
  box-sizing: border-box;
  overflow: hidden;
}

body .section.problem-section .container {
  width: min(calc(100% - 64px), 1180px);
}

body .legal-section {
  padding: 34px 40px;
}

body .legal-section + .legal-section {
  margin-top: 24px;
}

body .card,
body .product-card,
body .solution-card,
body .resource-card,
body .trust-card,
body .value-metric,
body .metric-item,
body .feature-card,
body .capability-card,
body .foundation-group,
body .contact-card {
  transition: transform var(--motion-mid) var(--ease-out), border-color var(--motion-fast) var(--ease-out), background var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out);
}

body .card:hover,
body .product-card:hover,
body .solution-card:hover,
body .resource-card:hover,
body .feature-card:hover,
body .capability-card:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 230, 167, 0.28) !important;
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.3);
}

body .card-title,
body .product-title,
body .solution-title,
body .resource-title,
body .foundation-title,
body .trust-content h3,
body .card h3,
body .product-card h3,
body .solution-card h3,
body .resource-card h3 {
  color: var(--text-primary);
  font-size: 22px;
  line-height: 1.34;
  font-weight: 800;
}

body .card-desc,
body .product-description,
body .solution-desc,
body .resource-desc,
body .foundation-desc,
body .trust-content p,
body .card p,
body .product-card p,
body .solution-card p,
body .resource-card p {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.74;
}

body .product-icon,
body .card-icon,
body .icon-block {
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

body .product-card:nth-of-type(1) .product-icon,
body .product-card:nth-of-type(1) .icon-block,
body .product-card:nth-of-type(1) .card-icon {
  background: var(--accent-1) !important;
  color: #03120f !important;
}

body .product-card:nth-of-type(2) .product-icon,
body .product-card:nth-of-type(2) .icon-block,
body .product-card:nth-of-type(2) .card-icon {
  background: var(--accent-2) !important;
  color: #ffffff !important;
}

body .product-card:nth-of-type(3) .product-icon,
body .product-card:nth-of-type(3) .icon-block,
body .product-card:nth-of-type(3) .card-icon {
  background: var(--accent-3) !important;
  color: #171006 !important;
}

body .product-card:nth-of-type(4) .product-icon,
body .product-card:nth-of-type(4) .icon-block,
body .product-card:nth-of-type(4) .card-icon {
  background: var(--accent-4) !important;
  color: #ffffff !important;
}

body .console,
body .hero-product-demo,
body .product-visual {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(13, 30, 42, 0.94), rgba(7, 17, 26, 0.96)) !important;
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.3);
  transform: none;
}

body .hero .console {
  padding: 0 0 30px;
}

body .hero .console-header {
  min-height: 76px;
  margin: 36px 42px 0;
  padding: 0 28px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(12, 35, 47, 0.9), rgba(7, 22, 31, 0.82)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 30px rgba(0, 0, 0, 0.2);
}

body .hero .console-body {
  padding: 24px 42px 0;
}

body .hero .hero-demo-shell {
  padding: 34px 38px 28px;
  gap: 24px;
}

body .hero .hero-demo-top {
  min-height: 76px;
  padding: 0 28px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(12, 35, 47, 0.9), rgba(7, 22, 31, 0.82)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 30px rgba(0, 0, 0, 0.2);
}

body .console-head,
body .product-visual__bar {
  border-bottom-color: var(--border-subtle);
  background: rgba(5, 11, 16, 0.42);
}

body .console-title,
body .hero-demo-title,
body .product-visual__title,
body .console-id,
body .console-chip,
body .product-visual__panel-title,
body .hero-task-kicker,
body .hero-card-kicker {
  font-family: var(--font-mono);
  letter-spacing: 0.04em !important;
}

body .console-dot,
body .hero-step-dot,
body .console-status::before,
body .console-title::before {
  background: var(--brand) !important;
  box-shadow: 0 0 0 5px rgba(25, 230, 167, 0.1);
  animation: none !important;
}

body .console-line .cmd,
body .console-env,
body .console-status,
body .product-visual__status,
body .hero-demo-status,
body .hero-evidence-head strong,
body .hero-evidence-head span,
body .resource-link,
body .value-metric__value,
body .metric-value,
body .metric-item .metric-value,
body .product-visual__code {
  color: var(--brand) !important;
}

body .text-blue,
body .mapped {
  color: var(--accent-2) !important;
}

body .text-yellow,
body .warn,
body .review,
body .hero-task-badge {
  color: var(--accent-3) !important;
}

body .text-purple {
  color: var(--accent-4) !important;
}

body .text-red,
body .error {
  color: var(--accent-5) !important;
}

body .workflow-step,
body .hero-product-step,
body .task-row,
body .product-visual__row,
body .showcase-row,
body .integration-flow__row,
body .mini-row {
  border-radius: 16px;
  border-color: var(--border-subtle) !important;
  background: rgba(5, 11, 16, 0.36) !important;
}

body .workflow-timeline {
  gap: 22px;
  padding: 34px 32px 36px;
}

body .workflow-step {
  min-height: 270px;
  padding: 22px 18px 18px;
  overflow: visible;
}

body .workflow-number {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin: 0 0 20px;
  box-shadow:
    0 10px 24px rgba(25, 230, 167, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

body .workflow-line {
  top: 43px;
  left: 62px;
  right: -23px;
  z-index: 1;
  width: auto;
}

body .workflow-window {
  position: relative;
  z-index: 2;
  min-height: 172px;
}

body .workflow-step.active,
body .workflow-step.completed,
body .product-visual__row.is-active,
body .showcase-row.is-active,
body .step-card.is-current {
  border-color: rgba(25, 230, 167, 0.34) !important;
  background: rgba(25, 230, 167, 0.08) !important;
}

body .workflow-step.active .workflow-number,
body .workflow-step.completed .workflow-number {
  border-color: var(--brand) !important;
  color: #03120f !important;
  background: linear-gradient(180deg, var(--brand-strong), var(--brand)) !important;
}

body .solution-number,
body .workflow-number,
body .step-num,
body .task-num {
  border-radius: 14px;
  background: linear-gradient(180deg, var(--brand-strong), var(--brand)) !important;
  color: #03120f !important;
  font-family: var(--font-mono);
  font-weight: 900;
}

body #problem .section-label,
body #solutions .section-label {
  letter-spacing: 0.08em !important;
}

body #problem .section-subtitle,
body #solutions .section-subtitle {
  max-width: 860px;
  margin-top: 18px;
}

body #problem .problem-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}

body #problem .problem-panel {
  position: relative;
  min-height: 268px;
  padding: 28px;
  overflow: hidden;
}

body #problem .problem-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--accent-5);
  opacity: 0.84;
}

body #problem .problem-panel.win::before {
  background: linear-gradient(90deg, var(--brand), var(--accent-2));
}

body #problem .problem-panel strong {
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em !important;
  text-transform: uppercase;
}

body #problem .problem-panel__title {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.36;
}

body #problem .problem-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

body #problem .problem-list span {
  position: relative;
  display: block;
  min-height: 38px;
  padding: 10px 12px 10px 32px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 14px;
  background: rgba(5, 11, 16, 0.32);
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.45;
}

body #problem .problem-list span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-5);
}

body #problem .problem-panel.win .problem-list span::before {
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(25, 230, 167, 0.1);
}

body #problem .problem-arrow {
  display: grid;
  place-items: center;
  color: var(--brand-strong);
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 900;
  opacity: 0.72;
}

body #solutions .solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

body #solutions .solution-card {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 12px;
  padding: 28px;
  overflow: hidden;
  text-decoration: none;
}

body #solutions .solution-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--brand);
}

body #solutions .solution-card:nth-child(2)::before { background: var(--accent-2); }
body #solutions .solution-card:nth-child(3)::before { background: var(--accent-3); }
body #solutions .solution-card:nth-child(4)::before { background: var(--accent-4); }
body #solutions .solution-card:nth-child(5)::before { background: var(--accent-7); }
body #solutions .solution-card:nth-child(6)::before { background: var(--accent-6); }

body #solutions .solution-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  font-size: 14px;
}

body #solutions .solution-domain {
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  padding: 7px 10px;
}

body #solutions .solution-title {
  margin: 2px 0 0;
  font-size: 23px;
}

body #solutions .solution-desc {
  margin: 0;
  color: var(--text-secondary);
}

body #solutions .solution-proof-list {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

body #solutions .solution-proof-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-tertiary);
  font-size: 13.5px;
  line-height: 1.55;
}

body #solutions .solution-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

body #solutions .solution-card__cta {
  align-self: end;
  color: var(--brand-strong);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
}

body .cta-section {
  margin-left: auto;
  margin-right: auto;
  padding: 64px;
  text-align: center;
}

body .cta-subtitle,
body .cta-desc {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.76;
}

body .form-input,
body .form-select,
body textarea,
body input,
body select {
  border-color: var(--border-subtle) !important;
  border-radius: 16px !important;
  background: rgba(5, 11, 16, 0.48) !important;
  color: var(--text-primary) !important;
  font-family: var(--site-font);
}

body .form-input:focus,
body .form-select:focus,
body textarea:focus,
body input:focus,
body select:focus {
  outline: 2px solid rgba(25, 230, 167, 0.32);
  outline-offset: 2px;
}

.site-footer {
  border-top-color: rgba(148, 163, 184, 0.12);
  background: #050b10;
}

.site-footer__inner {
  padding: 42px 0;
}

.site-footer__brand {
  font-size: 17px;
  font-weight: 800;
}

.site-footer__legal,
.site-footer__copy {
  color: var(--text-tertiary);
}

.site-footer__links a {
  color: var(--text-secondary);
  font-weight: 700;
}

.contact-drawer__panel,
.site-toast {
  border-color: var(--border-strong);
  border-radius: 20px;
  background: rgba(7, 25, 35, 0.98);
}

.reveal,
.motion-item,
.motion-group,
.motion-card {
  opacity: 0;
  transform: translateY(30px);
  transition-property: opacity, transform, border-color, background, box-shadow;
  transition-duration: var(--motion-section);
  transition-timing-function: var(--ease-out);
  will-change: opacity, transform;
}

.motion-group {
  transform: translateY(44px);
  transition-duration: 860ms;
}

.motion-card {
  transform: translateY(34px);
}

.reveal.visible,
.reveal.is-visible,
.is-visible .motion-item,
.is-visible .motion-group,
.is-visible .motion-card {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 170ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 310ms; }
.delay-5 { transition-delay: 380ms; }

body .hero-content,
body .hero-product-demo,
body .live-system,
body .product-visual {
  animation: none !important;
}

@media (max-width: 1180px) {
  body .hero-inner,
  body .hero-layout,
  body .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  body .hero-title,
  body .hero-content h1,
  body .display-title,
  body .legal-page h1,
  body .placeholder-box h1 {
    font-size: 50px;
  }

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

@media (max-width: 960px) {
  body .nav-inner,
  body .site-nav__inner {
    width: min(calc(100% - 32px), var(--site-container));
    grid-template-columns: auto auto;
    column-gap: 16px;
  }

  body .nav-logo,
  body .brand,
  body .site-nav__brand {
    min-width: 0;
    font-size: 17px;
  }

  body .nav-links {
    display: none;
  }

  body .site-nav__toggle {
    display: none;
  }

  body .site-nav__menu {
    display: flex;
    position: static;
    width: auto;
    height: 72px;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body .site-nav__menu > .site-nav__link,
  body .site-nav__dropdown {
    display: none;
  }

  body .site-nav__cta {
    display: inline-flex;
    height: 40px;
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  body .container {
    width: min(calc(100% - 32px), var(--site-container));
  }

  body .hero,
  body .page-hero {
    padding-top: 96px;
    padding-bottom: 72px;
  }

  body .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  body .hero-title,
  body .hero-content h1,
  body .display-title,
  body .legal-page h1,
  body .placeholder-box h1 {
    font-size: 32px;
    line-height: 1.22;
    width: min(100%, 300px) !important;
    max-width: 300px !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  body .section-title,
  body .section h2,
  body .cta-title {
    font-size: 30px;
    line-height: 1.3;
  }

  body .hero-subtitle,
  body .hero-description,
  body .hero-copy,
  body .lead,
  body .section-subtitle,
  body .legal-page__lead {
    font-size: 16px;
  }

  body .hero-content,
  body .hero-subtitle,
  body .hero-description,
  body .hero-copy {
    width: min(100%, calc(100vw - 40px)) !important;
    max-width: calc(100vw - 40px) !important;
    white-space: normal !important;
  }

  body #problem .problem-comparison {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  body #problem .problem-arrow {
    width: 32px;
    min-height: 30px;
    justify-self: center;
    transform: rotate(90deg);
  }

  body #solutions .solutions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  body #solutions .solution-card {
    min-height: auto;
    padding: 24px;
  }

  body .hero-ctas,
  body .cta-buttons,
  body .hero-actions,
  body .hero-content > div[style*="display: flex"] {
    width: 100%;
    max-width: calc(100vw - 32px);
    flex-direction: column;
    align-items: stretch;
    gap: 14px !important;
  }

  body .btn,
  body .btn-primary,
  body .btn-secondary {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  body .hero-product-step,
  body .hero-task-card {
    grid-template-columns: 1fr;
  }

  body .hero-product-demo,
  body .console,
  body .product-visual,
  body .live-system {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }

  body .product-visual__bar {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
    align-items: flex-start;
  }

  body .product-visual__title {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  body .product-visual__status {
    max-width: 100%;
    white-space: normal;
  }

  body .product-visual__body {
    padding: 18px;
  }

  body .product-visual__panel {
    padding: 14px;
  }

  body .product-visual__panel-title,
  body .product-visual__row {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  body .product-visual__panel-title {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body .product-visual__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  body .product-visual__row > span,
  body .product-visual__row strong {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  body .product-visual__row strong {
    margin-left: 0;
    text-align: left;
  }

  body .section.problem-section {
    width: min(calc(100% - 32px), var(--site-container));
    margin: 32px auto;
    padding: 48px 20px;
    border-radius: 24px;
  }

  body .section.problem-section .container {
    width: min(calc(100% - 32px), 1180px);
  }

  body .hero-evidence-grid,
  body .console-metrics,
  body .product-visual__asset-grid {
    grid-template-columns: 1fr;
  }

  body .hero-evidence-head,
  body .hero-demo-top {
    align-items: flex-start;
    flex-direction: column;
  }

  body .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  body .contact-container,
  body .info-section,
  body .info-card,
  body .form-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body .ls-title,
  body .ls-title strong {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .contact-drawer {
    display: none;
  }

  body .cta-section {
    padding: 40px 24px;
  }

  body .legal-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  body .legal-section {
    padding: 28px 24px;
  }

  .reveal,
  .motion-item,
  .motion-group,
  .motion-card {
    transform: translateY(20px);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .motion-item,
  .motion-group,
  .motion-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
