:root {
  color-scheme: light;
  --bg: #eef4fb;
  --ink: #071a33;
  --muted: #53667e;
  --panel: #ffffff;
  --line: #cbd8e9;
  --blue: #2d7dff;
  --blue-strong: #105fd7;
  --blue-soft: #e7f1ff;
  --green: #1b8cff;
  --amber: #c58b20;
  --hero: #001631;
  --surface:
    linear-gradient(180deg, color-mix(in srgb, var(--blue-soft) 48%, transparent), transparent 74%),
    var(--panel);
  --shadow: 0 18px 40px rgb(7 26 51 / 9%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #f8fbff;
  background: rgb(0 18 42 / 84%);
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
}

.brand span {
  min-width: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgb(0 0 0 / 24%);
}

.site-nav {
  gap: 22px;
  color: rgb(248 251 255 / 78%);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 6px;
  padding: 0;
  color: #ffffff;
  background: rgb(248 251 255 / 8%);
  cursor: pointer;
}

.nav-toggle-line {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle-line:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle-line:nth-child(3) {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg);
}

.site-nav a,
.header-cta,
.primary-link,
.secondary-link,
.footer-links a {
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover {
  color: #ffffff;
}

.header-cta,
.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  padding: 0 16px;
  font-weight: 900;
}

.header-cta,
.primary-link {
  background: var(--blue);
  color: #ffffff;
}

.header-cta:hover,
.primary-link:hover {
  background: var(--blue-strong);
}

.secondary-link {
  border: 1px solid currentColor;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--hero);
  color: #ffffff;
}

.tower-canvas,
.hero-overlay {
  position: absolute;
}

.tower-canvas,
.hero-overlay {
  inset: 0;
}

.tower-canvas {
  width: 100%;
  height: 100%;
}

.hero-overlay {
  background:
    radial-gradient(circle at 76% 56%, rgb(45 125 255 / 10%), transparent 28%),
    rgb(0 17 40 / 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero .eyebrow {
  color: #82bdff;
}

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

h1 {
  max-width: 1060px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 4.8vw, 4.55rem);
  overflow-wrap: normal;
  hyphens: manual;
  line-height: 1;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

p {
  line-height: 1.62;
}

.hero-copy {
  max-width: 780px;
  color: rgb(248 251 255 / 82%);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero .secondary-link {
  color: #ffffff;
  border-color: rgb(255 255 255 / 32%);
}

.hero-microcopy {
  max-width: 650px;
  margin-top: 16px;
  margin-bottom: 0;
  color: rgb(248 251 255 / 68%);
  font-size: clamp(0.86rem, 1.05vw, 0.94rem);
  font-weight: 400;
  line-height: 1.55;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.legal-main {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 138px 0 82px;
}

.legal-article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 44px);
}

.legal-article h1 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.96;
}

.legal-article h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.legal-article h3 {
  margin-top: 24px;
}

.legal-article p,
.legal-article li {
  color: var(--muted);
}

.legal-article a {
  color: var(--blue);
  font-weight: 800;
}

.legal-list {
  margin: 0;
  padding-left: 20px;
}

.legal-contact-block {
  display: grid;
  gap: 6px;
  margin: 24px 0;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.problem-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
}

.problem-section > .section-heading,
.problem-section > .problem-grid,
.problem-section > .problem-close {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.problem-section > .section-heading {
  max-width: none;
}

.problem-section > .section-heading > * {
  max-width: 860px;
}

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

.problem-card {
  min-height: 255px;
  padding: 22px;
}

.problem-icon,
.use-case-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.problem-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border-radius: 8px;
  color: var(--blue);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--blue) 18%, transparent), transparent),
    #ffffff;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
}

.problem-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-icon text {
  fill: currentColor;
  stroke: none;
  font-size: 5px;
  font-weight: 900;
  letter-spacing: 0;
}

.problem-close {
  margin-top: 18px;
  margin-bottom: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 850;
}

.benefit-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f8fe 100%);
}

.benefit-section > .section-heading,
.benefit-section > .benefit-grid,
.benefit-section > .benefit-close {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.benefit-section > .section-heading {
  max-width: none;
}

.benefit-section > .section-heading > * {
  max-width: 800px;
}

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

.benefit-card {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto 1fr auto;
  min-height: 285px;
  padding: 22px;
}

.benefit-metric {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min-content;
  min-width: 58px;
  min-height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  padding: 0 12px;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--blue), color-mix(in srgb, var(--blue-strong) 84%, #071a33));
  box-shadow: 0 14px 28px rgb(16 95 215 / 20%);
  font-weight: 950;
  letter-spacing: 0;
}

.benefit-result {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 22px;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--blue-strong);
  background: color-mix(in srgb, var(--blue-soft) 72%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--blue) 14%, var(--line));
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.benefit-close {
  margin-top: 18px;
  margin-bottom: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 850;
}

.process-section {
  width: 100%;
  max-width: none;
  background: #e5effa;
}

.process-section > .section-heading,
.process-section > .platform-preview,
.process-section > .process-rail,
.process-section > .process-close,
.process-section > .process-actions {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.process-section > .section-heading {
  max-width: none;
}

.process-section > .section-heading > * {
  max-width: 840px;
}

.platform-preview {
  margin: 0 0 24px;
}

.preview-window {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--blue) 22%, var(--line));
  border-radius: 8px;
  background: #0a1a2d;
  box-shadow: 0 28px 70px rgb(7 26 51 / 22%);
}

.preview-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: rgb(248 251 255 / 70%);
  background: #07182a;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #36506d;
}

.preview-topbar span:nth-child(1) {
  background: #ff7b7b;
}

.preview-topbar span:nth-child(2) {
  background: #ffc857;
}

.preview-topbar span:nth-child(3) {
  background: #6ce0a6;
}

.preview-topbar strong {
  margin-left: 10px;
  font-size: 0.78rem;
}

.preview-product {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 430px;
  color: #f8fbff;
  background:
    linear-gradient(135deg, rgb(45 125 255 / 11%), transparent 42%),
    #122235;
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 18px;
  background: rgb(0 15 34 / 52%);
  border-right: 1px solid rgb(255 255 255 / 9%);
}

.preview-sidebar strong {
  margin-bottom: 12px;
  font-size: 1rem;
}

.preview-sidebar span {
  border-radius: 6px;
  padding: 11px 12px;
  color: rgb(248 251 255 / 70%);
  font-weight: 850;
  font-size: 0.8rem;
}

.preview-sidebar .active {
  color: #ffffff;
  background: #2d65ad;
}

.preview-content {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: 26px;
}

.preview-content-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.preview-content-head h3 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.preview-content-head p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgb(248 251 255 / 72%);
  line-height: 1.45;
}

.preview-eyebrow {
  margin-bottom: 6px;
  color: #82bdff;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.preview-button,
.preview-table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 38px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 6px;
  padding: 0 13px;
  color: #f8fbff;
  background: rgb(248 251 255 / 5%);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.preview-upload-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px 170px;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px dashed rgb(130 189 255 / 28%);
  border-radius: 8px;
  background: rgb(248 251 255 / 3%);
}

.preview-upload-panel > div > span,
.preview-upload-panel small {
  display: block;
  color: rgb(248 251 255 / 68%);
  font-weight: 800;
}

.preview-upload-panel .preview-button {
  width: 100%;
  min-width: 0;
}

.preview-upload-panel strong {
  display: block;
  margin: 4px 0;
  font-size: 1rem;
}

.preview-upload-panel .preview-button:last-child {
  color: #06182b;
  background: #6db5ff;
}

.preview-table {
  display: grid;
  overflow-x: auto;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 8px;
}

.preview-table-head,
.preview-row {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) 146px minmax(260px, 1.25fr) 178px;
  gap: 18px;
  align-items: center;
  min-width: 850px;
  padding: 14px 16px;
}

.preview-table-head {
  color: rgb(248 251 255 / 58%);
  background: rgb(0 15 34 / 32%);
  font-size: 0.76rem;
  font-weight: 900;
}

.preview-row {
  border-top: 1px solid rgb(255 255 255 / 8%);
  font-size: 0.86rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  min-height: 32px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #94f0bd;
  background: rgb(31 132 90 / 18%);
  font-weight: 900;
  text-align: center;
}

.status-pill.processing {
  color: #9fcfff;
  background: rgb(45 125 255 / 18%);
}

.progress-cell {
  display: grid;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

.progress-cell small {
  color: #9ff0cc;
  font-weight: 850;
}

.progress-track {
  display: block;
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(255 255 255 / 11%);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #69adff, #9ff0cc);
}

.section-heading p,
.signal-card p,
.problem-card p,
.benefit-card p,
.process-rail p,
.start-step p,
.trust-competencies p,
.pricing-card p,
.module-panel p,
.contact-copy p,
.contact-note,
.site-footer p {
  color: var(--muted);
}

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

.signal-card,
.problem-card,
.benefit-card,
.process-rail article,
.start-step,
.pricing-card,
.module-panel,
.trust-competencies article,
.trust-profile,
.contact-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signal-card {
  min-height: 220px;
  padding: 22px;
}

.signal-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--blue) 12%, transparent);
  color: var(--blue);
  font-weight: 900;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-rail article {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 20px;
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgb(16 95 215 / 18%);
  font-weight: 950;
}

.motion-ready .problem-section > .section-heading > *,
.motion-ready .problem-card,
.motion-ready .problem-close,
.motion-ready .benefit-section > .section-heading > *,
.motion-ready .benefit-card,
.motion-ready .benefit-close,
.motion-ready .process-section > .section-heading > *,
.motion-ready .platform-preview,
.motion-ready .process-rail article,
.motion-ready .process-close,
.motion-ready .process-actions,
.motion-ready .start-section > .section-heading > *,
.motion-ready .start-step,
.motion-ready .start-close,
.motion-ready .start-actions,
.motion-ready .trust-section > .section-heading > *,
.motion-ready .trust-copy,
.motion-ready .trust-profile,
.motion-ready .trust-close,
.motion-ready .trust-actions,
.motion-ready .development-copy > *,
.motion-ready .development-loop,
.motion-ready .development-close,
.motion-ready .development-actions,
.motion-ready .pricing-section > .section-heading > *,
.motion-ready .pricing-card,
.motion-ready .pricing-close,
.motion-ready .pricing-actions,
.motion-ready .faq-section > .section-heading > *,
.motion-ready .faq-item,
.motion-ready .modules-section > .section-heading > *,
.motion-ready .module-panel,
.motion-ready .module-close,
.motion-ready .contact-section .contact-copy,
.motion-ready .contact-section .contact-form {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.motion-ready .problem-section > .section-heading.is-visible > *,
.motion-ready .problem-card.is-visible,
.motion-ready .problem-close.is-visible,
.motion-ready .benefit-section > .section-heading.is-visible > *,
.motion-ready .benefit-card.is-visible,
.motion-ready .benefit-close.is-visible,
.motion-ready .process-section > .section-heading.is-visible > *,
.motion-ready .platform-preview.is-visible,
.motion-ready .process-rail article.is-visible,
.motion-ready .process-close.is-visible,
.motion-ready .process-actions.is-visible,
.motion-ready .start-section > .section-heading.is-visible > *,
.motion-ready .start-step.is-visible,
.motion-ready .start-close.is-visible,
.motion-ready .start-actions.is-visible,
.motion-ready .trust-section > .section-heading.is-visible > *,
.motion-ready .trust-copy.is-visible,
.motion-ready .trust-profile.is-visible,
.motion-ready .trust-close.is-visible,
.motion-ready .trust-actions.is-visible,
.motion-ready .development-copy.is-visible > *,
.motion-ready .development-loop.is-visible,
.motion-ready .development-close.is-visible,
.motion-ready .development-actions.is-visible,
.motion-ready .pricing-section > .section-heading.is-visible > *,
.motion-ready .pricing-card.is-visible,
.motion-ready .pricing-close.is-visible,
.motion-ready .pricing-actions.is-visible,
.motion-ready .faq-section > .section-heading.is-visible > *,
.motion-ready .faq-item.is-visible,
.motion-ready .modules-section > .section-heading.is-visible > *,
.motion-ready .module-panel.is-visible,
.motion-ready .module-close.is-visible,
.motion-ready .contact-section.is-visible .contact-copy,
.motion-ready .contact-section.is-visible .contact-form {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .problem-section > .section-heading.is-visible h2,
.motion-ready .benefit-section > .section-heading.is-visible h2,
.motion-ready .process-section > .section-heading.is-visible h2 {
  transition-delay: 90ms;
}

.motion-ready .problem-card:nth-child(1) {
  transition-delay: 80ms;
}

.motion-ready .problem-card:nth-child(2) {
  transition-delay: 150ms;
}

.motion-ready .problem-card:nth-child(3) {
  transition-delay: 220ms;
}

.motion-ready .problem-card:nth-child(4) {
  transition-delay: 290ms;
}

.motion-ready .problem-close {
  transition-delay: 350ms;
}

.motion-ready .benefit-card:nth-child(1) {
  transition-delay: 80ms;
}

.motion-ready .benefit-card:nth-child(2) {
  transition-delay: 150ms;
}

.motion-ready .benefit-card:nth-child(3) {
  transition-delay: 220ms;
}

.motion-ready .benefit-card:nth-child(4) {
  transition-delay: 290ms;
}

.motion-ready .benefit-close {
  transition-delay: 350ms;
}

.motion-ready .platform-preview {
  transition-delay: 150ms;
}

.motion-ready .process-rail article:nth-child(1) {
  transition-delay: 80ms;
}

.motion-ready .process-rail article:nth-child(2) {
  transition-delay: 150ms;
}

.motion-ready .process-rail article:nth-child(3) {
  transition-delay: 220ms;
}

.motion-ready .process-rail article:nth-child(4) {
  transition-delay: 290ms;
}

.motion-ready .process-close {
  transition-delay: 350ms;
}

.motion-ready .process-actions {
  transition-delay: 420ms;
}

.motion-ready .start-section > .section-heading.is-visible h2,
.motion-ready .trust-section > .section-heading.is-visible h2,
.motion-ready .pricing-section > .section-heading.is-visible h2,
.motion-ready .faq-section > .section-heading.is-visible h2,
.motion-ready .modules-section > .section-heading.is-visible h2 {
  transition-delay: 90ms;
}

.motion-ready .start-step:nth-child(1) {
  transition-delay: 80ms;
}

.motion-ready .start-step:nth-child(2) {
  transition-delay: 140ms;
}

.motion-ready .start-step:nth-child(3) {
  transition-delay: 200ms;
}

.motion-ready .start-step:nth-child(4) {
  transition-delay: 260ms;
}

.motion-ready .start-step:nth-child(5) {
  transition-delay: 320ms;
}

.motion-ready .start-close {
  transition-delay: 380ms;
}

.motion-ready .start-actions {
  transition-delay: 450ms;
}

.motion-ready .trust-copy {
  transition-delay: 120ms;
}

.motion-ready .trust-profile {
  transition-delay: 190ms;
}

.motion-ready .trust-close {
  transition-delay: 260ms;
}

.motion-ready .trust-actions {
  transition-delay: 330ms;
}

.motion-ready .development-copy.is-visible h2 {
  transition-delay: 90ms;
}

.motion-ready .development-loop {
  transition-delay: 150ms;
}

.motion-ready .development-close {
  transition-delay: 230ms;
}

.motion-ready .development-actions {
  transition-delay: 300ms;
}

.motion-ready .pricing-card:nth-child(1),
.motion-ready .module-panel:nth-child(1) {
  transition-delay: 90ms;
}

.motion-ready .pricing-card:nth-child(2),
.motion-ready .module-panel:nth-child(2) {
  transition-delay: 170ms;
}

.motion-ready .pricing-close {
  transition-delay: 240ms;
}

.motion-ready .pricing-actions {
  transition-delay: 310ms;
}

.motion-ready .faq-item:nth-child(1) {
  transition-delay: 70ms;
}

.motion-ready .faq-item:nth-child(2) {
  transition-delay: 110ms;
}

.motion-ready .faq-item:nth-child(3) {
  transition-delay: 150ms;
}

.motion-ready .faq-item:nth-child(4) {
  transition-delay: 190ms;
}

.motion-ready .faq-item:nth-child(n+5) {
  transition-delay: 230ms;
}

.motion-ready .module-panel:nth-child(3) {
  transition-delay: 250ms;
}

.motion-ready .module-panel:nth-child(4) {
  transition-delay: 330ms;
}

.motion-ready .module-panel:nth-child(5) {
  transition-delay: 410ms;
}

.motion-ready .module-close {
  transition-delay: 470ms;
}

.motion-ready .contact-section.is-visible .contact-form {
  transition-delay: 120ms;
}

.process-rail strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.process-close {
  margin-top: 18px;
  margin-bottom: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 850;
}

.process-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.start-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, rgb(248 251 255 / 92%), rgb(231 241 255 / 88%)),
    #eef6ff;
}

.start-section > .section-heading,
.start-section > .start-rail,
.start-section > .start-close,
.start-section > .start-actions {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.start-section > .section-heading {
  max-width: none;
}

.start-section > .section-heading > * {
  max-width: 820px;
}

.start-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.start-step {
  display: grid;
  align-content: start;
  min-height: 255px;
  padding: 20px;
}

.start-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue-strong);
  box-shadow: 0 12px 24px rgb(16 95 215 / 18%);
  font-weight: 950;
}

.start-step h3 {
  margin-bottom: 10px;
}

.start-close {
  margin-top: 18px;
  margin-bottom: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 850;
}

.start-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.trust-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.trust-section > .section-heading,
.trust-section > .trust-layout,
.trust-section > .trust-close,
.trust-section > .trust-actions {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.trust-section > .section-heading {
  max-width: none;
}

.trust-section > .section-heading > * {
  max-width: 850px;
}

.trust-section > .section-heading {
  margin-bottom: 18px;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.trust-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.trust-copy > p {
  margin-bottom: 0;
  color: var(--muted);
}

.trust-lead {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.62;
}

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

.trust-competencies article {
  min-height: 210px;
  padding: 20px;
}

.trust-competencies span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid color-mix(in srgb, var(--blue) 24%, var(--line));
  border-radius: 8px;
  color: var(--blue-strong);
  background: color-mix(in srgb, var(--blue-soft) 74%, #ffffff);
}

.trust-competencies svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-competencies text {
  fill: currentColor;
  stroke: none;
  font-size: 5px;
  font-weight: 950;
  letter-spacing: 0;
}

.trust-competencies strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.trust-profile {
  display: grid;
  align-content: end;
  overflow: hidden;
  margin: -8px 0 0;
  min-height: 0;
}

.trust-profile img {
  width: 100%;
  height: min(330px, 34vw);
  min-height: 260px;
  object-fit: contain;
  object-position: bottom center;
  background:
    radial-gradient(circle at 50% 24%, color-mix(in srgb, var(--blue-soft) 64%, transparent), transparent 58%),
    #ffffff;
}

.trust-profile figcaption {
  display: grid;
  gap: 4px;
  padding: 18px 20px 20px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.trust-profile figcaption strong {
  font-size: 1.08rem;
}

.trust-profile figcaption span {
  color: var(--blue-strong);
  font-weight: 900;
}

.trust-profile figcaption small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.45;
}

.trust-close {
  margin-top: 18px;
  margin-bottom: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 850;
}

.trust-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.development-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.development-section > .development-copy,
.development-section > .development-loop,
.development-section > .development-close,
.development-section > .development-actions {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.development-copy {
  max-width: none;
  margin-bottom: 24px;
}

.development-copy > * {
  max-width: 860px;
}

.development-copy p:not(.eyebrow) {
  color: var(--muted);
}

.development-loop {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  position: relative;
}

.development-loop span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  border: 1px solid color-mix(in srgb, var(--blue) 22%, var(--line));
  border-radius: 8px;
  color: var(--blue-strong);
  background: #ffffff;
  box-shadow: var(--shadow);
  font-weight: 950;
  text-align: center;
}

.development-loop i {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
  font-style: normal;
  font-weight: 950;
}

.development-loop i:nth-of-type(1) {
  left: calc(25% - 7px);
}

.development-loop i:nth-of-type(2) {
  left: 50%;
}

.development-loop i:nth-of-type(3) {
  left: calc(75% + 7px);
}

.development-close {
  margin-top: 18px;
  margin-bottom: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 850;
}

.development-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.pricing-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 72%), rgb(248 251 255 / 82%)),
    #f8fbff;
}

.pricing-section > .section-heading,
.pricing-section > .pricing-grid,
.pricing-section > .pricing-close,
.pricing-section > .pricing-actions {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.pricing-section .section-heading {
  max-width: none;
  margin-bottom: 28px;
}

.pricing-section .section-heading > * {
  max-width: 840px;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 255px;
  padding: 26px;
}

.pricing-card-featured {
  border-color: color-mix(in srgb, var(--blue) 44%, var(--line));
}

.pricing-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 24px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--blue-strong);
  background: color-mix(in srgb, var(--blue) 11%, transparent);
  font-size: 0.78rem;
  font-weight: 900;
}

.pricing-card h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.08;
}

.pricing-connector {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: auto;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--blue-strong);
  background: color-mix(in srgb, var(--blue-soft) 72%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--blue) 14%, var(--line));
  font-size: 0.82rem;
  font-weight: 900;
}

.pricing-close {
  margin-top: 18px;
  margin-bottom: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 850;
}

.pricing-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.price-line {
  display: grid;
  gap: 2px;
  width: 100%;
  margin: 4px 0 20px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--blue) 22%, var(--line));
  border-radius: 8px;
  background: #ffffff;
}

.price-line strong {
  color: var(--blue-strong);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.price-line span {
  color: var(--muted);
  font-weight: 850;
}

.pricing-list {
  display: grid;
  gap: 9px;
  margin: 8px 0 24px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-list li::marker {
  color: var(--blue);
}

.pricing-action {
  margin-top: auto;
}

.faq-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, #edf5ff 0%, #f8fbff 100%),
    #f8fbff;
}

.faq-section > .section-heading,
.faq-section > .faq-list {
  width: min(980px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.faq-section > .section-heading {
  max-width: none;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 18px 58px 18px 20px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
  line-height: 1.25;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid color-mix(in srgb, var(--blue) 22%, var(--line));
  border-radius: 999px;
  color: var(--blue-strong);
  background: color-mix(in srgb, var(--blue-soft) 72%, #ffffff);
  transform: translateY(-50%);
  font-size: 1.18rem;
  font-weight: 950;
}

.faq-item[open] summary {
  color: var(--blue-strong);
  border-bottom: 1px solid color-mix(in srgb, var(--blue) 14%, var(--line));
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 18px 20px 20px;
  color: var(--muted);
}

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

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--ink);
  font-weight: 900;
}

.field-wide {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-weight: 650;
  outline: none;
}

.field textarea {
  min-height: 108px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 16%, transparent);
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--blue) 14%, var(--line));
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-submit {
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.modules-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 68%, #eef6ff 100%),
    #f8fbff;
}

.modules-section > .section-heading,
.modules-section > .module-layout {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.modules-section > .section-heading {
  max-width: none;
  margin-bottom: 28px;
}

.modules-section > .section-heading > * {
  max-width: 760px;
}

.module-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.module-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 340px;
  padding: 82px 24px 24px;
}

.module-panel:nth-child(2) {
  border-color: color-mix(in srgb, var(--blue) 36%, var(--line));
}

.module-panel:nth-child(3) {
  border-color: color-mix(in srgb, var(--amber) 32%, var(--line));
}

.use-case-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--blue) 24%, var(--line));
  border-radius: 8px;
  color: var(--blue-strong);
  background: color-mix(in srgb, var(--blue-soft) 74%, #ffffff);
}

.use-case-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.use-case-icon text {
  fill: currentColor;
  stroke: none;
  font-size: 4.8px;
  font-weight: 950;
  letter-spacing: 0;
}

.module-example {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  margin-top: 18px;
  border-radius: 6px;
  padding: 0 10px;
  color: var(--blue-strong);
  background: color-mix(in srgb, var(--blue-soft) 72%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--blue) 14%, var(--line));
  font-size: 0.78rem;
  font-weight: 900;
}

.module-close {
  width: min(calc((1180px - 32px) / 3 * 2 + 16px), calc((100% - 40px - 32px) / 3 * 2 + 16px));
  margin-top: 18px;
  margin-left: max(20px, calc((100% - 1180px) / 2));
  margin-right: auto;
  margin-bottom: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 850;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
  margin-top: 34px;
  margin-bottom: 104px;
  padding: clamp(26px, 4vw, 40px);
}

.contact-copy {
  max-width: none;
}

.contact-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 18px;
}

.contact-support span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
  border-radius: 6px;
  padding: 0 12px;
  color: var(--blue-strong);
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 900;
}

.contact-support span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--blue);
}

.contact-note {
  margin-bottom: 0;
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  padding: 14px 16px;
  background: #ffffff;
  font-weight: 850;
}

.contact-form {
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--line));
  border-radius: 8px;
  padding: clamp(20px, 3vw, 26px);
  background: rgb(255 255 255 / 72%);
}

.contact-form .field span {
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  text-align: right;
}

.footer-links a {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
  }

  .site-nav {
    order: 3;
    display: none;
    width: 100%;
    overflow: visible;
    border-top: 1px solid rgb(255 255 255 / 12%);
    padding: 10px 0 0;
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    border-radius: 6px;
    padding: 12px;
    background: rgb(248 251 255 / 6%);
  }

  .header-cta {
    order: 4;
    display: none;
    width: 100%;
  }

  .site-header.is-menu-open .header-cta {
    display: inline-flex;
  }

  .signal-grid,
  .problem-grid,
  .benefit-grid,
  .process-rail,
  .start-rail,
  .trust-layout,
  .trust-competencies,
  .development-loop,
  .pricing-grid,
  .faq-list,
  .form-grid,
  .module-layout,
  .contact-section,
  .preview-product,
  .preview-upload-panel {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-content-head {
    display: grid;
  }

  .contact-support {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: min(100% - 32px, 980px);
    padding-top: 136px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10.4vw, 3.1rem);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .section {
    width: min(100% - 32px, 1180px);
    padding: 56px 0;
  }

  .problem-section > .section-heading,
  .problem-section > .problem-grid,
  .problem-section > .problem-close,
  .benefit-section > .section-heading,
  .benefit-section > .benefit-grid,
  .benefit-section > .benefit-close,
  .process-section > .section-heading,
  .process-section > .platform-preview,
  .process-section > .process-rail,
  .process-section > .process-close,
  .process-section > .process-actions,
  .start-section > .section-heading,
  .start-section > .start-rail,
  .start-section > .start-close,
  .start-section > .start-actions,
  .trust-section > .section-heading,
  .trust-section > .trust-layout,
  .trust-section > .trust-close,
  .trust-section > .trust-actions,
  .development-section > .development-copy,
  .development-section > .development-loop,
  .development-section > .development-close,
  .development-section > .development-actions,
  .pricing-section > .section-heading,
  .pricing-section > .pricing-grid,
  .pricing-section > .pricing-close,
  .pricing-section > .pricing-actions,
  .faq-section > .section-heading,
  .faq-section > .faq-list,
  .modules-section > .section-heading,
  .modules-section > .module-layout,
  .modules-section > .module-close {
    width: min(100% - 32px, 1180px);
  }

  .trust-profile img {
    height: 320px;
  }

  .development-loop {
    gap: 10px;
  }

  .development-loop i {
    position: static;
    transform: none;
    justify-self: center;
  }

  .contact-section {
    margin-top: 28px;
    margin-bottom: 56px;
    padding: 22px;
  }

  .pricing-card,
  .contact-form {
    padding: 22px;
  }

  .contact-form-footer {
    display: grid;
    justify-items: start;
  }

  .preview-content {
    padding: 18px;
  }

  .preview-table-head,
  .preview-row {
    min-width: 850px;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .problem-section > .section-heading > *,
  .motion-ready .problem-card,
  .motion-ready .problem-close,
  .motion-ready .benefit-section > .section-heading > *,
  .motion-ready .benefit-card,
  .motion-ready .benefit-close,
  .motion-ready .process-section > .section-heading > *,
  .motion-ready .platform-preview,
  .motion-ready .process-rail article,
  .motion-ready .process-close,
  .motion-ready .process-actions,
  .motion-ready .start-section > .section-heading > *,
  .motion-ready .start-step,
  .motion-ready .start-close,
  .motion-ready .start-actions,
  .motion-ready .trust-section > .section-heading > *,
  .motion-ready .trust-copy,
  .motion-ready .trust-profile,
  .motion-ready .trust-close,
  .motion-ready .trust-actions,
  .motion-ready .development-copy > *,
  .motion-ready .development-loop,
  .motion-ready .development-close,
  .motion-ready .development-actions,
  .motion-ready .pricing-section > .section-heading > *,
  .motion-ready .pricing-card,
  .motion-ready .pricing-close,
  .motion-ready .pricing-actions,
  .motion-ready .faq-section > .section-heading > *,
  .motion-ready .faq-item,
  .motion-ready .modules-section > .section-heading > *,
  .motion-ready .module-panel,
  .motion-ready .module-close,
  .motion-ready .contact-section .contact-copy,
  .motion-ready .contact-section .contact-form {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
