/* Praxia public landing. Light-only and intentionally separate from the authenticated Next.js app. */

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/montserrat-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --font-sans:
    "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    sans-serif;
  --bg: #fbfdff;
  --surface: #f3f7fd;
  --surface-strong: #e7f0fb;
  --ink: #10233f;
  --muted: #526681;
  --line: rgb(6 69 159 / 14%);
  --accent: #06459f;
  --accent-strong: #04316f;
  --on-accent: #f8fbff;
  --nav-bg: rgb(251 253 255 / 92%);
  --shadow: 0 24px 70px rgb(16 35 63 / 12%);
  --radius: 20px;
  --radius-lg: 2rem;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.045em;
  text-wrap: balance;
}

section[id],
article[id] {
  scroll-margin-top: 92px;
}

.hero,
.product,
.workflow,
.faq,
.contact,
.footer__inner,
.footer__bottom-inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

.kicker,
.footer__label,
.legal__label {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 420ms var(--ease),
    border-color 420ms var(--ease),
    transform 420ms var(--ease),
    color 420ms var(--ease),
    box-shadow 420ms var(--ease);
}

.button:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  box-shadow: 0 12px 26px rgb(6 69 159 / 18%);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button--sm {
  min-height: 2.65rem;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
}

.button__icon {
  display: inline-grid;
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 0.65rem;
  place-items: center;
  border-radius: 50%;
  background: rgb(248 251 255 / 18%);
  font-size: 1rem;
  transition:
    transform 420ms var(--ease),
    background-color 420ms var(--ease);
}

.button:hover .button__icon {
  background: rgb(248 251 255 / 28%);
  transform: translate(2px, -1px) scale(1.06);
}

.button--light {
  border-color: var(--on-accent);
  background: var(--on-accent);
  color: var(--accent);
}

.button--light:hover {
  border-color: #dbeafe;
  background: #dbeafe;
  color: var(--accent-strong);
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.nav {
  position: fixed;
  inset: 1.25rem auto auto 50%;
  z-index: 40;
  width: min(1180px, calc(100% - 32px));
  border: 1px solid rgb(6 69 159 / 12%);
  border-radius: 999px;
  background: var(--nav-bg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgb(16 35 63 / 10%);
  transform: translateX(-50%);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  min-height: 64px;
  padding-inline: 0.65rem;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 142px;
  height: auto;
}

.nav__links,
.nav__actions {
  display: flex;
  align-items: center;
}

.nav__links {
  gap: 1.7rem;
}

.nav__links a,
.nav__login {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 420ms var(--ease);
}

.nav__links a:hover,
.nav__login:hover {
  color: var(--ink);
}

.nav__menu {
  position: relative;
  display: none;
}

.nav__menu summary {
  padding: 0.45rem 0.2rem;
  color: var(--accent);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  list-style: none;
}

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

.nav__menu summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.nav__menu-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  display: grid;
  gap: 0.8rem;
  min-width: 13rem;
  padding: 1rem;
  border: 1px solid rgb(6 69 159 / 12%);
  border-radius: 16px;
  background: var(--bg);
  box-shadow: 0 18px 50px rgb(16 35 63 / 14%);
}

.nav__menu:not([open]) .nav__menu-panel {
  display: none;
}

.nav__menu-panel a {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.nav__menu-panel a:hover {
  color: var(--accent);
}

.nav__menu-panel .nav__menu-login {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  color: var(--accent);
}

.nav__actions {
  gap: 1rem;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: max(100svh, 860px);
  margin-inline: 0;
  align-items: start;
  overflow: hidden;
  padding: 112px 24px 0;
  background: var(--bg);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--bg);
  content: "";
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 68rem);
  max-width: 68rem;
  margin: clamp(2.8rem, 7vh, 5.25rem) auto 0;
  text-align: center;
}

.hero__eyebrow {
  margin: 0 auto 1rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 58rem;
  margin: 0 auto 1.35rem;
  font-size: clamp(2.8rem, 4.7vw, 4.5rem);
  font-weight: 600;
  line-height: 1.04;
}

.hero__summary {
  max-width: 38rem;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.hero__art {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: min(30%, 300px);
  overflow: hidden;
  pointer-events: none;
}

.hero__illustration {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.proof-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.proof-item {
  display: grid;
  gap: 0.15rem;
  min-height: 116px;
  align-content: center;
  padding: 1.25rem 2rem;
  border-left: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 1px solid var(--line);
}

.proof-item strong {
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.78rem;
}

.product,
.workflow,
.contact {
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.section-intro {
  max-width: 52rem;
  margin-bottom: 3.5rem;
}

.section-intro--wide {
  max-width: 68rem;
}

.section-intro--narrow {
  max-width: 42rem;
}

.section-intro h2,
.control h2,
.contact h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.04;
}

.section-intro p:last-child,
.contact__copy > p:last-child,
.control__copy > p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.evidence {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.evidence .section-intro {
  margin-bottom: 2rem;
}

.evidence .section-intro h3 {
  max-width: 34rem;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.08;
}

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

.evidence-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(6 69 159 / 12%);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 50px rgb(16 35 63 / 6%);
}

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

.evidence-card__media {
  overflow: hidden;
  border-bottom: 1px solid rgb(6 69 159 / 10%);
  background: var(--bg);
}

.evidence-card__media img {
  display: block;
  width: 100%;
  height: auto;
  outline: 1px solid rgb(0 0 0 / 10%);
  outline-offset: -1px;
}

.evidence-card figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem 1.4rem 1.4rem;
}

.evidence-card__number {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.evidence-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.evidence-card figcaption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.step h3 {
  max-width: 22rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
}

.step p {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.workflow {
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) 2rem;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

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

.step__number {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.step h3 {
  margin-bottom: 0.3rem;
}

.step__arrow {
  color: var(--accent);
  font-size: 1.3rem;
  text-align: right;
}

.control {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 6rem);
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 26px 80px rgb(6 69 159 / 18%);
}

.kicker--light,
.control h2,
.control__copy > p:last-child {
  color: var(--on-accent);
}

.control h2 {
  max-width: 38rem;
}

.control__copy > p:last-child {
  max-width: 36rem;
  opacity: 0.8;
}

.control__list {
  display: grid;
  align-content: center;
}

.control__list div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgb(248 251 255 / 28%);
}

.control__list div:last-child {
  border-bottom: 1px solid rgb(248 251 255 / 28%);
}

.control__list span {
  color: rgb(248 251 255 / 82%);
  font-size: 0.72rem;
  font-weight: 700;
}

.control__list strong {
  font-size: 0.9rem;
}

.faq {
  padding-block: clamp(5.5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
  padding: 1rem 0;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.faq summary::after {
  display: grid;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.faq details p {
  max-width: 48rem;
  margin: -0.2rem 3.5rem 1.35rem 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  align-items: end;
  gap: 3rem;
}

.contact__copy {
  max-width: 48rem;
}

.contact__action {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 3rem;
  padding-block: 4rem;
}

.footer__brand img {
  display: block;
  width: 42px;
  margin-bottom: 1rem;
}

.footer__brand p {
  max-width: 18rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer__label {
  margin-bottom: 1rem;
  color: var(--ink);
}

.footer__links {
  display: grid;
  gap: 0.65rem;
}

.footer__links a {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: none;
}

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

.footer__bottom {
  border-top: 1px solid var(--line);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.1rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.legal {
  width: min(780px, calc(100% - 48px));
  margin-inline: auto;
  padding: 150px 0 100px;
}

.legal__back {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--accent);
  font-size: 0.85rem;
  text-underline-offset: 0.2em;
}

.legal__back:hover {
  color: var(--accent-strong);
}

.legal h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: 1.05;
}

.legal__meta {
  margin-bottom: 4rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.legal h2 {
  margin-top: 3rem;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal ul {
  padding-left: 1.25rem;
}

.legal li {
  margin-bottom: 0.6rem;
}

.legal a {
  color: var(--accent);
  text-underline-offset: 0.15em;
}

.legal hr {
  margin: 2.5rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.demo-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding: 150px 0 100px;
}

.demo-intro {
  align-self: start;
  padding-top: 2.5rem;
}

.demo-intro h1,
.demo-confirmation h1 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  line-height: 1.02;
}

.demo-intro > p:not(.kicker),
.demo-confirmation > p:not(.kicker) {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.demo-points {
  display: grid;
  gap: 0.8rem;
  max-width: 32rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.demo-points li {
  padding: 1rem 0 1rem 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.demo-points li::before {
  display: inline-block;
  width: 1.2rem;
  margin-left: -1.2rem;
  color: var(--accent);
  content: "→";
}

.demo-card {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid rgb(6 69 159 / 16%);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.demo-card__heading {
  margin-bottom: 2rem;
}

.demo-card h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.demo-field small,
.demo-noscript {
  color: var(--muted);
  font-size: 0.76rem;
}

.demo-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.demo-field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.demo-field label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.demo-field input,
.demo-field select,
.demo-field textarea {
  width: 100%;
  border: 1px solid rgb(6 69 159 / 18%);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
}

.demo-field input,
.demo-field select {
  min-height: 3rem;
  padding: 0.65rem 0.8rem;
}

.demo-field select {
  appearance: none;
  padding-right: 3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2306459f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
}

.demo-field textarea {
  min-height: 7rem;
  padding: 0.75rem 0.8rem;
  resize: vertical;
}

.demo-field input:focus,
.demo-field select:focus,
.demo-field textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgb(6 69 159 / 18%);
  outline-offset: 1px;
}

.demo-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.demo-turnstile {
  min-height: 1.5rem;
  margin: 0.5rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.demo-turnstile p {
  margin: 0;
}

.demo-privacy {
  max-width: 38rem;
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.7;
}

.demo-privacy a {
  color: var(--accent);
  text-underline-offset: 0.15em;
}

.demo-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  margin: 0 0 1.4rem;
}

.demo-consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.2rem 0 0;
  accent-color: var(--accent);
}

.demo-consent input:focus-visible {
  outline: 3px solid rgb(6 69 159 / 18%);
  outline-offset: 3px;
}

.demo-consent label {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.demo-consent a {
  color: var(--accent);
  text-underline-offset: 0.15em;
}

.demo-confirmation {
  width: min(760px, calc(100% - 48px));
  min-height: 58vh;
  margin-inline: auto;
  padding: 180px 0 100px;
}

.demo-confirmation__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  will-change: transform, opacity;
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.hero__content [data-reveal]:nth-child(2) {
  transition-delay: 70ms;
}
.hero__content [data-reveal]:nth-child(3) {
  transition-delay: 140ms;
}
.hero__content [data-reveal]:nth-child(4) {
  transition-delay: 210ms;
}
.hero__content [data-reveal]:nth-child(5) {
  transition-delay: 280ms;
}

@media (max-width: 940px) {
  .nav__links {
    gap: 1rem;
  }

  .nav__actions {
    gap: 0.7rem;
  }

  .control,
  .contact,
  .demo-page {
    grid-template-columns: 1fr;
  }

  .demo-intro {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .nav__links,
  .nav__login {
    display: none;
  }

  .nav__menu {
    display: block;
  }

  .nav__inner {
    gap: 0.7rem;
    min-height: 68px;
  }

  .brand img {
    width: 124px;
  }

  .nav__actions .button {
    min-height: 2.5rem;
    padding-inline: 0.8rem;
    font-size: 0.72rem;
  }

  .product,
  .workflow,
  .faq,
  .contact,
  .demo-page,
  .demo-confirmation,
  .footer__inner,
  .footer__bottom-inner,
  .control {
    width: min(100% - 32px, 560px);
  }

  .hero {
    width: 100%;
  }

  .hero {
    min-height: 0;
    padding-top: 7.5rem;
    padding-bottom: 0;
  }

  .hero__content {
    margin: 1rem auto 0;
  }

  .hero__art {
    position: relative;
    right: auto;
    bottom: auto;
    left: -4%;
    width: 108%;
    height: 238px;
    margin-top: 1.5rem;
  }

  .hero h1 {
    max-width: 18ch;
    font-size: clamp(2.3rem, 9.4vw, 3.4rem);
  }

  .hero__summary {
    font-size: 0.98rem;
  }

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

  .hero__actions .button {
    min-width: 13.5rem;
  }

  .proof-strip__inner,
  .evidence-grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .evidence-card--wide {
    grid-column: auto;
  }

  .proof-strip__inner {
    width: min(100% - 32px, 560px);
  }

  .proof-item,
  .proof-item:last-child {
    min-height: 86px;
    padding: 1rem 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .product,
  .workflow,
  .faq,
  .contact {
    padding-block: 5rem;
  }

  .section-intro h2,
  .control h2,
  .contact h2 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .step {
    grid-template-columns: 3rem minmax(0, 1fr);
    align-items: start;
    gap: 0.7rem;
  }

  .step__arrow {
    display: none;
  }

  .control {
    gap: 3rem;
    padding: 3rem 1.5rem;
  }

  .footer__inner {
    gap: 2.5rem;
    padding-block: 3rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
  }

  .legal {
    width: min(100% - 32px, 560px);
    padding-top: 120px;
  }

  .demo-page {
    padding-top: 130px;
  }

  .demo-confirmation {
    width: min(100% - 32px, 560px);
    padding-top: 140px;
  }

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

@media (max-width: 360px) {
  .nav {
    width: calc(100% - 24px);
  }

  .nav__inner {
    gap: 0.45rem;
    padding-inline: 0.4rem;
  }

  .brand img {
    width: 104px;
  }

  .nav__actions {
    gap: 0.4rem;
  }

  .nav__actions .button {
    min-height: 2.35rem;
    padding-inline: 0.55rem;
    font-size: 0.65rem;
  }

  .nav__actions .button__icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 0.35rem;
    font-size: 0.85rem;
  }
}

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .nav {
    background: var(--bg);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
