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

:root {
  color: var(--landing-color-text-primary);
  background: var(--landing-color-surface-paper);
  font-family: var(--landing-font-family-base);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--landing-color-surface-paper);
  color: var(--landing-color-text-primary);
  line-height: var(--landing-line-height-body);
}

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

figure,
h1,
h2,
h3,
p,
ol,
ul {
  margin-block-start: 0;
}

figure {
  margin-inline: 0;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.landing-container {
  width: min(
    calc(100% - var(--landing-container-gutter) - var(--landing-container-gutter)),
    var(--landing-container-max)
  );
  margin-inline: auto;
}

.landing-section[id] {
  scroll-margin-block-start: var(--landing-header-height);
}

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

.skip-link {
  position: fixed;
  z-index: var(--landing-z-index-skip-link);
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--landing-radius-control);
  background: var(--landing-color-surface-ink);
  color: var(--landing-color-text-on-ink);
  font-size: var(--landing-font-size-small);
  font-weight: var(--landing-font-weight-semibold);
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform var(--landing-motion-duration-hover) var(--landing-motion-ease-editorial);
}

.skip-link:focus {
  transform: translateY(0);
}

.landing-button:focus-visible,
.landing-link:focus-visible,
.landing-header__menu-toggle:focus-visible,
.landing-input:focus-visible,
.landing-textarea:focus-visible,
.landing-form-control:focus-visible {
  outline: var(--landing-focus-width) solid var(--landing-color-focus);
  outline-offset: var(--landing-focus-offset);
}

.landing-button {
  display: inline-flex;
  min-block-size: var(--landing-hit-target-min);
  min-inline-size: var(--landing-hit-target-min);
  align-items: center;
  justify-content: center;
  gap: var(--landing-space-2);
  padding: var(--landing-control-padding-block) var(--landing-control-padding-inline);
  border: var(--landing-border-width) solid transparent;
  border-radius: var(--landing-radius-control);
  font-size: var(--landing-font-size-control);
  font-weight: var(--landing-font-weight-semibold);
  line-height: var(--landing-line-height-control);
  text-decoration: none;
  transition:
    background-color var(--landing-motion-duration-hover) var(--landing-motion-ease-editorial),
    border-color var(--landing-motion-duration-hover) var(--landing-motion-ease-editorial),
    color var(--landing-motion-duration-hover) var(--landing-motion-ease-editorial),
    transform var(--landing-motion-duration-hover) var(--landing-motion-ease-editorial);
}

.landing-button:hover:not(:disabled):not([aria-disabled="true"]) {
  transform: translateY(var(--landing-motion-hover-translate-y));
}

.landing-button:active:not(:disabled):not([aria-disabled="true"]) {
  transform: translateY(0);
  transition-duration: var(--landing-motion-duration-press);
}

.landing-button:disabled,
.landing-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: var(--landing-state-disabled-opacity);
}

.landing-button--primary {
  background: var(--landing-color-action-primary);
  color: var(--landing-color-text-on-ink);
}

.landing-button--primary:hover:not(:disabled):not([aria-disabled="true"]) {
  background: var(--landing-color-action-primary-hover);
}

.landing-button--primary:active:not(:disabled):not([aria-disabled="true"]) {
  background: var(--landing-color-action-primary-active);
}

.landing-link {
  color: var(--landing-color-text-primary);
  font-size: var(--landing-font-size-control);
  font-weight: var(--landing-font-weight-medium);
  line-height: var(--landing-line-height-control);
  text-decoration: underline;
  text-decoration-thickness: var(--landing-link-underline-thickness);
  text-underline-offset: var(--landing-link-underline-offset);
  transition: color var(--landing-motion-duration-hover) var(--landing-motion-ease-editorial);
}

.landing-link:hover {
  color: var(--landing-color-n800);
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--landing-space-4);
  color: var(--landing-color-success);
  font-size: var(--landing-font-size-label);
  font-weight: var(--landing-font-weight-semibold);
  letter-spacing: 0.15em;
  line-height: var(--landing-line-height-label);
  text-transform: uppercase;
}

.landing-eyebrow::before {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-intro {
  max-width: 720px;
}

.section-intro h2,
.final-cta h2,
.demo-page h1 {
  color: var(--landing-color-text-primary);
  font-weight: var(--landing-font-weight-semibold);
  letter-spacing: var(--landing-letter-spacing-h2);
  text-wrap: balance;
}

.landing-hero h1 {
  color: var(--landing-color-text-primary);
  font-weight: var(--landing-font-weight-semibold);
  letter-spacing: var(--landing-letter-spacing-h1);
  text-wrap: balance;
}

.section-intro h2,
.final-cta h2 {
  margin: 0 0 var(--landing-space-4);
  font-size: var(--landing-font-size-h2);
  line-height: var(--landing-line-height-h2);
}

.section-intro > p:last-child {
  max-width: 660px;
  margin: 0;
  color: var(--landing-color-text-secondary);
  font-size: var(--landing-font-size-lead);
  line-height: var(--landing-line-height-lead);
}

/* Header */

.landing-header {
  position: sticky;
  z-index: var(--landing-z-index-header);
  inset-block-start: 0;
  border-block-end: var(--landing-border-width) solid rgb(16 38 61 / 8%);
  background: rgb(255 255 255 / 88%);
  color: var(--landing-color-text-primary);
  backdrop-filter: blur(18px);
}

.landing-header__inner {
  position: relative;
  display: flex;
  min-block-size: 76px;
  align-items: center;
  gap: var(--landing-space-4);
}

.landing-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
  min-block-size: var(--landing-hit-target-min);
  align-items: center;
  text-decoration: none;
}

.landing-header__logo {
  width: var(--landing-header-logo-width);
  height: auto;
}

.landing-header__logo--compact {
  display: none;
  width: 40px;
}

.landing-header__nav {
  display: flex;
  align-items: center;
  gap: var(--landing-space-3);
  margin-inline-start: auto;
}

.landing-header__link {
  display: inline-flex;
  min-block-size: var(--landing-hit-target-min);
  align-items: center;
  padding-inline: 12px;
  color: var(--landing-color-text-secondary);
  font-size: var(--landing-font-size-control);
  font-weight: var(--landing-font-weight-medium);
  line-height: var(--landing-line-height-control);
  text-decoration: none;
  transition: color var(--landing-motion-duration-hover) var(--landing-motion-ease-editorial);
}

.landing-header__link:hover {
  color: var(--landing-color-text-primary);
}

.landing-header__cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.landing-header__menu {
  display: none;
  margin-inline-start: auto;
}

.landing-header__menu-toggle {
  display: inline-flex;
  min-block-size: var(--landing-hit-target-min);
  align-items: center;
  gap: var(--landing-space-2);
  padding: 0 var(--landing-space-2);
  color: var(--landing-color-text-primary);
  cursor: pointer;
  font-size: var(--landing-font-size-control);
  font-weight: var(--landing-font-weight-semibold);
  list-style: none;
}

.landing-header__menu-toggle::-webkit-details-marker {
  display: none;
}

.landing-header__menu-icon {
  display: grid;
  width: 18px;
  gap: 5px;
}

.landing-header__menu-icon i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform var(--landing-motion-duration-hover) var(--landing-motion-ease-editorial);
}

.landing-header__menu[open] .landing-header__menu-icon i:first-child {
  transform: translateY(3px) rotate(45deg);
}

.landing-header__menu[open] .landing-header__menu-icon i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.landing-header__menu-panel {
  position: absolute;
  inset-block-start: calc(100% + 1px);
  inset-inline: 0;
  display: grid;
  gap: var(--landing-space-2);
  padding: var(--landing-space-3) var(--landing-space-4) var(--landing-space-4);
  border-block-end: var(--landing-border-width) solid var(--landing-color-border-subtle);
  background: rgb(255 255 255 / 98%);
  box-shadow: 0 18px 32px rgb(16 38 61 / 8%);
}

.landing-header__menu-panel .landing-header__link,
.landing-header__menu-panel .landing-button {
  width: 100%;
  justify-content: flex-start;
}

.landing-header__menu-panel .landing-button {
  justify-content: center;
  margin-block-start: var(--landing-space-2);
}

/* Hero */

.landing-hero {
  overflow: hidden;
  padding-block: clamp(72px, 7vw, 104px) clamp(80px, 8vw, 112px);
  background: var(--landing-color-surface-canvas);
}

.landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(48px, 5vw, 72px);
}

.landing-hero__copy {
  max-width: 560px;
}

.landing-hero h1 {
  max-width: none;
  margin: 0 0 var(--landing-space-5);
  font-size: var(--landing-font-size-h1);
  line-height: var(--landing-line-height-h1);
}

.landing-hero__lead {
  max-width: 520px;
  margin: 0 0 var(--landing-space-6);
  color: var(--landing-color-text-secondary);
  font-size: var(--landing-font-size-lead);
  line-height: var(--landing-line-height-lead);
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--landing-space-4);
}

.landing-hero__media {
  width: min(100%, 860px);
  margin: 0 0 0 auto;
}

.landing-hero__visual {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: var(--landing-border-width) solid var(--landing-color-border-subtle);
  border-radius: var(--landing-radius-screenshot);
  background: var(--landing-color-surface-paper);
  box-shadow: var(--landing-shadow-2);
}

.landing-hero__visual picture,
.landing-visual-frame picture {
  display: block;
}

.landing-hero__visual picture {
  height: 100%;
}

.landing-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.landing-visual-frame {
  overflow: hidden;
  border: var(--landing-border-width) solid var(--landing-color-border-subtle);
  border-radius: var(--landing-radius-screenshot);
  background: var(--landing-color-surface-paper);
  box-shadow: var(--landing-shadow-1);
}

.landing-visual-frame img {
  width: 100%;
  height: auto;
}

.landing-visual-note {
  margin: 12px 4px 0;
  padding: 0;
  color: var(--landing-color-text-muted);
  font-size: var(--landing-font-size-label);
  line-height: var(--landing-line-height-label);
}

/* Transformation */

.transformation {
  padding-block: clamp(88px, 8vw, 120px);
  background: var(--landing-color-surface-ink);
  color: var(--landing-color-text-on-ink);
}

.transformation__intro {
  display: block;
  max-width: 840px;
  margin-inline: 0;
}

.transformation__intro h2 {
  max-width: 700px;
  margin-block-end: 0;
  color: var(--landing-color-text-on-ink);
}

.transformation__intro > p:last-child {
  max-width: 680px;
  margin-block: clamp(24px, 2.5vw, 32px) 0;
  color: var(--landing-color-ink-soft);
}

.transformation__flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  max-width: none;
  margin: clamp(64px, 7vw, 88px) 0 0;
  padding: 0;
  list-style: none;
}

.transformation__stage {
  min-width: 0;
  padding: 28px 24px 0 0;
  border-block-start: var(--landing-border-width) solid rgb(255 255 255 / 30%);
}

.transformation__stage:last-child {
  padding-inline-end: 0;
}

.transformation__stage--result {
  border-block-start-color: var(--landing-color-sage-light);
}

.transformation__stage-number {
  display: block;
  margin-block-end: 28px;
  color: var(--landing-color-sage-light);
  font-size: var(--landing-font-size-label);
  font-weight: var(--landing-font-weight-semibold);
  letter-spacing: 0.1em;
}

.transformation__stage h3 {
  margin: 0 0 var(--landing-space-2);
  color: var(--landing-color-text-on-ink);
  font-size: var(--landing-font-size-control);
  font-weight: var(--landing-font-weight-semibold);
  letter-spacing: 0.14em;
  line-height: var(--landing-line-height-control);
}

.transformation__stage p {
  margin: 0;
  color: var(--landing-color-ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.45;
}

.transformation__stage--result p {
  color: var(--landing-color-text-on-ink);
  font-weight: var(--landing-font-weight-medium);
}

.transformation__arrow {
  align-self: start;
  padding: 26px 18px 0;
  color: var(--landing-color-sage-light);
  font-size: 1.75rem;
  font-weight: var(--landing-font-weight-regular);
  line-height: 1;
  text-align: center;
}

/* Product */

.product {
  padding-block: clamp(96px, 9vw, 136px);
  background: var(--landing-color-surface-paper);
}

.product__intro {
  max-width: 780px;
  margin-inline-start: clamp(0px, 4vw, 64px);
}

.product__scenes {
  display: grid;
  gap: clamp(80px, 7vw, 112px);
  margin-block-start: clamp(64px, 7vw, 104px);
}

.product-scene {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(48px, 6vw, 88px);
}

.product-scene--primary .product-scene__media {
  width: min(100%, 860px);
  min-width: 0;
}

.product-scene__copy {
  max-width: 380px;
  padding-block-start: 4px;
}

.product-scene__index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-end: var(--landing-space-5);
  color: var(--landing-color-sage);
  font-size: var(--landing-font-size-label);
  font-weight: var(--landing-font-weight-semibold);
  letter-spacing: 0.12em;
}

.product-scene__index::after {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--landing-color-border-default);
  content: "";
}

.product-scene__copy h3 {
  margin: 0 0 var(--landing-space-3);
  color: var(--landing-color-text-primary);
  font-size: var(--landing-font-size-h3);
  font-weight: var(--landing-font-weight-semibold);
  letter-spacing: var(--landing-letter-spacing-h2);
  line-height: var(--landing-line-height-h3);
}

.product-scene__copy p {
  margin: 0;
  color: var(--landing-color-text-secondary);
  font-size: var(--landing-font-size-body);
  line-height: var(--landing-line-height-body);
}

.product-scene__media {
  margin: 0;
}

.product-scene--catalog .product-scene__copy {
  grid-column: 2;
  grid-row: 1;
}

.product-scene--catalog .product-scene__media {
  grid-column: 1;
  grid-row: 1;
}

.product-scene--catalog {
  grid-template-columns: minmax(0, 1.38fr) minmax(300px, 0.62fr);
}

.product-scene__media--catalog {
  width: 100%;
}

.product-scene__media--devices {
  width: min(100%, 390px);
  margin-inline: auto;
}

.product__capabilities {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 12px 0;
  max-width: none;
  margin: clamp(72px, 8vw, 112px) 0 0;
  padding-block: 16px;
  padding-inline: 0;
  border-block: var(--landing-border-width) solid var(--landing-color-border-default);
  list-style: none;
}

.product__capabilities li {
  flex: 0 1 auto;
  color: var(--landing-color-text-muted);
  font-size: var(--landing-font-size-small);
  line-height: 1.45;
}

.product__capabilities li + li::before {
  margin-inline: clamp(12px, 1.8vw, 28px);
  color: var(--landing-color-sage);
  content: "·";
  font-weight: var(--landing-font-weight-semibold);
}

/* Process */

.process {
  padding-block: clamp(96px, 9vw, 128px);
  background: var(--landing-color-surface-canvas);
}

.process__intro {
  max-width: 700px;
}

.process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--landing-space-4);
  margin: clamp(72px, 9vw, 112px) 0 0;
  padding: 0;
  border-block-start: var(--landing-border-width) solid var(--landing-color-sage);
  list-style: none;
}

.process__step {
  position: relative;
  min-width: 0;
  padding: 28px 16px 0 0;
}

.process__step::before {
  position: absolute;
  inset-block-start: -5px;
  inset-inline-start: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--landing-color-sage);
  content: "";
}

.process__step-number {
  display: block;
  margin-block-end: 28px;
  color: var(--landing-color-success);
  font-size: var(--landing-font-size-label);
  font-weight: var(--landing-font-weight-semibold);
  letter-spacing: 0.12em;
}

.process__step h3 {
  max-width: 230px;
  margin: 0 0 var(--landing-space-3);
  color: var(--landing-color-text-primary);
  font-size: 1.15rem;
  font-weight: var(--landing-font-weight-semibold);
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.process__step p {
  max-width: 270px;
  margin: 0;
  color: var(--landing-color-text-secondary);
  font-size: var(--landing-font-size-body);
  line-height: 1.55;
}

.process__closing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--landing-space-5);
  margin-block-start: clamp(72px, 9vw, 112px);
  padding-block: var(--landing-space-5);
  border-block: var(--landing-border-width) solid var(--landing-color-border-default);
}

.process__closing p {
  max-width: 260px;
  margin: 0;
  color: var(--landing-color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: var(--landing-font-weight-medium);
  line-height: 1.35;
}

.process__formats {
  margin: var(--landing-space-4) 0 0;
  color: var(--landing-color-text-muted);
  font-size: var(--landing-font-size-small);
  letter-spacing: 0.04em;
}

/* Confidence */

.confidence {
  padding-block: clamp(80px, 8vw, 112px);
  background: var(--landing-color-surface-paper);
}

.confidence__intro {
  max-width: 680px;
}

.confidence__ideas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--landing-space-5);
  margin-block-start: clamp(48px, 6vw, 72px);
}

.confidence__idea {
  padding-block-start: var(--landing-space-4);
  border-block-start: var(--landing-border-width) solid var(--landing-color-border-default);
}

.confidence__idea h3 {
  max-width: 300px;
  margin: 0 0 var(--landing-space-3);
  color: var(--landing-color-text-primary);
  font-size: 1.2rem;
  font-weight: var(--landing-font-weight-semibold);
  letter-spacing: -0.015em;
  line-height: 1.4;
}

.confidence__idea p {
  max-width: 320px;
  margin: 0;
  color: var(--landing-color-text-secondary);
  font-size: var(--landing-font-size-body);
  line-height: var(--landing-line-height-body);
}

/* Final CTA and footer */

.final-cta {
  padding-block: clamp(96px, 9vw, 128px);
  background: var(--landing-color-surface-ink);
  color: var(--landing-color-text-on-ink);
}

.final-cta__content {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.final-cta h2 {
  color: var(--landing-color-text-on-ink);
}

.final-cta__content > p:not(.final-cta__microcopy) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--landing-color-n300);
  font-size: var(--landing-font-size-lead);
  line-height: var(--landing-line-height-lead);
}

.final-cta__button {
  margin-block-start: var(--landing-space-6);
  background: var(--landing-color-surface-paper);
  color: var(--landing-color-text-primary);
}

.final-cta__button:hover:not(:disabled):not([aria-disabled="true"]) {
  background: var(--landing-color-canvas);
  color: var(--landing-color-text-primary);
}

.final-cta__microcopy {
  margin: var(--landing-space-4) 0 0;
  color: var(--landing-color-n400);
  font-size: var(--landing-font-size-small);
  line-height: var(--landing-line-height-small);
}

.site-footer {
  border-block-start: var(--landing-border-width) solid var(--landing-color-border-subtle);
  background: var(--landing-color-surface-paper);
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--landing-space-6);
  padding-block: 56px 48px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--landing-space-2);
}

.site-footer__logo {
  display: inline-flex;
  min-block-size: var(--landing-hit-target-min);
  align-items: center;
}

.site-footer__logo img {
  width: var(--landing-header-logo-width);
  height: auto;
}

.site-footer__brand p {
  max-width: 340px;
  margin: 0;
  color: var(--landing-color-text-muted);
  font-size: var(--landing-font-size-small);
  line-height: var(--landing-line-height-small);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--landing-space-3) var(--landing-space-4);
}

.site-footer__nav a {
  display: inline-flex;
  min-block-size: var(--landing-hit-target-min);
  align-items: center;
  color: var(--landing-color-text-secondary);
  font-size: var(--landing-font-size-control);
  font-weight: var(--landing-font-weight-medium);
  line-height: var(--landing-line-height-control);
  text-decoration: none;
  transition: color var(--landing-motion-duration-hover) var(--landing-motion-ease-editorial);
}

.site-footer__nav a:hover {
  color: var(--landing-color-text-primary);
}

/* Demo page and form */

.demo-page {
  padding-block: clamp(96px, 10vw, 144px);
  background: var(--landing-color-surface-canvas);
}

.demo-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(48px, 10vw, 144px);
  max-width: 1120px;
}

.demo-page__context {
  max-width: 520px;
  padding-block-start: var(--landing-space-3);
}

.demo-page h1 {
  margin: 0 0 var(--landing-space-4);
  font-size: clamp(2.75rem, 4.8vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: var(--landing-letter-spacing-h1);
}

.demo-page__support {
  margin: 0;
  color: var(--landing-color-text-secondary);
  font-size: var(--landing-font-size-lead);
  line-height: var(--landing-line-height-lead);
}

.demo-page__microcopy {
  max-width: 420px;
  margin: var(--landing-space-5) 0 0;
  color: var(--landing-color-text-muted);
  font-size: var(--landing-font-size-small);
  line-height: var(--landing-line-height-small);
}

.demo-form-panel {
  padding: clamp(28px, 4vw, 44px);
  border: var(--landing-border-width) solid var(--landing-color-border-default);
  border-radius: var(--landing-radius-surface);
  background: var(--landing-color-surface-paper);
  box-shadow: var(--landing-shadow-1);
}

.demo-form-panel h2 {
  margin: 0 0 var(--landing-space-2);
  color: var(--landing-color-text-primary);
  font-size: 2rem;
  font-weight: var(--landing-font-weight-semibold);
  letter-spacing: var(--landing-letter-spacing-h2);
  line-height: var(--landing-line-height-h2);
}

.demo-form__helper {
  margin: 0 0 var(--landing-space-5);
  color: var(--landing-color-text-muted);
  font-size: var(--landing-font-size-small);
  line-height: var(--landing-line-height-small);
}

.demo-form {
  display: grid;
  gap: var(--landing-space-5);
}

.demo-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--landing-space-4);
  gap: var(--landing-space-4);
}

.demo-form__fields .landing-field:nth-child(n + 3) {
  grid-column: 1 / -1;
}

.landing-field {
  display: grid;
  gap: var(--landing-space-2);
}

.landing-field__label {
  color: var(--landing-color-text-primary);
  font-size: var(--landing-font-size-control);
  font-weight: var(--landing-font-weight-medium);
  line-height: var(--landing-line-height-control);
}

.demo-form__label-note {
  color: var(--landing-color-text-muted);
  font-weight: var(--landing-font-weight-regular);
}

.landing-input,
.landing-textarea {
  display: block;
  width: 100%;
  min-block-size: var(--landing-control-height);
  padding: var(--landing-control-padding-block) var(--landing-control-padding-inline);
  border: var(--landing-border-width) solid var(--landing-color-border-default);
  border-radius: var(--landing-radius-control);
  background: var(--landing-color-surface-paper);
  color: var(--landing-color-text-primary);
  line-height: var(--landing-line-height-control);
  transition:
    border-color var(--landing-motion-duration-hover) var(--landing-motion-ease-editorial),
    box-shadow var(--landing-motion-duration-hover) var(--landing-motion-ease-editorial);
}

.landing-textarea {
  min-block-size: var(--landing-control-textarea-min-height);
  resize: vertical;
}

.landing-input::placeholder,
.landing-textarea::placeholder {
  color: var(--landing-color-text-muted);
  opacity: 1;
}

.landing-input:hover:not(:disabled),
.landing-textarea:hover:not(:disabled) {
  border-color: var(--landing-color-border-strong);
}

.landing-input:focus-visible,
.landing-textarea:focus-visible {
  border-color: var(--landing-color-focus);
  box-shadow: 0 0 0 var(--landing-focus-inner-width) var(--landing-color-focus);
}

.landing-input:disabled,
.landing-textarea:disabled {
  cursor: not-allowed;
  background: var(--landing-color-canvas);
  color: var(--landing-color-text-muted);
}

.landing-input[aria-invalid="true"],
.landing-textarea[aria-invalid="true"] {
  border-color: var(--landing-color-error);
}

.landing-field__message {
  margin: 0;
  color: var(--landing-color-text-muted);
  font-size: var(--landing-font-size-small);
  line-height: var(--landing-line-height-small);
}

.landing-field__message--error {
  color: var(--landing-color-error);
}

.landing-status {
  margin: 0;
  padding: var(--landing-space-3);
  border: var(--landing-border-width) solid var(--landing-color-border-subtle);
  border-radius: 12px;
  color: var(--landing-color-text-primary);
  font-size: var(--landing-font-size-small);
  line-height: var(--landing-line-height-small);
}

.landing-status--success {
  border-color: var(--landing-color-success);
  color: var(--landing-color-success);
}

.landing-status--info {
  border-color: var(--landing-color-information);
  color: var(--landing-color-information);
}

.landing-status--error {
  border-color: var(--landing-color-error);
  color: var(--landing-color-error);
}

.demo-form__actions {
  display: flex;
  align-items: center;
}

.demo-form__actions .landing-button {
  min-block-size: 48px;
}

.demo-form__submit-label {
  display: inline-block;
}

.demo-form__spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: demo-form-spinner 700ms linear infinite;
}

.demo-form__success {
  display: grid;
  gap: var(--landing-space-3);
  margin: 0;
}

.demo-form__success h3,
.demo-form__success p {
  margin: 0;
}

.demo-form__success h3 {
  color: var(--landing-color-text-primary);
  font-size: 1.5rem;
  line-height: 2rem;
}

.demo-form__success .landing-link {
  display: inline-flex;
  width: fit-content;
  min-block-size: var(--landing-hit-target-min);
  align-items: center;
}

.demo-form__honeypot {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@keyframes demo-form-spinner {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive layout */

@media (max-width: 1100px) {
  .landing-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--landing-space-7);
  }

  .landing-hero__copy,
  .landing-hero__media {
    width: 100%;
    max-width: 860px;
  }

  .landing-hero__media {
    margin-inline: auto;
  }

  .product-scene {
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
    gap: var(--landing-space-6);
  }

  .product-scene--catalog {
    grid-template-columns: minmax(0, 1.38fr) minmax(260px, 0.62fr);
  }

  .demo-page__layout {
    display: block;
    max-width: 720px;
  }

  .demo-page__context {
    margin-block-end: var(--landing-space-7);
  }
}

@media (max-width: 900px) {
  .product-scene,
  .product-scene--catalog {
    grid-template-columns: 1fr;
    gap: var(--landing-space-5);
  }

  .product-scene--catalog .product-scene__copy,
  .product-scene--catalog .product-scene__media {
    grid-column: auto;
    grid-row: auto;
  }

  .process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: var(--landing-space-6);
  }

  .confidence__ideas {
    grid-template-columns: 1fr;
    gap: var(--landing-space-5);
  }

  .confidence__idea h3,
  .confidence__idea p {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .landing-header__inner {
    min-block-size: var(--landing-header-height-mobile);
    gap: var(--landing-space-2);
  }

  .landing-header__logo--wide {
    display: none;
  }

  .landing-header__logo--compact {
    display: block;
  }

  .landing-header__nav {
    display: none;
  }

  .landing-header__cta--desktop {
    display: none;
  }

  .landing-header__menu {
    display: block;
  }

  .product__capabilities {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }

  .product__capabilities li {
    width: 100%;
    text-align: center;
  }

  .product__capabilities li + li::before {
    display: none;
  }

  .landing-section[id] {
    scroll-margin-block-start: var(--landing-header-height-mobile);
  }

  .product-scene__copy {
    max-width: 620px;
  }

  .product__intro {
    margin-inline-start: 0;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: var(--landing-space-5);
  }

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

@media (max-width: 599px) {
  .landing-container {
    width: min(
      calc(100% - var(--landing-container-gutter) - var(--landing-container-gutter)),
      var(--landing-container-max)
    );
  }

  .landing-hero {
    padding-block: 72px 80px;
  }

  .transformation {
    padding-block: 88px 96px;
  }

  .product {
    padding-block: 80px 88px;
  }

  .product__scenes {
    gap: 88px;
    margin-block-start: 64px;
  }

  .process {
    padding-block: 88px 96px;
  }

  .confidence {
    padding-block: 80px 88px;
  }

  .final-cta {
    padding-block: 88px 96px;
  }

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

  .landing-hero__actions .landing-button--primary {
    width: 100%;
  }

  .landing-hero__visual {
    aspect-ratio: 4 / 3;
  }

  .landing-hero__visual img {
    object-position: left center;
  }

  .demo-page {
    padding-block: 72px 88px;
  }

  .demo-page__context {
    padding-block-start: 0;
  }

  .demo-form-panel {
    padding: var(--landing-space-4);
    border-radius: 18px;
  }

  .demo-form__fields {
    grid-template-columns: 1fr;
  }

  .demo-form__fields .landing-field:nth-child(n + 3) {
    grid-column: auto;
  }

  .transformation__intro {
    display: block;
  }

  .transformation__intro > p:last-child {
    margin-block-start: var(--landing-space-4);
  }

  .transformation__flow {
    display: block;
    margin-block-start: var(--landing-space-7);
  }

  .transformation__stage {
    padding: var(--landing-space-4) 0;
  }

  .transformation__stage-number {
    margin-block-end: var(--landing-space-3);
  }

  .transformation__stage p {
    font-size: 1.0625rem;
  }

  .transformation__arrow {
    display: none;
  }

  .process__steps,
  .process__closing {
    grid-template-columns: 1fr;
  }

  .process__steps {
    gap: 0;
    margin-block-start: var(--landing-space-7);
    padding-block-start: var(--landing-space-4);
    border-block-start: 0;
  }

  .process__steps::before {
    display: none;
  }

  .process__step {
    position: relative;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: var(--landing-space-3);
    padding-block: var(--landing-space-4);
    border-block-start: var(--landing-border-width) solid var(--landing-color-border-default);
  }

  .process__step::before {
    display: none;
  }

  .process__step-number {
    grid-row: span 2;
    margin: 0;
    padding-block-start: 3px;
    text-align: center;
  }

  .process__step h3,
  .process__step p {
    max-width: none;
  }

  .process__step h3 {
    margin-block-end: var(--landing-space-2);
  }

  .process__closing p + p {
    padding-block-start: var(--landing-space-3);
    border-block-start: var(--landing-border-width) solid var(--landing-color-border-subtle);
  }

  .process__closing {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--landing-space-2);
    padding-block: var(--landing-space-4);
  }

  .process__closing p {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .process__closing p + p {
    padding-block-start: 0;
    border-block-start: 0;
  }

  .site-footer__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .demo-page__context {
    margin-block-end: var(--landing-space-6);
  }

  .demo-form__actions .landing-button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .landing-header__menu-toggle {
    padding-inline: 0;
  }
}

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

  .demo-form__spinner {
    animation: none;
  }

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