:root {
  --paper: #fbfcff;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --surface-warm: #fff8ee;
  --ink: #172033;
  --muted: #5f6b7a;
  --line: #dfe7ee;
  --line-strong: #cbd8e3;
  --blue: #2357ff;
  --blue-dark: #183bbf;
  --teal: #0d9488;
  --green: #17a36b;
  --coral: #ff6b57;
  --amber: #ffbd45;
  --violet: #6d5dfc;
  --shadow: 0 22px 70px rgba(23, 32, 51, 0.12);
  --shadow-soft: 0 14px 36px rgba(23, 32, 51, 0.08);
  --radius: 8px;
  --radius-lg: 18px;
  --container: 1180px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(35, 87, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(13, 148, 136, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 252, 255, 0.9);
  border-bottom: 1px solid rgba(203, 216, 227, 0.8);
  backdrop-filter: blur(18px);
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--amber), var(--coral));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: 0 50%;
  pointer-events: none;
}

.nav-wrap {
  width: min(100% - 2rem, var(--container));
  min-height: var(--header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  overflow: hidden;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background:
    linear-gradient(135deg, rgba(35, 87, 255, 0.12), rgba(13, 148, 136, 0.16)),
    #fff;
  color: var(--blue);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.brand-mark::after {
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 55%;
  background: rgba(255, 255, 255, 0.7);
  transform: rotate(18deg);
  animation: iconSweep 6.5s ease-in-out infinite;
  content: "";
}

.brand-mark img,
.brand-mark svg {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: var(--ink);
  background: #eef5ff;
  transform: translateY(-1px);
  outline: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.btn::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.34) 45%, transparent 55% 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
  content: "";
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(120%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 24px rgba(35, 87, 255, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #a8bbca;
}

.btn-quiet {
  color: var(--blue);
  background: #eef5ff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 2rem;
}

.section {
  padding: clamp(3.4rem, 6vw, 6rem) 0;
}

.section-tight {
  padding: clamp(2.4rem, 5vw, 4.5rem) 0;
}

.band {
  background: var(--surface);
  border-block: 1px solid rgba(203, 216, 227, 0.65);
}

.band-soft {
  background:
    linear-gradient(120deg, rgba(255, 189, 69, 0.13), transparent 38%),
    linear-gradient(280deg, rgba(13, 148, 136, 0.1), transparent 42%),
    repeating-linear-gradient(90deg, rgba(35, 87, 255, 0.04) 0 1px, transparent 1px 46px),
    var(--surface-soft);
  background-size: auto, auto, 92px 92px, auto;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.center {
  margin-inline: auto;
  text-align: center;
}

.center.section-actions,
.center.btn-row {
  justify-content: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: 5.35rem;
}

h2 {
  font-size: 3.05rem;
}

h3 {
  font-size: 1.26rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 850px;
  color: var(--muted);
  font-size: 1.22rem;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6.4rem) 0 clamp(2.6rem, 5vw, 4.6rem);
  background:
    repeating-linear-gradient(90deg, rgba(35, 87, 255, 0.035) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(180deg, rgba(13, 148, 136, 0.032) 0 1px, transparent 1px 54px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 55%, #fbfcff 100%);
  background-size: 108px 108px, 108px 108px, auto;
  animation: gridDrift 18s linear infinite;
}

.hero::before {
  position: absolute;
  inset: 0;
  height: auto;
  background:
    linear-gradient(105deg, transparent 0 8%, rgba(35, 87, 255, 0.08) 18%, transparent 35%),
    linear-gradient(255deg, transparent 0 15%, rgba(255, 189, 69, 0.12) 34%, transparent 55%),
    linear-gradient(180deg, rgba(13, 148, 136, 0.08), transparent 45%);
  background-size: 180% 180%;
  animation: lightSweep 12s ease-in-out infinite alternate;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.25rem;
}

.hero-copy > * {
  animation: heroRise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 160ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 240ms;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 320ms;
}

.trust-line {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-weight: 700;
}

.trust-line::before {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(23, 163, 107, 0.12);
  animation: trustPulse 2.4s ease-in-out infinite;
  content: "";
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 760px;
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.hero-links a:hover,
.hero-links a:focus-visible {
  border-color: rgba(35, 87, 255, 0.35);
  background: #eef5ff;
  color: var(--ink);
  outline: 0;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-shell {
  position: relative;
  min-height: 520px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(135deg, rgba(35, 87, 255, 0.06) 0 1px, transparent 1px 22px);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform:
    perspective(1100px)
    translate3d(0, var(--hero-lift, 0px), 0)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    scale(var(--hero-scale, 1));
  transform-style: preserve-3d;
  transition:
    transform 280ms ease,
    box-shadow 280ms ease;
}

.visual-shell::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(35, 87, 255, 0.1), transparent),
    repeating-linear-gradient(180deg, transparent 0 42px, rgba(13, 148, 136, 0.06) 42px 43px, transparent 43px 84px);
  background-size: 180% 100%, auto;
  animation: dataFlow 8s linear infinite;
  content: "";
  pointer-events: none;
}

.visual-shell::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.55) 45%, transparent 52% 100%);
  transform: translateX(-110%);
  animation: sheen 7s ease-in-out infinite;
  content: "";
  pointer-events: none;
}

.visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0.35rem 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.dots {
  display: flex;
  gap: 0.32rem;
}

.dots span {
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
  background: var(--line-strong);
}

.dots span:nth-child(1) {
  background: var(--coral);
}

.dots span:nth-child(2) {
  background: var(--amber);
}

.dots span:nth-child(3) {
  background: var(--green);
}

.workflow-board {
  position: relative;
  display: grid;
  gap: 0.78rem;
  z-index: 1;
  overflow: hidden;
}

.board-row {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.05);
  transition:
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.animated-board .board-row {
  animation: none;
}

.animated-board .board-row:nth-child(2) {
  animation-delay: 450ms;
}

.animated-board .board-row:nth-child(3) {
  animation-delay: 900ms;
}

.animated-board .board-row:nth-child(4) {
  animation-delay: 1350ms;
}

.board-row::after {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  width: 42%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: translateX(-100%);
  transition: transform 520ms ease;
  content: "";
}

.board-row.is-active {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(35, 87, 255, 0.38);
  box-shadow: 0 18px 34px rgba(35, 87, 255, 0.12);
}

.board-row.is-active::after {
  transform: translateX(0);
}

.board-title {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.board-title strong {
  font-size: 0.98rem;
}

.board-title span {
  color: var(--muted);
  font-size: 0.84rem;
}

.status-pill {
  white-space: nowrap;
  padding: 0.36rem 0.55rem;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  transition:
    transform 280ms ease,
    background 280ms ease;
}

.board-row.is-active .status-pill {
  transform: translateX(-2px);
}

.status-pill.green {
  background: #e8f8f1;
  color: #087a50;
}

.status-pill.amber {
  background: #fff4db;
  color: #8a5b00;
}

.floating-note {
  position: absolute;
  right: -0.6rem;
  bottom: 2.2rem;
  width: min(250px, 50%);
  padding: 1rem;
  border: 1px solid rgba(203, 216, 227, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  animation: floaty 5.2s ease-in-out infinite;
  z-index: 2;
}

.floating-note::after {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--blue), var(--teal), var(--amber), var(--coral));
  background-size: 220% 100%;
  animation: progressGlow 3.8s linear infinite;
  content: "";
}

.floating-note strong {
  display: block;
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.9rem;
}

.motion-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
}

.motion-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: marquee 24s linear infinite;
}

.motion-strip:hover .motion-track {
  animation-play-state: paused;
}

.motion-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.35rem;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.motion-track span::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--teal);
  animation: trustPulse 2.4s ease-in-out infinite;
  content: "";
}

.scroll-story {
  position: relative;
  min-height: 320vh;
  padding: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fafc 42%, #ffffff 100%),
    repeating-linear-gradient(90deg, rgba(35, 87, 255, 0.035) 0 1px, transparent 1px 56px);
  border-bottom: 1px solid var(--line);
}

.scroll-story-frame {
  position: sticky;
  top: var(--header);
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.92fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2rem, 5vw, 4rem);
}

.scroll-story-copy {
  display: grid;
  gap: 1rem;
}

.scroll-story-copy h2 {
  max-width: 650px;
}

.story-step {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  max-width: 620px;
  padding: 0.85rem 0;
  color: var(--muted);
  opacity: var(--step-opacity, 0.42);
  transform: translate3d(var(--step-x, -10px), 0, 0);
  transition:
    opacity 160ms linear,
    transform 160ms linear;
}

.story-step span {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.06);
}

.story-step h3 {
  margin-bottom: 0.25rem;
}

.story-step.is-active {
  color: var(--ink);
}

.story-step.is-active span {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 7px rgba(35, 87, 255, 0.12);
}

.scroll-product {
  position: relative;
  transform:
    translate3d(0, var(--story-y, 0px), 0)
    scale(var(--story-scale, 1));
  transform-origin: 50% 55%;
}

.product-mockup {
  position: relative;
  min-height: 560px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.86)),
    repeating-linear-gradient(135deg, rgba(35, 87, 255, 0.06) 0 1px, transparent 1px 26px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-mockup::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(13, 148, 136, 0.08) 48%, transparent 100%),
    repeating-linear-gradient(180deg, transparent 0 58px, rgba(35, 87, 255, 0.07) 58px 59px, transparent 59px 116px);
  background-position: var(--flow-bg-x, 0%) var(--flow-bg-y, 0);
  background-size: 180% 100%, auto;
  content: "";
  pointer-events: none;
}

.journey-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 0.5rem 0 1.1rem;
  padding: 0.2rem 0;
}

.journey-rail::before,
.journey-rail::after {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  transform: translateY(-50%);
  content: "";
}

.journey-rail::before {
  background: #e8eef5;
}

.journey-rail::after {
  width: var(--rail-progress, 0%);
  right: auto;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--amber), var(--coral));
  transition: width 120ms linear;
}

.journey-rail span {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 1rem;
  height: 1rem;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--line-strong);
  box-shadow: 0 0 0 1px var(--line);
}

.journey-rail span.is-active {
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(35, 87, 255, 0.12);
}

.journey-lanes {
  position: relative;
  z-index: 1;
  min-height: 350px;
  overflow: hidden;
}

.journey-card {
  position: absolute;
  width: min(330px, 82%);
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(23, 32, 51, 0.1);
  opacity: var(--card-opacity, 0);
  transform:
    translate3d(var(--card-x, 0px), var(--card-y, 24px), 0)
    scale(var(--card-scale, 0.96));
  transition:
    opacity 120ms linear,
    transform 120ms linear,
    box-shadow 120ms linear;
}

.journey-card small {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
}

.journey-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.journey-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.journey-card-a {
  left: 0;
  top: 0.4rem;
}

.journey-card-b {
  right: 0;
  top: 5.5rem;
}

.journey-card-c {
  left: 9%;
  top: 11.2rem;
}

.journey-card-d {
  right: 5%;
  top: 16.6rem;
}

.journey-summary {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: var(--radius);
  background: #effcf7;
  color: var(--muted);
  opacity: var(--summary-opacity, 0);
  transform: translate3d(0, var(--summary-y, 20px), 0);
  transition:
    opacity 120ms linear,
    transform 120ms linear;
}

.journey-summary strong {
  color: #087a50;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.quick-card {
  display: grid;
  gap: 0.35rem;
  min-height: 150px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.05);
  overflow-wrap: anywhere;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.quick-card:hover,
.quick-card:focus-visible {
  border-color: rgba(35, 87, 255, 0.35);
  box-shadow: 0 14px 30px rgba(23, 32, 51, 0.08);
  transform: translateY(-2px);
  outline: 0;
}

.quick-card span {
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-card strong {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.18;
}

.quick-card small {
  align-self: end;
  color: var(--blue);
  font-weight: 900;
}

.card,
.service-block,
.price-card {
  position: relative;
  padding: clamp(1.15rem, 2.4vw, 1.55rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.05);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(var(--item-lift, 0px))
    scale(var(--item-scale, 1));
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.card {
  overflow: hidden;
}

.card::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--amber));
  background-size: 200% 100%;
  animation: progressGlow 7s linear infinite;
  content: "";
}

.card::after,
.price-card::after,
.service-block::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(35, 87, 255, 0.07) 47%, transparent 58% 100%);
  transform: translateX(-130%);
  transition: transform 700ms ease;
  content: "";
  pointer-events: none;
}

.card:hover,
.card:focus-within,
.price-card:hover,
.price-card:focus-within,
.service-block:hover,
.service-block:focus-within {
  border-color: rgba(35, 87, 255, 0.32);
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.1);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(calc(var(--item-lift, 0px) - 4px))
    scale(var(--item-scale, 1));
}

.card:hover::after,
.card:focus-within::after,
.price-card:hover::after,
.price-card:focus-within::after,
.service-block:hover::after,
.service-block:focus-within::after {
  transform: translateX(130%);
}

.card h3,
.service-block h2,
.price-card h3 {
  margin-bottom: 0.65rem;
}

.card p,
.service-block p,
.price-card p,
.check-list,
.plain-list {
  color: var(--muted);
}

.case-study-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 0.35rem);
}

.case-study-figure figcaption {
  margin-top: 0.9rem;
  color: var(--muted);
}

.check-list,
.plain-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 1.65rem;
}

.check-list li::before,
.plain-list li::before {
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
  content: "";
}

.plain-list li::before {
  background: var(--blue);
}

.check-list li:hover::before,
.plain-list li:hover::before {
  transform: scale(1.35);
  box-shadow: 0 0 0 6px rgba(23, 163, 107, 0.1);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(135deg, rgba(255, 107, 87, 0.08) 0 1px, transparent 1px 28px);
  box-shadow: var(--shadow-soft);
  transform: translate3d(0, var(--item-lift, 0px), 0) scale(var(--item-scale, 1));
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.feature-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.64) 50%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: sheen 9s ease-in-out infinite;
  content: "";
  pointer-events: none;
}

.price-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #fff4db;
  color: #7a5200;
  font-weight: 900;
  animation: tagNudge 4s ease-in-out infinite;
}

.service-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.25rem;
  align-items: start;
  scroll-margin-top: calc(var(--header) + 1rem);
}

.service-list {
  display: grid;
  gap: 0.9rem;
}

.service-main {
  display: grid;
  gap: 0.6rem;
  min-width: 0;
}

.service-block .service-details,
.service-block .btn {
  grid-column: 1 / -1;
}

.service-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfe;
  overflow: hidden;
}

.service-details summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-weight: 900;
}

.service-details[open] summary {
  border-bottom: 1px solid var(--line);
}

.service-details > ul,
.service-details .detail-grid {
  padding: 0 1rem 1rem;
}

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

.service-kicker {
  display: block;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card.is-featured {
  border-color: rgba(35, 87, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(35, 87, 255, 0.055), rgba(13, 148, 136, 0.07)),
    #fff;
}

.price-card.is-featured .price-line {
  background: var(--blue);
  color: #fff;
}

.price-card .check-list,
.price-card .plain-list {
  margin-top: 0.85rem;
}

.motion-calm .page-hero,
.motion-calm .band-soft {
  background:
    linear-gradient(180deg, #fff 0%, #f8fbfe 100%);
}

.motion-calm .page-hero {
  padding: 3.8rem 0 3.2rem;
}

.motion-calm .page-hero h1 {
  max-width: 880px;
  font-size: 4.25rem;
}

.motion-calm .page-hero .lead {
  font-size: 1.12rem;
}

.motion-calm .service-block,
.motion-calm .price-card,
.motion-calm .feature-panel,
.motion-calm .pricing-table-wrap,
.motion-calm .cta-band {
  transform: none !important;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.motion-calm .service-block:hover,
.motion-calm .service-block:focus-within,
.motion-calm .price-card:hover,
.motion-calm .price-card:focus-within {
  transform: none !important;
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.07);
}

.motion-calm .service-block::after,
.motion-calm .price-card::after,
.motion-calm .feature-panel::before,
.motion-calm .pricing-table-wrap::before,
.motion-calm .cta-band::before {
  display: none;
}

.motion-calm .pricing-table tbody tr.is-highlighted {
  background: transparent;
  transform: none;
}

.motion-calm .price-tag,
.motion-calm .motion-track,
.motion-calm .trust-line::before {
  animation: none;
}

.motion-calm .reveal {
  transition-delay: 0ms;
}

.price-line {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-weight: 900;
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.price-card:hover .price-line,
.service-block:hover .price-line {
  transform: translateX(3px);
  background: #e6f0ff;
}

.service-actions {
  margin-top: 0.25rem;
}

.pricing-table-wrap {
  position: relative;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform: translate3d(0, var(--item-lift, 0px), 0) scale(var(--item-scale, 1));
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.pricing-table-wrap::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--teal), var(--amber));
  background-size: 100% 220%;
  animation: tableRail 6s linear infinite;
  content: "";
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  background: #f3f7fb;
  color: var(--ink);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table tbody tr {
  transition:
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.pricing-table tbody tr:hover,
.pricing-table tbody tr.is-highlighted {
  background: #f7fbff;
  transform: translateX(3px);
}

.pricing-table strong {
  color: var(--ink);
}

.pricing-table .price {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(23, 32, 51, 0.04);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(35, 87, 255, 0.28);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.08);
  transform: translateY(-2px);
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--ink);
  font-weight: 900;
}

.faq-list details p {
  padding: 0 1.1rem 1rem;
  color: var(--muted);
}

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.38fr);
  gap: clamp(1.2rem, 4vw, 2.5rem);
  align-items: start;
}

.form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform: translate3d(0, var(--item-lift, 0px), 0) scale(var(--item-scale, 1));
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.form-card::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--amber));
  background-size: 220% 100%;
  animation: progressGlow 7s linear infinite;
  content: "";
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

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

.field label {
  color: var(--ink);
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0.78rem 0.85rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(35, 87, 255, 0.14);
  box-shadow: 0 8px 22px rgba(35, 87, 255, 0.1);
  transform: translateY(-1px);
}

.help-text {
  color: var(--muted);
  font-size: 0.9rem;
}

.aside-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.aside-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.aside-list span:hover {
  border-color: rgba(35, 87, 255, 0.28);
  color: var(--ink);
  transform: translateX(3px);
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.06);
}

.quote-note {
  margin-top: 1rem;
  padding: 1rem;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  background: var(--surface-warm);
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(35, 87, 255, 0.08), rgba(13, 148, 136, 0.1)),
    #fff;
  box-shadow: var(--shadow-soft);
  transform: translate3d(0, var(--item-lift, 0px), 0) scale(var(--item-scale, 1));
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.cta-band::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.55) 46%, transparent 56% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 1px, transparent 1px 36px);
  transform: translateX(-110%);
  animation: ctaSweep 8s ease-in-out infinite;
  content: "";
  pointer-events: none;
}

.cta-band > * {
  position: relative;
}

.cta-band .lead {
  margin: 1rem 0 1.35rem;
}

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

.footer-brand strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.6rem, 5vw, 4rem);
  background:
    repeating-linear-gradient(90deg, rgba(35, 87, 255, 0.04) 0 1px, transparent 1px 52px),
    linear-gradient(120deg, rgba(255, 189, 69, 0.16), transparent 38%),
    linear-gradient(280deg, rgba(13, 148, 136, 0.12), transparent 45%),
    #fff;
  background-size: 104px 104px, auto, auto, auto;
  animation: gridDrift 20s linear infinite;
  border-bottom: 1px solid var(--line);
}

.page-hero .hero-copy {
  max-width: 920px;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.mini-metric {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.mini-metric:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.32);
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.08);
}

.mini-metric strong {
  display: block;
  color: var(--ink);
  font-size: 1.15rem;
}

.mini-metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

body.motion-calm .reveal {
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
}

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

.card.reveal.is-visible,
.service-block.reveal.is-visible,
.price-card.reveal.is-visible {
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(var(--item-lift, 0px))
    scale(var(--item-scale, 1));
}

.card.reveal.is-visible:hover,
.card.reveal.is-visible:focus-within,
.service-block.reveal.is-visible:hover,
.service-block.reveal.is-visible:focus-within,
.price-card.reveal.is-visible:hover,
.price-card.reveal.is-visible:focus-within {
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(calc(var(--item-lift, 0px) - 4px))
    scale(var(--item-scale, 1));
}

.feature-panel.reveal.is-visible,
.form-card.reveal.is-visible,
.pricing-table-wrap.reveal.is-visible,
.cta-band.reveal.is-visible {
  transform: translate3d(0, var(--item-lift, 0px), 0) scale(var(--item-scale, 1));
}

@keyframes iconSweep {
  0%,
  54% {
    transform: translateX(0) rotate(18deg);
  }

  72%,
  100% {
    transform: translateX(260%) rotate(18deg);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 108px 54px, -54px 108px, 0 0, 0 0;
  }
}

@keyframes lightSweep {
  from {
    background-position: 0% 48%;
  }

  to {
    background-position: 100% 52%;
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trustPulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(23, 163, 107, 0.12);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(23, 163, 107, 0);
    transform: scale(1.08);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes dataFlow {
  from {
    background-position: -120% 0, 0 0;
  }

  to {
    background-position: 120% 0, 0 84px;
  }
}

@keyframes rowBreathe {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(2px);
  }
}

@keyframes progressGlow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 220% 50%;
  }
}

@keyframes tagNudge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes tableRail {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 220%;
  }
}

@keyframes ctaSweep {
  0%,
  54% {
    transform: translateX(-110%);
  }

  78%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes sheen {
  0%,
  58% {
    transform: translateX(-110%);
  }

  76%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 4rem;
  }

  .motion-calm .page-hero h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .lead {
    font-size: 1.12rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header) + 0.5rem);
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    display: grid;
    gap: 0.2rem;
  }

  .nav-link,
  .nav-menu .btn {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-grid,
  .split,
  .form-wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .visual-shell {
    min-height: 420px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .scroll-story {
    min-height: auto;
  }

  .scroll-story-frame {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 3rem;
  }

  .scroll-product {
    order: -1;
  }

  .product-mockup {
    min-height: 500px;
  }
}

@media (max-width: 700px) {
  :root {
    --header: 68px;
  }

  body {
    overflow-x: hidden;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark img,
  .brand-mark svg {
    width: 26px;
    height: 26px;
  }

  .brand span:last-child {
    font-size: 0.95rem;
  }

  .motion-calm .page-hero {
    padding: 2.5rem 0 2.35rem;
  }

  .motion-calm .page-hero h1 {
    max-width: 100%;
    font-size: 2.1rem;
    overflow-wrap: break-word;
  }

  .hero-links a {
    max-width: 100%;
    font-size: 0.88rem;
  }

  .btn-row .btn,
  .trust-line {
    max-width: 100%;
  }

  .trust-line {
    width: 100%;
    align-items: flex-start;
    border-radius: var(--radius);
  }

  .hero {
    padding-top: 2.2rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .lead {
    font-size: 1.02rem;
  }

  .grid-2,
  .grid-3,
  .quick-grid,
  .mini-metrics,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    min-height: auto;
  }

  .service-block {
    grid-template-columns: 1fr;
  }

  .service-block .price-line {
    justify-self: start;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-shell {
    min-height: 390px;
  }

  .product-mockup {
    min-height: 470px;
  }

  .journey-lanes {
    min-height: 306px;
  }

  .journey-card {
    width: min(300px, 92%);
  }

  .journey-card-a {
    top: 0;
  }

  .journey-card-b {
    top: 4.8rem;
  }

  .journey-card-c {
    left: 0;
    top: 10.2rem;
  }

  .journey-card-d {
    right: 0;
    top: 15.3rem;
  }

  .story-step {
    grid-template-columns: 2.2rem minmax(0, 1fr);
  }

  .floating-note {
    right: 0.7rem;
    bottom: 1rem;
    width: calc(100% - 1.4rem);
  }

  .board-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .status-pill {
    width: fit-content;
  }

  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table th,
  .pricing-table td,
  .pricing-table tr {
    display: block;
    min-width: 0;
  }

  .pricing-table thead {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
  }

  .pricing-table tr {
    border-bottom: 1px solid var(--line);
  }

  .pricing-table tbody tr:last-child {
    border-bottom: 0;
  }

  .pricing-table td {
    display: grid;
    grid-template-columns: 9rem 1fr;
    gap: 1rem;
    border-bottom: 1px solid rgba(223, 231, 238, 0.65);
  }

  .pricing-table td::before {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    content: attr(data-label);
  }

  .pricing-table td:last-child {
    border-bottom: 0;
  }

  .cta-band {
    padding: 1.25rem;
  }
}

@media (max-width: 520px) {
  .container,
  .nav-wrap {
    width: min(100% - 2rem, 22.5rem);
    margin-left: 1rem;
    margin-right: auto;
  }

  .btn-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 22.5rem;
  }

  .btn-row .btn {
    width: 100%;
  }

  .hero-links {
    width: 100%;
    max-width: 22.5rem;
  }

  .hero-links a {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-force) *,
  html:not(.motion-force) *::before,
  html:not(.motion-force) *::after,
  html.motion-reduce *,
  html.motion-reduce *::before,
  html.motion-reduce *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  html:not(.motion-force) .reveal,
  html.motion-reduce .reveal {
    opacity: 1;
    transform: none;
  }

  html:not(.motion-force) .story-step,
  html:not(.motion-force) .journey-card,
  html:not(.motion-force) .journey-summary,
  html:not(.motion-force) .scroll-product,
  html:not(.motion-force) .visual-shell,
  html.motion-reduce .story-step,
  html.motion-reduce .journey-card,
  html.motion-reduce .journey-summary,
  html.motion-reduce .scroll-product,
  html.motion-reduce .visual-shell {
    opacity: 1 !important;
    transform: none !important;
  }

  html:not(.motion-force) .journey-rail::after,
  html.motion-reduce .journey-rail::after {
    width: 100% !important;
  }
}
