:root {
  color-scheme: light;
  --bg: #9aa7cf;
  --paper: #fbfbff;
  --ink: #ffffff;
  --card-ink: #121726;
  --forest: #eaf2ff;
  --muted: #657086;
  --line: rgba(255, 255, 255, 0.46);
  --soft: rgba(255, 255, 255, 0.34);
  --attention: #f3dfc5;
  --risk: #efd2d8;
  --white: rgba(255, 255, 255, 0.36);
  --shadow: 0 26px 90px rgba(40, 48, 82, 0.24);
  --glass-border: rgba(255, 255, 255, 0.44);
  --glass-fill: rgba(255, 255, 255, 0.22);
  --glass-fill-strong: rgba(255, 255, 255, 0.54);
  --text-shadow: 0 2px 16px rgba(22, 27, 60, 0.22);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(ellipse 74% 62% at 50% 92%, rgba(255, 180, 116, 0.7), rgba(219, 118, 132, 0.38) 46%, transparent 78%),
    radial-gradient(ellipse 62% 70% at 8% 14%, rgba(151, 77, 214, 0.88), transparent 70%),
    radial-gradient(ellipse 62% 62% at 96% 0%, rgba(67, 195, 225, 0.76), transparent 72%),
    radial-gradient(ellipse 72% 66% at 48% 28%, rgba(72, 119, 224, 0.86), transparent 76%),
    linear-gradient(132deg, #7b5cc8 0%, #4171d0 34%, #56b7d2 64%, #e3a06f 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(28, 32, 62, 0.16)),
    repeating-radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.08) 0 0.48px, transparent 0.74px 5px);
  opacity: 0.7;
}

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

button,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(28px) saturate(1.08);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.16);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  font-size: 18px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.nav-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.language-toggle:hover,
.language-toggle[aria-expanded="true"] {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.28);
}

.language-toggle:hover {
  transform: translateY(-1px);
}

.language-toggle:focus-visible,
.language-option:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.94);
  outline-offset: 3px;
}

.language-toggle-icon {
  width: 20px;
  height: 20px;
}

.language-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 30;
  width: min(340px, calc(100vw - 24px));
  max-height: min(560px, calc(100vh - 96px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 12px;
  padding: 12px;
  color: var(--card-ink);
  background: rgba(246, 247, 252, 0.82);
  box-shadow: 0 28px 80px rgba(18, 23, 38, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(30px) saturate(1.12);
}

.language-popover.is-open {
  animation: language-popover-enter 180ms ease-out both;
}

.language-popover-title {
  padding: 8px 10px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

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

.language-option {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 8px;
  padding: 0 10px;
  color: #40485a;
  font-size: 13px;
  font-weight: 650;
  transition: color 160ms ease, background-color 160ms ease;
}

.language-option:hover {
  color: var(--card-ink);
  background: rgba(93, 109, 156, 0.1);
}

.language-option[aria-current="page"] {
  color: var(--card-ink);
  background: rgba(93, 109, 156, 0.14);
}

.language-check {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  font-weight: 680;
  font-size: 14px;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.94);
  outline-offset: 3px;
}

.button.primary {
  color: var(--card-ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(18, 23, 38, 0.22);
}

.button.secondary {
  border-color: var(--glass-border);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  gap: 9px;
  min-height: 52px;
  padding-inline: 20px;
  opacity: 0;
  box-shadow: 0 20px 56px rgba(18, 23, 38, 0.28);
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 180ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta.is-visible:hover {
  transform: translateY(-2px);
}

.sticky-cta-icon {
  width: 17px;
  height: 17px;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: var(--text-shadow);
}

.hero h2 {
  margin: 20px 0 0;
  max-width: 580px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: var(--text-shadow);
}

.hero-copy {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.trust-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.note-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.preview-stage {
  position: relative;
  min-height: 620px;
}

.demo-label {
  position: absolute;
  top: -26px;
  left: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.demo-frame {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.sample-enter {
  animation: sample-enter 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.document {
  min-height: 560px;
  padding: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(32px) saturate(1.08);
  transform: rotate(-1.4deg);
}

.doc-topline {
  width: 54%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.doc-title {
  margin-top: 28px;
  font-size: 19px;
  font-weight: 760;
  color: rgba(255, 255, 255, 0.88);
}

.doc-line {
  height: 9px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.doc-line.short {
  width: 62%;
}

.doc-line.medium {
  width: 82%;
}

.doc-highlight {
  margin-top: 22px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

.scan-line {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 18%;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.34);
  animation: scan 8s linear infinite;
}

.result {
  align-self: center;
  color: var(--card-ink);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(34px) saturate(1.08);
}

.result-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
}

.result h3 {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.1;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--attention);
  color: #6f451e;
  font-size: 12px;
  font-weight: 760;
}

.status-confirmed {
  align-items: center;
  gap: 6px;
  background: rgba(228, 232, 239, 0.78);
  color: #485166;
}

.status-icon {
  width: 14px;
  height: 14px;
}

.field {
  padding: 14px 0;
  border-top: 1px solid rgba(170, 177, 202, 0.42);
}

.field span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.field strong,
.field p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.sample-control {
  gap: 8px;
}

.control-dot {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.sample-control[aria-pressed="true"] {
  color: var(--card-ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(18, 23, 38, 0.16);
}

.sample-control[aria-pressed="true"] .control-dot {
  background: currentColor;
  transform: scale(1.18);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: -1px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(24px);
  color: rgba(255, 255, 255, 0.86);
}

.stat {
  padding: 24px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 14px;
  font-weight: 720;
}

section {
  padding: 88px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: var(--text-shadow);
}

.section-head p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.feature-showcase {
  position: relative;
  overflow: hidden;
}

.feature-showcase::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.feature-showcase::after {
  content: "";
  position: absolute;
  width: min(38vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(-24deg);
  pointer-events: none;
}

.detail-showcase::before {
  top: -230px;
  right: -180px;
}

.detail-showcase::after {
  top: 18%;
  left: -5%;
}

.sender-showcase::before {
  bottom: -280px;
  left: -210px;
}

.sender-showcase::after {
  right: -4%;
  bottom: 20%;
}

.organize-showcase::before {
  top: 24%;
  right: -300px;
}

.split-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 56px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.showcase-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  text-shadow: var(--text-shadow);
}

.showcase-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.showcase-facts {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.showcase-facts span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 680;
}

.fact-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.media-placeholder {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(31, 38, 80, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(30px) saturate(1.08);
}

.media-screenshot {
  aspect-ratio: 16 / 10;
}

.media-gif {
  aspect-ratio: 3 / 2;
}

.media-video {
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin-top: 24px;
}

.media-grid {
  position: absolute;
  inset: 16px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

.media-placeholder::before,
.media-placeholder::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  pointer-events: none;
}

.media-placeholder::before {
  top: 16px;
  left: 16px;
  border-top: 2px solid rgba(255, 255, 255, 0.68);
  border-left: 2px solid rgba(255, 255, 255, 0.68);
}

.media-placeholder::after {
  right: 16px;
  bottom: 16px;
  border-right: 2px solid rgba(255, 255, 255, 0.68);
  border-bottom: 2px solid rgba(255, 255, 255, 0.68);
}

.media-placeholder-copy {
  display: grid;
  justify-items: center;
  max-width: 420px;
  padding: 40px;
  text-align: center;
}

.media-placeholder-copy strong {
  margin-top: 16px;
  font-size: 18px;
}

.media-placeholder-copy span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.media-icon {
  width: 38px;
  height: 38px;
}

.media-gif .media-icon,
.media-video .media-icon {
  animation: media-pulse 2.4s ease-in-out infinite;
}

.compact-steps {
  position: relative;
  z-index: 1;
}

.steps,
.outputs,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.outputs {
  grid-template-columns: repeat(4, 1fr);
}

.panel {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(28px) saturate(1.08);
  box-shadow: 0 18px 60px rgba(40, 48, 82, 0.12);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.panel:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 24px 72px rgba(40, 48, 82, 0.18);
}

.panel-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.84);
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.privacy-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 34px;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(26px);
}

.privacy-band .section-head {
  margin-bottom: 0;
}

.privacy-icon {
  width: 32px;
  height: 32px;
  margin-top: 5px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.54);
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 720;
}

.link-icon {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.text-link:hover .link-icon {
  transform: translateX(3px);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.final {
  position: relative;
  overflow: hidden;
  padding: 88px 0 104px;
  text-align: center;
}

.final .wrap {
  position: relative;
  z-index: 1;
}

.final-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(240px, 34vw, 460px);
  height: auto;
  opacity: 0.1;
  filter: brightness(0) invert(1);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
}

.final p {
  margin: 16px auto 26px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--glass-border);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease var(--reveal-delay, 0ms), transform 560ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[dir="rtl"] .demo-frame,
[dir="rtl"] .hero-grid {
  direction: rtl;
}

@keyframes scan {
  0%,
  12% {
    transform: translateY(0);
    opacity: 0;
  }
  22%,
  72% {
    opacity: 1;
  }
  82%,
  100% {
    transform: translateY(420px);
    opacity: 0;
  }
}

@keyframes sample-enter {
  from {
    opacity: 0;
    transform: translateX(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes media-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.78;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes language-popover-enter {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  .scan-line {
    display: none;
  }

  .sample-enter {
    animation: none;
  }

  .media-gif .media-icon,
  .media-video .media-icon {
    animation: none;
  }

  .language-popover.is-open {
    animation: none;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .demo-frame,
  .steps,
  .outputs,
  .faq-grid,
  .stats,
  .split-showcase,
  .split-reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .preview-stage {
    min-height: auto;
    margin-top: 28px;
  }

  .document {
    min-height: 360px;
  }

  .privacy-band {
    grid-template-columns: 1fr;
  }

  .split-reverse .media-placeholder {
    order: 2;
  }

  .media-placeholder {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 64px;
    scroll-snap-type: y proximity;
  }

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

  .nav {
    min-height: 64px;
  }

  .nav-actions .secondary {
    display: none;
  }

  .language-popover {
    position: fixed;
    top: 72px;
    right: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100svh - 88px);
  }

  .sticky-cta {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    min-height: 50px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 0;
  }

  .hero-grid {
    display: block;
  }

  .hero-intro,
  .preview-stage,
  main > section,
  .final {
    min-height: calc(100vh - 64px);
    min-height: calc(100svh - 64px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .hero-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 0;
  }

  .preview-stage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
    padding: 54px 0 40px;
  }

  .demo-label {
    top: 24px;
    left: 0;
  }

  .document {
    min-height: 220px;
    padding: 20px;
    transform: rotate(-0.6deg);
  }

  .doc-title {
    margin-top: 18px;
  }

  .doc-highlight {
    margin-top: 12px;
    padding: 9px;
  }

  .document .doc-line {
    display: none;
  }

  .result {
    position: relative;
    margin: -24px 12px 0;
    padding: 16px;
  }

  .result h3 {
    margin: 12px 0 10px;
    font-size: 21px;
  }

  .field {
    padding: 10px 0;
  }

  .field strong,
  .field p {
    font-size: 14px;
  }

  .hero-intro .hero-actions .button {
    width: 100%;
  }

  .preview-stage > .hero-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 16px;
  }

  .preview-stage > .hero-actions .button {
    width: auto;
    min-width: 0;
    padding: 0 7px;
    font-size: 11px;
  }

  main > section {
    display: flex;
    align-items: center;
  }

  main > section > .wrap {
    flex: 0 0 auto;
  }

  .steps,
  .outputs,
  .faq-grid {
    display: flex;
    gap: 12px;
    margin-inline: -12px;
    padding: 4px 12px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .steps::-webkit-scrollbar,
  .outputs::-webkit-scrollbar,
  .faq-grid::-webkit-scrollbar {
    display: none;
  }

  .steps .panel,
  .outputs .panel,
  .faq-grid .panel {
    flex: 0 0 min(82vw, 340px);
    min-height: 210px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head h2,
  .showcase-copy h2 {
    font-size: clamp(31px, 9vw, 44px);
  }

  section {
    padding: 48px 0;
  }

  .media-placeholder {
    min-height: 240px;
  }

  .media-placeholder-copy {
    padding: 32px 24px;
  }

  .feature-showcase::before {
    width: 360px;
    height: 360px;
  }

  .final {
    display: flex;
    align-items: center;
    padding: 56px 0;
  }
}
