:root {
  --rk-ink: #17191d;
  --rk-ink-soft: #30363a;
  --rk-paper: #fffdf8;
  --rk-paper-warm: #f4ecdf;
  --rk-paper-deep: #ead9c5;
  --rk-line: #d8d0c5;
  --rk-muted: #696760;
  --rk-signal: #b83f2e;
  --rk-signal-bright: #e6533b;
  --rk-teal: #1f6263;
  --rk-teal-pale: #dfeceb;
  --rk-green: #2f715f;
  --rk-ease: cubic-bezier(.2, .8, .2, 1);
}

html {
  scroll-padding-top: 92px;
}

body {
  color: var(--rk-ink);
  background: var(--rk-paper);
}

.site-header {
  background: rgba(255, 253, 248, .94);
  border-bottom-color: rgba(23, 25, 29, .12);
  box-shadow: 0 10px 35px rgba(23, 25, 29, .04);
}

.site-header .nav {
  min-height: 68px;
}

.reading-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--rk-signal-bright);
  transform: scaleX(var(--reading-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: var(--rk-signal);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s var(--rk-ease);
}

.nav-links a:hover::after,
.nav-links a[aria-current="location"]::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="location"] {
  color: var(--rk-ink);
}

.button {
  border-radius: 10px;
  background: var(--rk-signal);
  box-shadow: 0 12px 26px rgba(111, 37, 26, .18);
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.button:hover {
  background: #923225;
  box-shadow: 0 15px 30px rgba(111, 37, 26, .23);
  transform: none;
}

.button--dark {
  background: var(--rk-ink);
}

.button--dark:hover {
  background: #30363a;
}

.eyebrow {
  color: var(--rk-signal);
  letter-spacing: .11em;
}

.hero--product-story {
  position: relative;
  isolation: isolate;
  min-height: auto;
  overflow: hidden;
  padding: clamp(44px, 4.2vw, 64px) 0 clamp(48px, 4.8vw, 72px);
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(23, 25, 29, .045) 1px, transparent 1px),
    linear-gradient(rgba(23, 25, 29, .045) 1px, transparent 1px),
    var(--rk-paper-warm);
  background-size: 36px 36px;
}

.hero--product-story::before {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  bottom: 0;
  width: 43%;
  background: #dfb18e;
  content: "";
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 17%);
}

.hero--product-story::after {
  position: absolute;
  z-index: -1;
  right: 5vw;
  bottom: -72px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(23, 25, 29, .2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 34px rgba(255, 253, 248, .14), 0 0 0 68px rgba(255, 253, 248, .09);
}

.hero-upgrade-grid {
  display: grid;
  grid-template-columns: minmax(470px, .88fr) minmax(0, 1.12fr);
  gap: clamp(30px, 3vw, 48px);
  align-items: center;
}

.hero-copy--upgrade {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-copy--upgrade .hero-kicker {
  margin-bottom: 20px;
  padding: 9px 14px 9px 12px;
  border-radius: 7px;
  background: var(--rk-ink);
  color: #fff;
  font-size: 13px;
  box-shadow: 5px 5px 0 var(--rk-signal-bright);
}

.hero-copy--upgrade h1 {
  max-width: 610px;
  margin-bottom: 18px;
  font-size: clamp(48px, 4.3vw, 62px);
  letter-spacing: -.068em;
  line-height: 1.04;
}

.hero-copy--upgrade h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy--upgrade .hero-title-primary {
  color: var(--rk-ink);
}

.hero-copy--upgrade .hero-title-accent {
  margin-top: 5px;
  color: var(--rk-signal-bright);
}

.hero-copy--upgrade .lead {
  max-width: 540px;
  margin-bottom: 21px;
  color: #555550;
  font-size: 15px;
  line-height: 1.78;
}

.hero-actions--editorial {
  align-items: center;
  margin-bottom: 0;
}

.hero-secondary-action {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  padding: 11px 4px;
  color: var(--rk-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.hero-secondary-action::after {
  width: 34px;
  height: 1px;
  margin-left: 11px;
  background: currentColor;
  content: "";
  transform: scaleX(.55);
  transform-origin: left center;
  transition: transform .25s var(--rk-ease);
}

.hero-secondary-action:hover::after,
.hero-secondary-action:focus-visible::after {
  transform: scaleX(1);
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 0;
  margin: 17px 0 0;
  color: var(--rk-muted);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.hero-assurance li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-assurance li::before {
  width: 7px;
  height: 7px;
  border: 2px solid var(--rk-teal);
  border-radius: 50%;
  content: "";
}

.call-journey {
  position: relative;
  min-width: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--rk-ink);
}

.call-journey::before {
  position: absolute;
  inset: 58px -22px -18px 8%;
  border-radius: 46% 18px 18px 34%;
  background: radial-gradient(circle at 62% 48%, rgba(255, 253, 248, .72), rgba(255, 253, 248, .2) 58%, transparent 74%);
  content: "";
  pointer-events: none;
}

.journey-mast,
.journey-tabs,
.journey-viewport,
.journey-foot {
  position: relative;
  z-index: 1;
}

.journey-mast {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 4px 10px;
  border-bottom: 0;
}

.journey-mast > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 9px;
}

.journey-mast small {
  color: rgba(23, 25, 29, .58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.journey-mast strong {
  grid-column: 2;
  color: var(--rk-ink);
  font-size: 13px;
  letter-spacing: .01em;
}

.journey-live-dot,
.log-live-dot {
  grid-row: 1 / 3;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rk-signal-bright);
}

.journey-replay {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(23, 25, 29, .18);
  border-radius: 8px;
  background: rgba(255, 253, 248, .34);
  color: var(--rk-ink);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.journey-replay:hover,
.journey-replay:focus-visible {
  border-color: rgba(23, 25, 29, .4);
  background: rgba(255, 253, 248, .64);
}

.journey-replay:focus-visible,
.journey-tabs button:focus-visible {
  outline: 3px solid #f1a58f;
  outline-offset: 2px;
}

.journey-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-bottom: 0;
}

.journey-tabs::before,
.journey-tabs::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
}

.journey-tabs::before {
  background: rgba(23, 25, 29, .14);
}

.journey-tabs::after {
  right: auto;
  width: 0;
  background: var(--rk-signal-bright);
  transition: width .55s var(--rk-ease);
}

.call-journey[data-stage="1"] .journey-tabs::after { width: 33.333%; }
.call-journey[data-stage="2"] .journey-tabs::after { width: 66.666%; }
.call-journey[data-stage="3"] .journey-tabs::after { width: 100%; }

.journey-tabs button {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 50px;
  align-content: center;
  justify-items: start;
  gap: 1px;
  padding: 7px 8px;
  border: 0;
  background: transparent;
  color: rgba(23, 25, 29, .5);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: color .25s ease;
}

.journey-tabs button span {
  color: rgba(23, 25, 29, .42);
  font-size: 9px;
  letter-spacing: .12em;
}

.journey-tabs button[aria-selected="true"] {
  color: var(--rk-ink);
}

.journey-tabs button[aria-selected="true"] span {
  color: #f68d74;
}

.journey-viewport {
  min-height: 310px;
  overflow: visible;
}

.journey-panel {
  min-height: 310px;
  padding: clamp(24px, 3vw, 32px);
}

.journey-panel[hidden] {
  display: none !important;
}

.journey-panel.is-active {
  animation: journey-panel-in .42s var(--rk-ease) both;
}

.journey-panel-copy small,
.journey-listen small,
.journey-line-body small {
  display: block;
  margin-bottom: 10px;
  color: rgba(23, 25, 29, .56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
}

.journey-panel-copy h2,
.journey-line-body h2 {
  margin-bottom: 12px;
  color: var(--rk-ink);
  font-size: clamp(27px, 3.2vw, 40px);
  letter-spacing: -.05em;
}

.journey-panel-copy p {
  max-width: 390px;
  margin: 0;
  color: var(--rk-muted);
  font-size: 13px;
}

#journey-panel-0,
#journey-panel-3 {
  position: relative;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

#journey-panel-0 .journey-panel-copy,
#journey-panel-3 .journey-panel-copy {
  padding: 25px 27px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 18px;
  background: rgba(255, 253, 248, .7);
  box-shadow: 0 22px 48px rgba(83, 50, 32, .13);
  backdrop-filter: blur(12px);
}

.journey-phone-ring {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(23, 25, 29, .22);
  border-radius: 50%;
  background: rgba(255, 253, 248, .28);
  backdrop-filter: blur(9px);
}

.journey-phone-ring > span {
  color: var(--rk-ink);
  font-size: 42px;
  transform: rotate(-14deg);
}

.journey-phone-ring i {
  position: absolute;
  inset: 10px;
  border: 1px solid var(--rk-signal-bright);
  border-radius: 50%;
  opacity: 0;
}

.call-journey.is-playing .journey-panel.is-active .journey-phone-ring i {
  animation: journey-ring 1.05s var(--rk-ease) 2;
}

.call-journey.is-playing .journey-panel.is-active .journey-phone-ring i:nth-of-type(2) {
  animation-delay: .28s;
}

.journey-status {
  position: absolute;
  top: 27px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.journey-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.journey-status--call {
  background: rgba(255, 253, 248, .68);
  color: var(--rk-signal);
}

#journey-panel-1 {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(170px, .8fr);
  gap: 24px;
  align-items: center;
}

.journey-wave {
  display: flex;
  height: 56px;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  padding: 0 18px;
  border-left: 3px solid var(--rk-signal-bright);
  border-radius: 10px;
  background: rgba(23, 25, 29, .84);
}

.journey-wave i {
  width: 5px;
  height: 20px;
  border-radius: 99px;
  background: #f2917a;
}

.journey-wave i:nth-child(2),
.journey-wave i:nth-child(6) { height: 38px; }
.journey-wave i:nth-child(3),
.journey-wave i:nth-child(5) { height: 52px; }
.journey-wave i:nth-child(4) { height: 29px; }

.call-journey.is-playing .journey-panel.is-active .journey-wave i {
  animation: journey-listen .54s ease-in-out infinite alternate;
}

.call-journey.is-playing .journey-panel.is-active .journey-wave i:nth-child(2) { animation-delay: -.2s; }
.call-journey.is-playing .journey-panel.is-active .journey-wave i:nth-child(3) { animation-delay: -.36s; }
.call-journey.is-playing .journey-panel.is-active .journey-wave i:nth-child(4) { animation-delay: -.12s; }
.call-journey.is-playing .journey-panel.is-active .journey-wave i:nth-child(5) { animation-delay: -.42s; }
.call-journey.is-playing .journey-panel.is-active .journey-wave i:nth-child(6) { animation-delay: -.25s; }
.call-journey.is-playing .journey-panel.is-active .journey-wave i:nth-child(7) { animation-delay: -.08s; }

.journey-listen blockquote {
  margin: 0;
  color: var(--rk-ink);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 800;
  line-height: 1.65;
}

.journey-facts {
  padding: 9px 14px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 14px;
  background: rgba(255, 253, 248, .64);
  box-shadow: 0 18px 38px rgba(83, 50, 32, .1);
  backdrop-filter: blur(10px);
}

.journey-facts > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 3px;
}

.journey-facts > div + div {
  border-top: 1px solid rgba(23, 25, 29, .1);
}

.journey-facts dt {
  color: var(--rk-muted);
  font-size: 11px;
}

.journey-facts dd {
  margin: 0;
  color: var(--rk-ink);
  font-size: 13px;
  font-weight: 900;
}

#journey-panel-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
}

.journey-line-card {
  overflow: hidden;
  border: 1px solid #cadad4;
  border-radius: 14px;
  background: #f9fbf8;
  color: var(--rk-ink);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .19);
}

.journey-panel.is-active .journey-line-card {
  animation: journey-card-arrive .62s var(--rk-ease) both;
}

.journey-line-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 15px;
  background: var(--rk-green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.journey-line-body {
  padding: 14px 16px;
}

.journey-line-body small {
  margin-bottom: 3px;
  color: #66716d;
}

.journey-line-body h2 {
  margin-bottom: 14px;
  color: var(--rk-green);
  font-size: 22px;
}

.journey-line-body dl {
  margin: 0;
}

.journey-line-body dl > div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 7px 0;
  border-top: 1px solid #dde4df;
  font-size: 11px;
}

.journey-line-body dt {
  color: #6b746f;
}

.journey-line-body dd {
  margin: 0;
  font-weight: 800;
}

.journey-delivery {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--rk-teal);
  font-size: 10px;
  font-weight: 800;
}

.journey-delivery span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(31, 98, 99, .3);
  border-radius: 50%;
  color: #8bd1bb;
  font-size: 18px;
}

.journey-decision-mark {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 2px solid var(--rk-teal);
  border-radius: 50%;
  background: rgba(255, 253, 248, .28);
  color: var(--rk-teal);
  backdrop-filter: blur(9px);
}

.journey-panel.is-active .journey-decision-mark {
  animation: journey-decision  .68s var(--rk-ease) both;
}

.journey-decision-mark span {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .12em;
}

.journey-boundary {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.journey-boundary span,
.journey-boundary strong {
  padding: 7px 9px;
  border: 1px solid rgba(23, 25, 29, .14);
  border-radius: 6px;
  color: var(--rk-muted);
  font-size: 10px;
}

.journey-boundary strong {
  border-color: rgba(31, 98, 99, .3);
  color: var(--rk-teal);
}

.journey-foot {
  display: none;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 16px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #899796;
  font-size: 10px;
}

.journey-foot strong {
  color: #fff;
  font-size: 11px;
}

.motion-ready .hero-copy--upgrade .hero-kicker,
.motion-ready .hero-copy--upgrade h1 span,
.motion-ready .hero-copy--upgrade .lead,
.motion-ready .hero-copy--upgrade .hero-actions,
.motion-ready .hero-copy--upgrade .hero-assurance {
  clip-path: inset(0 100% 0 0);
}

.motion-ready .hero--product-story.is-inview .hero-copy--upgrade .hero-kicker,
.motion-ready .hero--product-story.is-inview .hero-copy--upgrade h1 span,
.motion-ready .hero--product-story.is-inview .hero-copy--upgrade .lead,
.motion-ready .hero--product-story.is-inview .hero-copy--upgrade .hero-actions,
.motion-ready .hero--product-story.is-inview .hero-copy--upgrade .hero-assurance {
  animation: rk-copy-wipe .72s var(--rk-ease) both;
}

.motion-ready .hero--product-story.is-inview .hero-copy--upgrade h1 .hero-title-primary { animation-delay: .08s; }
.motion-ready .hero--product-story.is-inview .hero-copy--upgrade h1 .hero-title-accent { animation-delay: .16s; }
.motion-ready .hero--product-story.is-inview .hero-copy--upgrade .lead { animation-delay: .25s; }
.motion-ready .hero--product-story.is-inview .hero-copy--upgrade .hero-actions { animation-delay: .33s; }
.motion-ready .hero--product-story.is-inview .hero-copy--upgrade .hero-assurance { animation-delay: .41s; }

.proof-bar {
  position: relative;
  z-index: 2;
  margin-top: 0 !important;
  border: 0;
  background: var(--rk-ink);
}

.proof-grid {
  width: min(1160px, calc(100% - 48px)) !important;
  gap: 0 !important;
}

.proof {
  padding: 22px 20px;
  border: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, .13) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.proof:last-child {
  border-right: 0 !important;
}

.proof strong {
  color: #fff;
  font-size: 19px;
}

.proof span {
  color: #adb8b7;
}

.section {
  padding: clamp(76px, 7.2vw, 104px) 0;
}

.section-heading {
  position: relative;
  padding-left: 26px;
  margin-bottom: 46px;
}

.section-heading::before {
  position: absolute;
  top: 4px;
  bottom: 5px;
  left: 0;
  width: 3px;
  background: var(--rk-signal);
  content: "";
  transform: scaleY(0);
  transform-origin: top;
}

.motion-ready .section-heading.is-inview::before {
  animation: rk-line-draw .68s var(--rk-ease) forwards;
}

.section-heading h2,
.service-copy h2,
.flow-intro h2 {
  text-wrap: balance;
}

.positioning {
  background: #fffdf8;
}

.positioning-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 52px;
  align-items: center;
}

.positioning-card {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--rk-line);
  border-left: 7px solid var(--rk-signal);
  border-radius: 4px;
  background: var(--rk-paper-warm);
}

.positioning-card h2 {
  max-width: 650px;
  font-size: clamp(30px, 3.5vw, 46px);
}

.fit-panel {
  padding-block: 10px;
}

.industry-list {
  gap: 0;
  border-top: 1px solid var(--rk-line);
}

.industry-list li,
.industry-list li:first-child {
  display: block;
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid var(--rk-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.industry-list li:first-child {
  border-left: 0;
}

.industry-list strong,
.industry-list span {
  display: block;
  text-align: left;
}

.industry-list strong {
  font-size: 15px;
}

.industry-list span {
  margin-top: 3px;
}

#problems .section-heading,
#problems .section-visual,
#problems .wall-grid {
  width: auto;
  margin-right: 0;
  margin-left: 0;
  transform: none;
}

#problems .section-heading {
  max-width: 720px;
}

.section-visual,
.field-tested-visual {
  border: 0;
  border-radius: 4px;
  box-shadow: none;
}

.section-visual--problems {
  border-bottom: 7px solid var(--rk-signal);
}

.section-visual--problems img {
  aspect-ratio: 16 / 7;
}

#problems .wall-grid {
  margin-top: 24px;
  gap: 12px;
}

#problems .wall-card,
#problems .wall-card:nth-child(1),
#problems .wall-card:nth-child(2),
#problems .wall-card:nth-child(3) {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--rk-line);
  border-top: 1px solid var(--rk-line);
  border-radius: 4px;
  background: #fff;
  transform: none;
}

#problems .wall-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--rk-signal);
  content: "";
  transform: scaleY(0);
  transform-origin: top;
}

.motion-ready #problems .wall-grid.is-inview .wall-card::before {
  animation: rk-line-draw .55s var(--rk-ease) forwards;
}

.motion-ready #problems .wall-grid.is-inview .wall-card:nth-child(2)::before { animation-delay: .16s; }
.motion-ready #problems .wall-grid.is-inview .wall-card:nth-child(3)::before { animation-delay: .32s; }

.card-index {
  margin-bottom: 24px;
}

.service-pressure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(23, 25, 29, .16);
  border-radius: 18px;
  background: #182124;
  box-shadow: 0 24px 54px rgba(42, 31, 24, .16);
  color: #fff;
}

.service-pressure__head,
.service-pressure__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-pressure__head {
  min-height: 64px;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.service-pressure__head > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.service-pressure__head small {
  color: #b2bfbd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
}

.service-pressure__head strong {
  font-size: 13px;
}

.service-pressure__live {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rk-signal-bright);
}

.service-pressure__body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  gap: 30px;
  padding: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.service-pressure__tasks {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-pressure__tasks li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  transition: opacity .45s var(--rk-ease), transform .45s var(--rk-ease);
}

.service-pressure__tasks span,
.service-pressure__tasks i {
  color: #9fadaa;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .07em;
}

.service-pressure__tasks strong {
  font-size: 13px;
}

.service-pressure__tasks i {
  padding: 5px 7px;
  border: 1px solid rgba(139, 209, 187, .27);
  border-radius: 999px;
  color: #a8decf;
}

.service-pressure__call {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: 18px;
  min-height: 204px;
  padding: 28px 26px;
  border: 1px solid rgba(255, 150, 126, .36);
  border-radius: 12px;
  background: #fff8f3;
  box-shadow: 0 20px 42px rgba(0, 0, 0, .2);
  color: var(--rk-ink);
  transition: opacity .62s var(--rk-ease), transform .62s var(--rk-ease);
}

.service-pressure__call-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: var(--rk-signal-bright);
  color: #fff;
  font-size: 29px;
  transform: rotate(-12deg);
}

.service-pressure__call small {
  display: block;
  margin-bottom: 4px;
  color: var(--rk-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.service-pressure__call strong {
  display: block;
  font-size: 25px;
  letter-spacing: -.04em;
}

.service-pressure__call p {
  margin: 6px 0 0;
  color: var(--rk-muted);
  font-size: 11px;
}

.service-pressure__call b {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(230, 83, 59, .1);
  color: var(--rk-signal);
  font-size: 9px;
  letter-spacing: .06em;
}

.service-pressure figcaption {
  padding: 13px 22px;
  background: #f2e7da;
  color: var(--rk-ink);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
}

.motion-ready .service-pressure:not(.is-inview) .service-pressure__tasks li {
  opacity: .38;
  transform: translateX(-10px);
}

.motion-ready .service-pressure:not(.is-inview) .service-pressure__call {
  opacity: 0;
  transform: translateX(28px);
}

.motion-ready .service-pressure.is-inview .service-pressure__tasks li:nth-child(2) { transition-delay: .08s; }
.motion-ready .service-pressure.is-inview .service-pressure__tasks li:nth-child(3) { transition-delay: .16s; }

.service-section {
  background: #172023;
  color: #fff;
}

.service-section::before {
  top: -25%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-color: rgba(255, 255, 255, .1);
  box-shadow: 0 0 0 46px rgba(255, 255, 255, .025), 0 0 0 92px rgba(255, 255, 255, .018);
}

.service-story,
#service .service-story {
  grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(50px, 7vw, 104px);
}

.service-copy h2,
.service-copy h2 span {
  color: #fff;
}

.service-copy h2 span {
  color: #f28a71;
}

.service-copy .lead {
  color: #c0c9c8;
}

.service-note {
  color: #fff;
}

.reception-log {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: #f8f3e9;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .26);
  color: var(--rk-ink);
}

.reception-log__head,
.reception-log__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
}

.reception-log__head {
  border-bottom: 1px solid #d9d2c8;
}

.reception-log__head > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.reception-log__head strong {
  font-size: 13px;
}

.reception-log__head time {
  color: var(--rk-muted);
  font-size: 10px;
  font-weight: 700;
}

.reception-log__list {
  position: relative;
  padding: 24px 22px 16px;
  margin: 0;
  list-style: none;
}

.reception-log__list::before {
  position: absolute;
  top: 41px;
  bottom: 44px;
  left: 111px;
  width: 2px;
  background: #d8d0c5;
  content: "";
}

.reception-log__list::after {
  position: absolute;
  top: 41px;
  bottom: 44px;
  left: 111px;
  width: 2px;
  background: var(--rk-signal-bright);
  content: "";
  transform: scaleY(0);
  transform-origin: top;
}

.motion-ready .reception-log.is-inview .reception-log__list::after {
  animation: rk-log-line 3.2s var(--rk-ease) forwards;
}

.reception-log__list li {
  position: relative;
  display: grid;
  grid-template-columns: 74px 18px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 76px;
  color: #85837d;
}

.reception-log__list time {
  padding-top: 2px;
  color: inherit;
  font-size: 10px;
  font-weight: 700;
}

.log-node {
  position: relative;
  z-index: 2;
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border: 3px solid #f8f3e9;
  border-radius: 50%;
  background: #aaa79f;
  box-shadow: 0 0 0 1px #aaa79f;
}

.reception-log__list strong {
  display: block;
  color: inherit;
  font-size: 14px;
}

.reception-log__list p {
  margin: 2px 0 0;
  color: inherit;
  font-size: 11px;
}

.motion-ready .reception-log.is-inview .reception-log__list li {
  animation: rk-log-step .5s ease forwards;
}

.motion-ready .reception-log.is-inview .reception-log__list li:nth-child(2) { animation-delay: .8s; }
.motion-ready .reception-log.is-inview .reception-log__list li:nth-child(3) { animation-delay: 1.6s; }
.motion-ready .reception-log.is-inview .reception-log__list li:nth-child(4) { animation-delay: 2.4s; }

.motion-ready .reception-log.is-inview .reception-log__list li .log-node {
  animation: rk-log-node .45s ease forwards;
}

.motion-ready .reception-log.is-inview .reception-log__list li:nth-child(2) .log-node { animation-delay: .8s; }
.motion-ready .reception-log.is-inview .reception-log__list li:nth-child(3) .log-node { animation-delay: 1.6s; }
.motion-ready .reception-log.is-inview .reception-log__list li:nth-child(4) .log-node { animation-delay: 2.4s; }

.reception-log__foot {
  border-top: 1px solid #d9d2c8;
  background: #efe6d8;
  color: var(--rk-muted);
  font-size: 11px;
}

.reception-log__foot strong {
  padding: 6px 9px;
  border: 1px solid rgba(47, 113, 95, .34);
  border-radius: 5px;
  color: var(--rk-green);
  font-size: 11px;
}

.flow-section {
  background: #f6efe4;
}

.flow-layout {
  grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(52px, 7vw, 100px);
}

.decision-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--rk-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(66, 48, 34, .1);
}

.decision-board > section {
  min-height: 300px;
  padding: 34px 28px 82px;
}

.decision-board__store {
  background: #172023;
  color: #fff;
}

.decision-label {
  margin: 0 0 19px;
  color: var(--rk-signal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
}

.decision-board__store .decision-label {
  color: #8bd1bb;
}

.decision-board h3 {
  margin-bottom: 22px;
  font-size: 23px;
}

.decision-board__store h3 {
  color: #fff;
}

.decision-board ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.decision-board li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--rk-muted);
  font-size: 12px;
  font-weight: 700;
}

.decision-board__store li {
  color: #c1cdcb;
}

.decision-board li::before {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "✓";
  font-size: 10px;
}

.decision-handoff {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  margin-inline: -1px;
  background: var(--rk-signal-bright);
  color: #fff;
}

.decision-handoff span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  writing-mode: vertical-rl;
}

.decision-handoff i {
  font-size: 20px;
  font-style: normal;
}

.motion-ready .decision-board.is-inview .decision-handoff i {
  animation: rk-handoff .55s var(--rk-ease) 2;
}

.decision-note {
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 28px;
  z-index: 3;
  padding-top: 14px;
  margin: 0;
  border-top: 1px solid rgba(216, 208, 197, .5);
  color: #a7b4b2;
  font-size: 10px;
}

.decision-note strong {
  color: #fff;
}

.field-tested {
  background: #e6eeeb;
}

.field-tested-grid {
  gap: 34px;
}

.setup-console {
  overflow: hidden;
  align-self: stretch;
  border: 1px solid #b8cbc5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(35, 75, 64, .13);
}

.setup-console__head,
.setup-console__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.setup-console__head {
  min-height: 72px;
  padding: 14px 18px;
  border-bottom: 1px solid #d9e3df;
  background: #f8fbf9;
}

.setup-console__head > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.setup-console__head > div > span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--rk-teal);
  box-shadow: 0 0 0 6px rgba(31, 98, 99, .1);
}

.setup-console__head p {
  margin: 0;
}

.setup-console__head small,
.setup-console__head strong {
  display: block;
}

.setup-console__head small {
  color: var(--rk-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.setup-console__head strong {
  margin-top: 2px;
  font-size: 14px;
}

.setup-console__head b {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--rk-teal-pale);
  color: var(--rk-teal);
  font-size: 9px;
}

.setup-console__list {
  padding: 8px 18px;
  margin: 0;
  list-style: none;
}

.setup-console__list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 84px;
  padding: 12px 0;
  border-bottom: 1px solid #e1e7e4;
  transition: opacity .45s var(--rk-ease), transform .45s var(--rk-ease);
}

.setup-console__list li:last-child {
  border-bottom: 0;
}

.setup-console__list li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #a9c4bb;
  border-radius: 50%;
  color: var(--rk-teal);
  font-size: 9px;
  font-weight: 900;
}

.setup-console__list strong {
  display: block;
  font-size: 13px;
}

.setup-console__list p {
  margin: 3px 0 0;
  color: var(--rk-muted);
  font-size: 10px;
}

.setup-console__list i {
  padding: 5px 7px;
  border-radius: 4px;
  background: #f2f6f4;
  color: var(--rk-teal);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.setup-console__foot {
  min-height: 56px;
  padding: 12px 18px;
  background: #172023;
  color: #b9c6c4;
  font-size: 9px;
}

.setup-console__foot strong {
  color: #a8decf;
  font-size: 10px;
}

.motion-ready .setup-console:not(.is-inview) .setup-console__list li {
  opacity: 0;
  transform: translateY(8px);
}

.motion-ready .setup-console.is-inview .setup-console__list li:nth-child(2) { transition-delay: .1s; }
.motion-ready .setup-console.is-inview .setup-console__list li:nth-child(3) { transition-delay: .2s; }

.field-tested-visual {
  border-bottom: 7px solid var(--rk-teal);
}

.field-tested-callout,
.field-tested-card {
  border-radius: 4px;
  box-shadow: none;
}

.field-tested-card {
  position: relative;
  padding-left: 38px;
}

.field-tested-card::before {
  position: absolute;
  top: 29px;
  left: 21px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rk-teal);
  content: "";
}

.demo {
  gap: clamp(52px, 7vw, 100px);
}

.demo-screen {
  border: 1px solid #becfc9;
  border-radius: 16px;
  background: #dfeae6;
  box-shadow: 0 24px 55px rgba(35, 75, 64, .16);
}

.demo-screen::before,
.demo-screen::after {
  display: none !important;
}

.demo-screen .line-card,
.demo-screen .phone-top i,
.demo-screen .line-card__header::after {
  animation: none !important;
}

.motion-ready .demo-screen:not(.is-inview) .line-card {
  clip-path: inset(0 100% 0 0);
}

.motion-ready .demo-screen.is-inview .line-card {
  animation: rk-notice-arrive .72s var(--rk-ease) both !important;
}

.motion-ready .demo-screen.is-inview .phone-top i {
  animation: rk-notice-ring .78s var(--rk-ease) 2 !important;
}

.voice-demo {
  border-radius: 4px;
}

.use-grid {
  gap: 12px;
}

.use-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 4px;
}

.use-card::after {
  position: absolute;
  right: -18px;
  bottom: -34px;
  color: rgba(23, 25, 29, .045);
  content: attr(data-step);
  font-size: 130px;
  font-weight: 900;
  line-height: 1;
}

.price-wrap {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 24px 55px rgba(66, 48, 34, .1);
}

.price-main {
  position: relative;
  overflow: hidden;
  background: var(--rk-paper-warm);
}

.price-main::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 26px solid rgba(184, 63, 46, .08);
  border-radius: 50%;
  content: "";
}

.price-number {
  position: relative;
  z-index: 1;
}

.faq-grid {
  width: min(100%, 920px);
  grid-template-columns: 1fr;
  gap: 10px;
}

details {
  border-radius: 4px;
}

summary {
  position: relative;
  padding-right: 38px;
  list-style: none;
}

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

summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--rk-line);
  border-radius: 50%;
  content: "+";
  font-size: 17px;
  font-weight: 500;
  transform: translateY(-50%) rotate(0);
  transition: transform .25s var(--rk-ease), color .2s ease, border-color .2s ease;
}

details[open] summary::after {
  color: var(--rk-signal);
  border-color: var(--rk-signal);
  transform: translateY(-50%) rotate(45deg);
}

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #172023;
}

.cta::before {
  position: absolute;
  z-index: -1;
  top: -110px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 42px rgba(255, 255, 255, .025), 0 0 0 84px rgba(255, 255, 255, .018);
}

.cta .eyebrow {
  color: #f39a84;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
}

.cta-demo-link {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 4px;
}

@keyframes journey-panel-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes journey-ring {
  0% { opacity: .8; transform: scale(.72); }
  100% { opacity: 0; transform: scale(1.35); }
}

@keyframes journey-listen {
  to { transform: scaleY(.42); opacity: .55; }
}

@keyframes journey-card-arrive {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0); }
}

@keyframes journey-decision {
  from { opacity: 0; transform: scale(.74); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes rk-copy-wipe {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0); }
}

@keyframes rk-line-draw {
  to { transform: scaleY(1); }
}

@keyframes rk-log-line {
  to { transform: scaleY(1); }
}

@keyframes rk-log-step {
  to { color: var(--rk-ink); }
}

@keyframes rk-log-node {
  to { background: var(--rk-signal-bright); box-shadow: 0 0 0 1px var(--rk-signal-bright); }
}

@keyframes rk-handoff {
  0%, 100% { opacity: .55; transform: translateX(-4px); }
  50% { opacity: 1; transform: translateX(4px); }
}

@keyframes rk-notice-arrive {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0); }
}

@keyframes rk-notice-ring {
  0% { box-shadow: 0 0 0 0 rgba(184, 63, 46, .45); }
  100% { box-shadow: 0 0 0 12px rgba(184, 63, 46, 0); }
}

@media (max-width: 1040px) {
  .hero-upgrade-grid,
  .positioning-grid,
  .service-story,
  #service .service-story,
  .flow-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy--upgrade {
    max-width: 720px;
  }

  .call-journey,
  .reception-log,
  .decision-board {
    width: min(100%, 760px);
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header .nav {
    min-height: 64px;
  }

  .hero--product-story {
    padding: 25px 0 32px;
    background-size: 28px 28px;
  }

  .hero--product-story::before {
    top: 46%;
    width: 86%;
    clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
  }

  .hero--product-story::after {
    display: none;
  }

  .hero-upgrade-grid {
    gap: 18px;
  }

  .hero-copy--upgrade .hero-kicker {
    margin-bottom: 13px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .hero-copy--upgrade h1 {
    max-width: none;
    margin-bottom: 13px;
    font-size: clamp(34px, 9.6vw, 39px);
    letter-spacing: -.062em;
    line-height: 1.02;
  }

  .hero-copy--upgrade .lead {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.62;
  }

  .hero-actions--editorial {
    align-items: stretch;
  }

  .hero-actions--editorial .button {
    min-height: 48px;
    padding-block: 12px;
    font-size: 14px;
  }

  .hero-secondary-action {
    display: none;
  }

  .hero-assurance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 8px;
    margin-top: 11px;
    font-size: 10px;
  }

  .hero-assurance li { gap: 5px; }
  .hero-assurance li::before { width: 6px; height: 6px; border-width: 1px; }

  .call-journey {
    border-radius: 0;
  }

  .call-journey::before { inset: 48px -18px -12px 4%; }

  .journey-mast {
    min-height: 42px;
    padding: 7px 10px;
  }

  .journey-mast strong {
    font-size: 10px;
  }

  .journey-mast small { font-size: 8px; }
  .journey-live-dot { width: 8px; height: 8px; }

  .journey-replay {
    min-width: 36px;
    min-height: 32px;
    padding: 5px 8px;
  }

  .journey-replay__label {
    display: inline;
  }

  .journey-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 0 6px;
    background: transparent;
  }

  .journey-tabs::before,
  .journey-tabs::after {
    display: none;
  }

  .journey-tabs button {
    min-height: 42px;
    justify-items: center;
    padding: 5px 2px;
    border-right: 1px solid rgba(23, 25, 29, .1);
    background: transparent;
    font-size: 9px;
    text-align: center;
  }

  .journey-tabs button:last-child { border-right: 0; }
  .journey-tabs button span { font-size: 7px; }

  .journey-tabs button[aria-selected="true"] {
    background: rgba(255, 253, 248, .4);
    box-shadow: inset 0 -3px 0 var(--rk-signal-bright);
  }

  .journey-viewport,
  .journey-panel {
    min-height: 196px;
  }

  .journey-panel {
    padding: 15px 16px;
  }

  #journey-panel-0 .journey-panel-copy,
  #journey-panel-3 .journey-panel-copy {
    padding: 12px 13px;
    border-radius: 12px;
  }

  #journey-panel-0,
  #journey-panel-3 {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
  }

  #journey-panel-1 { grid-template-columns: minmax(0, 1fr) 96px; gap: 13px; }
  #journey-panel-2 { grid-template-columns: minmax(0, 1fr); gap: 0; }

  .journey-phone-ring,
  .journey-decision-mark {
    width: 58px;
    height: 58px;
  }

  .journey-phone-ring > span {
    font-size: 23px;
  }

  .journey-status {
    top: 10px;
    right: 10px;
    padding: 4px 6px;
    font-size: 8px;
  }

  .journey-panel-copy h2 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .journey-panel-copy small,
  .journey-listen small,
  .journey-line-body small { margin-bottom: 5px; font-size: 8px; }

  .journey-panel-copy p { font-size: 10px; line-height: 1.55; }

  .journey-wave {
    height: 36px;
    gap: 4px;
    margin-bottom: 8px;
    padding: 0 9px;
  }

  .journey-wave i { width: 3px; height: 12px; }
  .journey-wave i:nth-child(2),
  .journey-wave i:nth-child(6) { height: 23px; }
  .journey-wave i:nth-child(3),
  .journey-wave i:nth-child(5) { height: 30px; }
  .journey-wave i:nth-child(4) { height: 18px; }

  .journey-listen blockquote {
    font-size: 12px;
    line-height: 1.5;
  }

  .journey-facts {
    width: 100%;
  }

  .journey-facts > div { gap: 8px; padding: 7px 1px; }
  .journey-facts dt { font-size: 8px; }
  .journey-facts dd { font-size: 10px; }

  .journey-line-card {
    width: 100%;
    border-radius: 9px;
  }

  .journey-line-head { padding: 6px 9px; font-size: 8px; }
  .journey-line-body { padding: 8px 10px; }
  .journey-line-body h2 { margin-bottom: 7px; font-size: 16px; }
  .journey-line-body dl > div { grid-template-columns: 55px 1fr; padding: 4px 0; font-size: 9px; }

  .journey-delivery {
    display: none;
  }

  .journey-decision-mark span { font-size: 10px; }
  .journey-boundary { gap: 4px; margin-top: 8px; }
  .journey-boundary span,
  .journey-boundary strong { padding: 4px 5px; font-size: 8px; }

  .journey-foot {
    min-height: 32px;
    padding: 5px 10px;
  }

  .journey-foot > span {
    display: none;
  }

  .journey-foot strong { font-size: 9px; }

  .proof-grid {
    width: calc(100% - 24px) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof {
    padding: 16px 7px;
    border-right: 1px solid rgba(255, 255, 255, .13) !important;
    border-bottom: 0 !important;
  }

  .proof strong {
    font-size: 13px;
  }

  .proof span {
    font-size: 9px;
    line-height: 1.45;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading {
    padding-left: 18px;
  }

  .positioning-grid,
  .service-story,
  #service .service-story,
  .flow-layout {
    gap: 38px;
  }

  .positioning-card {
    padding: 30px 24px;
  }

  .service-pressure__head { min-height: 54px; padding: 10px 14px; }
  .service-pressure__head strong { display: none; }
  .service-pressure__body { grid-template-columns: 1fr; gap: 14px; padding: 15px; }
  .service-pressure__tasks li { grid-template-columns: 48px minmax(0, 1fr) auto; gap: 9px; min-height: 54px; padding: 9px 10px; }
  .service-pressure__tasks strong { font-size: 11px; }
  .service-pressure__tasks span,
  .service-pressure__tasks i { font-size: 8px; }
  .service-pressure__call { grid-template-columns: 58px minmax(0, 1fr); gap: 13px; min-height: 140px; padding: 21px 17px; }
  .service-pressure__call-icon { width: 54px; height: 54px; font-size: 22px; }
  .service-pressure__call strong { font-size: 20px; }
  .service-pressure figcaption { padding: 11px 14px; font-size: 10px; }

  #problems .wall-grid {
    gap: 9px;
  }

  #problems .wall-card,
  #problems .wall-card:nth-child(1),
  #problems .wall-card:nth-child(2),
  #problems .wall-card:nth-child(3) {
    min-height: 0;
    padding: 24px 22px;
  }

  .service-section::before {
    right: -80%;
    width: 130vw;
    height: 130vw;
  }

  .reception-log__head,
  .reception-log__foot {
    padding: 13px 14px;
  }

  .reception-log__list {
    padding: 22px 14px 10px;
  }

  .reception-log__list::before,
  .reception-log__list::after {
    left: 83px;
  }

  .reception-log__list li {
    grid-template-columns: 52px 14px minmax(0, 1fr);
    gap: 10px;
    min-height: 82px;
  }

  .decision-board {
    grid-template-columns: 1fr;
    padding-bottom: 74px;
  }

  .decision-board > section {
    min-height: 0;
    padding: 28px 24px;
  }

  .decision-handoff {
    grid-auto-flow: column;
    min-height: 56px;
    margin: -1px 0;
  }

  .decision-handoff span {
    writing-mode: horizontal-tb;
  }

  .decision-handoff i {
    transform: rotate(90deg);
  }

  .motion-ready .decision-board.is-inview .decision-handoff i {
    animation: none;
  }

  .decision-note {
    right: 24px;
    bottom: 20px;
    left: 24px;
  }

  .field-tested-grid {
    gap: 12px;
  }

  .setup-console__head { min-height: 62px; padding: 11px 13px; }
  .setup-console__list { padding: 6px 13px; }
  .setup-console__list li { grid-template-columns: 31px minmax(0, 1fr); gap: 10px; min-height: 78px; }
  .setup-console__list li > i { grid-column: 2; justify-self: start; margin-top: -7px; }
  .setup-console__foot { align-items: flex-start; flex-direction: column; gap: 4px; padding: 10px 13px; }

  .use-card {
    min-height: 0;
  }

  .cta-actions { align-items: stretch; flex-direction: column; }
  .cta-demo-link { padding: 8px; text-align: center; }
}

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

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

  .motion-ready .hero-copy--upgrade .hero-kicker,
  .motion-ready .hero-copy--upgrade h1 span,
  .motion-ready .hero-copy--upgrade .lead,
  .motion-ready .hero-copy--upgrade .hero-actions,
  .motion-ready .hero-copy--upgrade .hero-assurance,
  .motion-ready .demo-screen:not(.is-inview) .line-card {
    clip-path: none;
  }

  .reception-log__list li {
    color: var(--rk-ink);
  }

  .reception-log__list::after,
  .section-heading::before,
  #problems .wall-card::before {
    transform: none;
  }
}


.audience-visual {
  position: relative;
  min-width: 0;
  min-height: 520px;
  margin: 0;
}

.audience-visual::before {
  position: absolute;
  z-index: 0;
  inset: 40px 3% 18px 0;
  background: #eee0ca;
  content: "";
  clip-path: polygon(0 0, 87% 0, 100% 16%, 100% 100%, 13% 100%, 0 83%);
}

.audience-visual__eyebrow {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  margin: 0;
}

.audience-visual img {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 92%;
  height: 88%;
  object-fit: cover;
  object-position: center;
  clip-path: inset(0 round 0 92px 0 92px);
}

.audience-visual__ai {
  position: absolute;
  z-index: 3;
  top: 38%;
  left: 39%;
  display: grid;
  width: 92px;
  height: 92px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  background: rgba(31, 98, 99, .94);
  box-shadow: 0 18px 38px rgba(25, 56, 56, .22), 0 0 0 10px rgba(255, 253, 248, .4);
  color: #fff;
  text-align: center;
}

.audience-visual__ai span,
.audience-visual__ai small {
  display: block;
}

.audience-visual__ai span {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}

.audience-visual__ai small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .75);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
}

.audience-visual figcaption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 22px;
  width: min(370px, 76%);
  padding: 18px 21px;
  border-left: 4px solid var(--rk-signal-bright);
  background: rgba(255, 253, 248, .95);
  box-shadow: 0 20px 44px rgba(56, 37, 25, .16);
}

.audience-visual figcaption strong,
.audience-visual figcaption span {
  display: block;
}

.audience-visual figcaption strong {
  margin-bottom: 4px;
  color: var(--rk-ink);
  font-size: clamp(17px, 1.7vw, 23px);
  letter-spacing: -.035em;
  line-height: 1.45;
}

.audience-visual figcaption span {
  color: var(--rk-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.65;
}

.motion-ready .audience-visual:not(.is-inview) .audience-visual__ai {
  opacity: 0;
  transform: scale(.82);
}

.motion-ready .audience-visual.is-inview .audience-visual__ai {
  transition: opacity .55s .45s ease, transform .55s .45s var(--rk-ease);
}

@media (max-width: 1040px) {
  .audience-visual {
    min-height: 560px;
  }
}

@media (max-width: 680px) {
  .audience-visual {
    min-height: 410px;
    margin-right: -16px;
  }

  .audience-visual::before {
    inset: 34px 0 18px 9%;
  }

  .audience-visual img {
    width: 100%;
    height: 365px;
    clip-path: inset(0 round 0 62px 0 62px);
  }

  .audience-visual__ai {
    top: 37%;
    left: 35%;
    width: 72px;
    height: 72px;
    box-shadow: 0 14px 30px rgba(25, 56, 56, .2), 0 0 0 7px rgba(255, 253, 248, .4);
  }

  .audience-visual__ai span {
    font-size: 20px;
  }

  .audience-visual__ai small {
    font-size: 8px;
  }

  .audience-visual figcaption {
    right: 0;
    bottom: 13px;
    width: min(305px, 88%);
    padding: 14px 16px;
  }

  .audience-visual figcaption strong {
    font-size: 16px;
  }

  .audience-visual figcaption span {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .audience-visual:not(.is-inview) .audience-visual__ai {
    opacity: 1;
    transform: none;
  }
}


.hero--product-story {
  min-height: 660px;
  overflow: hidden;
  padding: 58px 0 62px;
}

.hero-upgrade-grid {
  grid-template-columns: minmax(430px, .78fr) minmax(620px, 1.22fr);
  gap: clamp(14px, 2vw, 30px);
}

.call-story {
  position: relative;
  min-width: 0;
  min-height: 535px;
  margin: 0 -72px 0 -20px;
  isolation: isolate;
}

.call-story::before {
  position: absolute;
  z-index: -3;
  top: 7%;
  right: 2%;
  width: 76%;
  height: 82%;
  border-radius: 48% 52% 42% 58%;
  background: rgba(255, 249, 240, .34);
  content: "";
  transform: rotate(-4deg);
}

.call-story__restaurant {
  position: absolute;
  z-index: -2;
  right: -70px;
  bottom: -16px;
  display: block;
  width: auto;
  max-width: none;
  height: 548px;
  object-fit: contain;
  object-position: right center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 15%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 15%, #000 100%);
}

.call-story > figcaption {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.story-step {
  position: absolute;
  z-index: 2;
  box-sizing: border-box;
}

.story-step small,
.story-step strong {
  display: block;
}

.story-step small {
  color: #66706b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

.story-step strong {
  color: var(--rk-ink);
  font-size: 14px;
  letter-spacing: -.02em;
  line-height: 1.4;
}

.story-step__number {
  color: var(--rk-signal-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.story-step--phone {
  top: 266px;
  right: 74px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-width: 235px;
  padding: 10px 14px 10px 11px;
  border-radius: 999px;
  background: rgba(23, 25, 29, .92);
  box-shadow: 0 14px 34px rgba(23, 18, 14, .2);
  backdrop-filter: blur(8px);
}

.story-step--phone small {
  color: rgba(255, 255, 255, .62);
}

.story-step--phone strong {
  color: #fff;
  font-size: 12px;
}

.story-phone-icon {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--rk-signal-bright);
  color: #fff;
  font-size: 16px;
  transform: rotate(-12deg);
}

.story-phone-icon i {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(246, 94, 70, .65);
  border-radius: 50%;
  opacity: 0;
}

.story-step--notice {
  top: 28px;
  left: 3px;
  width: 238px;
  overflow: hidden;
  border: 1px solid rgba(45, 101, 71, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 24px 58px rgba(44, 54, 45, .17);
  transform: rotate(-1.4deg);
}

.story-notice__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 13px;
  background: #315f48;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.story-notice__head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.story-notice__head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8ad0a4;
  box-shadow: 0 0 0 4px rgba(138, 208, 164, .16);
}

.story-notice__body {
  padding: 13px 15px 14px;
}

.story-notice__body small {
  margin-bottom: 3px;
  font-size: 9px;
}

.story-notice__body > strong {
  margin-bottom: 9px;
  color: #315f48;
  font-size: 17px;
}

.story-notice__body dl {
  margin: 0;
}

.story-notice__body dl > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px;
  padding: 5px 0;
  border-top: 1px solid #e2e7e2;
  font-size: 10px;
}

.story-notice__body dt {
  color: #747d78;
}

.story-notice__body dd {
  margin: 0;
  color: var(--rk-ink);
  font-weight: 900;
}

.story-notice__body p {
  margin: 9px 0 0;
  color: #9a4d3d;
  font-size: 9px;
  font-weight: 800;
}

.story-step--intent {
  top: 268px;
  left: 8px;
  width: 207px;
  padding: 15px 16px 16px;
  border-left: 3px solid var(--rk-signal-bright);
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 18px 42px rgba(67, 44, 30, .13);
  transform: rotate(1.6deg);
}

.story-step--intent > small {
  margin: -13px 0 4px 27px;
}

.story-step--intent > strong {
  margin-bottom: 10px;
  font-size: 16px;
}

.story-intent-options {
  display: flex;
  gap: 6px;
}

.story-intent-options span {
  padding: 5px 8px;
  border: 1px solid rgba(23, 25, 29, .13);
  border-radius: 999px;
  color: #77736f;
  font-size: 10px;
  font-weight: 800;
}

.story-intent-options .is-current {
  border-color: var(--rk-teal);
  background: var(--rk-teal);
  color: #fff;
}

.story-step--actions {
  right: 4px;
  bottom: 16px;
  width: 378px;
  padding: 14px 16px 15px;
  border: 1px solid rgba(23, 25, 29, .1);
  border-radius: 14px;
  background: rgba(255, 253, 248, .95);
  box-shadow: 0 22px 54px rgba(67, 44, 30, .18);
  transform: rotate(-.7deg);
}

.story-actions__title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

.story-actions__title small {
  font-size: 9px;
}

.story-actions__title strong {
  font-size: 16px;
}

.story-actions__choices {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 11px;
}

.story-actions__choices p {
  padding: 8px 9px;
  margin: 0;
  border-radius: 8px;
  background: #eef4f0;
}

.story-actions__choices p:last-child {
  background: #f7eee7;
}

.story-actions__choices small {
  font-size: 8px;
}

.story-actions__choices strong {
  font-size: 11px;
}

.story-actions__choices > i {
  display: block;
  width: 1px;
  height: 29px;
  background: rgba(23, 25, 29, .13);
}

.motion-ready .hero--product-story:not(.is-inview) .story-step {
  opacity: 0;
}

.motion-ready .hero--product-story.is-inview .story-step--phone {
  animation: story-step-pop .62s .45s var(--rk-ease) both;
}

.motion-ready .hero--product-story.is-inview .story-step--notice {
  animation: story-notice-arrive .72s 1.35s var(--rk-ease) both;
}

.motion-ready .hero--product-story.is-inview .story-step--intent {
  animation: story-step-pop .62s 2.55s var(--rk-ease) both;
}

.motion-ready .hero--product-story.is-inview .story-step--actions {
  animation: story-action-arrive .72s 3.75s var(--rk-ease) both;
}

.motion-ready .hero--product-story.is-inview .story-phone-icon i {
  animation: story-phone-ring 1.05s .45s ease-out 3;
}

.motion-ready .hero--product-story.is-inview .story-phone-icon i:nth-child(2) {
  animation-delay: .72s;
}

@keyframes story-step-pop {
  from { opacity: 0; transform: translateY(13px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes story-notice-arrive {
  from { opacity: 0; transform: translate3d(-18px, 13px, 0) rotate(-3deg); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(-1.4deg); }
}

@keyframes story-action-arrive {
  from { opacity: 0; transform: translate3d(14px, 16px, 0) rotate(1deg); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(-.7deg); }
}

@keyframes story-phone-ring {
  0% { opacity: .8; transform: scale(.72); }
  85%, 100% { opacity: 0; transform: scale(1.38); }
}

.editorial-photo {
  position: relative;
  min-height: 520px;
  margin: 48px 0 36px;
}

.editorial-photo img {
  display: block;
  width: 84%;
  height: 520px;
  margin-left: auto;
  object-fit: cover;
  object-position: 78% center;
  clip-path: inset(0 round 0 118px 0 118px);
}

.editorial-photo figcaption {
  position: absolute;
  bottom: 44px;
  left: 0;
  width: min(390px, 48%);
  padding: 21px 23px;
  border-left: 4px solid var(--rk-signal-bright);
  background: rgba(255, 253, 248, .95);
  box-shadow: 0 22px 48px rgba(56, 37, 25, .16);
}

.editorial-photo figcaption small,
.editorial-photo figcaption strong {
  display: block;
}

.editorial-photo figcaption small {
  margin-bottom: 7px;
  color: var(--rk-signal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.editorial-photo figcaption strong {
  color: var(--rk-ink);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -.035em;
  line-height: 1.45;
}

.motion-ready [data-image-reveal]:not(.is-inview) img {
  clip-path: inset(0 100% 0 0);
}

.motion-ready [data-image-reveal].is-inview img {
  animation: editorial-image-reveal .9s var(--rk-ease) both;
}

.motion-ready [data-image-reveal]:not(.is-inview) figcaption {
  opacity: 0;
  transform: translateY(14px);
}

.motion-ready [data-image-reveal].is-inview figcaption {
  transition: opacity .55s .45s ease, transform .55s .45s var(--rk-ease);
}

@keyframes editorial-image-reveal {
  from { clip-path: inset(0 100% 0 0 round 0 118px 0 118px); }
  to { clip-path: inset(0 round 0 118px 0 118px); }
}

.flow-free {
  position: relative;
  min-width: 0;
  padding-bottom: 8px;
}

.flow-free__image {
  position: relative;
  min-height: 390px;
  margin: -38px -80px 0 -28px;
}

.flow-free__image img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: 76% center;
  clip-path: inset(0 round 96px 0 96px 0);
}

.flow-free__image figcaption {
  position: absolute;
  right: 10px;
  bottom: 26px;
  max-width: 320px;
  padding: 11px 14px;
  background: rgba(23, 25, 29, .9);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
}

.role-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .84fr) auto minmax(0, 1.16fr);
  align-items: center;
  gap: 14px;
  width: calc(100% - 28px);
  padding: 15px 17px;
  margin: -34px 0 0 28px;
  background: rgba(255, 253, 248, .97);
  box-shadow: 0 19px 42px rgba(47, 31, 23, .13);
}

.role-strip p {
  margin: 0;
}

.role-strip span,
.role-strip strong {
  display: block;
}

.role-strip span {
  margin-bottom: 3px;
  color: var(--rk-teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.role-strip strong {
  color: var(--rk-ink);
  font-size: 12px;
  line-height: 1.45;
}

.role-strip > i {
  color: var(--rk-signal-bright);
  font-size: 21px;
  font-style: normal;
}

.role-boundary-note {
  max-width: 520px;
  margin: 21px 0 0 28px;
  color: var(--rk-muted);
  font-size: 12px;
  line-height: 1.8;
}

.role-boundary-note strong {
  color: var(--rk-ink);
}

.editorial-photo--review {
  min-height: 580px;
  margin: 0;
}

.editorial-photo--review img {
  width: calc(100% + 56px);
  height: 580px;
  margin-left: -56px;
  object-position: 76% center;
  clip-path: inset(0 round 0 118px 0 118px);
}

.editorial-photo--review figcaption {
  right: -12px;
  bottom: 34px;
  left: auto;
  width: min(360px, 78%);
  border-left-color: var(--rk-teal);
}

@media (max-width: 1040px) {
  .hero--product-story {
    min-height: 0;
  }

  .hero-upgrade-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .call-story {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .flow-free__image {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .hero--product-story {
    padding: 18px 0 12px;
  }

  .hero--product-story::before {
    top: 50%;
    width: 91%;
  }

  .hero-upgrade-grid {
    gap: 0;
  }

  .hero-copy--upgrade .hero-kicker {
    margin-bottom: 10px;
  }

  .hero-copy--upgrade h1 {
    margin-bottom: 9px;
    font-size: clamp(33px, 9vw, 36px);
  }

  .hero-copy--upgrade .lead {
    margin-bottom: 11px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-actions--editorial .button {
    min-height: 44px;
    padding-block: 10px;
  }

  .hero-assurance {
    margin-top: 7px;
  }

  .call-story {
    display: grid;
    grid-template-columns: minmax(0, 1.64fr) minmax(108px, 1fr);
    min-height: 0;
    margin: 0;
    padding-top: clamp(220px, 59vw, 230px);
    gap: 8px;
  }

  .call-story::before {
    display: none;
  }

  .call-story__restaurant {
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 0;
    width: 100%;
    height: clamp(250px, 67vw, 262px);
    object-fit: cover;
    object-position: center 56%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .story-step small {
    font-size: 10px;
  }

  .story-step strong {
    font-size: 13px;
  }

  .story-step--phone {
    top: 12px;
    right: auto;
    left: 0;
    grid-template-columns: auto auto auto;
    gap: 7px;
    min-width: 0;
    padding: 8px 10px;
  }

  .story-step--phone > span:last-child strong {
    display: none;
  }

  .story-step--phone > span:last-child small {
    color: #fff;
    font-size: 10px;
  }

  .story-phone-icon {
    width: 29px;
    height: 29px;
    font-size: 14px;
  }

  .story-step--notice {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1;
    grid-row: 1;
    width: auto;
    min-width: 0;
    margin-top: -42px;
    border-radius: 14px;
  }

  .story-notice__head {
    padding: 8px 10px;
    font-size: 9px;
  }

  .story-notice__body {
    padding: 10px 12px 11px;
  }

  .story-notice__body > strong {
    margin-bottom: 6px;
    font-size: 15px;
  }

  .story-notice__body dl > div {
    padding: 3px 0;
    font-size: 9px;
  }

  .story-notice__body p {
    margin-top: 6px;
    font-size: 8px;
  }

  .story-step--intent {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    width: auto;
    min-width: 0;
    margin-top: -42px;
    padding: 12px 9px 13px;
  }

  .story-step--intent > small {
    margin: -11px 0 4px 25px;
    font-size: 9px;
  }

  .story-step--intent > strong {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .story-intent-options {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .story-intent-options span {
    padding: 4px 6px;
    font-size: 8px;
  }

  .story-step--actions {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 9px;
    width: auto;
    min-width: 0;
    margin: 0 7px;
    padding: 10px 11px;
  }

  .story-actions__title {
    margin-bottom: 0;
  }

  .story-actions__title strong {
    font-size: 13px;
  }

  .story-actions__choices {
    gap: 5px;
  }

  .story-actions__choices p {
    padding: 6px;
  }

  .story-actions__choices strong {
    font-size: 9px;
  }

  .editorial-photo,
  .editorial-photo--review {
    min-height: 430px;
    margin: 32px -16px 28px 0;
  }

  .editorial-photo img,
  .editorial-photo--review img {
    width: calc(100% - 24px);
    height: 410px;
    margin-left: auto;
    object-position: 82% center;
    clip-path: inset(0 round 0 70px 0 70px);
  }

  .editorial-photo figcaption,
  .editorial-photo--review figcaption {
    right: auto;
    bottom: 18px;
    left: 0;
    width: min(292px, 82%);
    padding: 15px 17px;
  }

  .editorial-photo figcaption strong {
    font-size: 17px;
  }

  .flow-free {
    margin-top: -8px;
  }

  .flow-free__image {
    min-height: 355px;
    margin: 0 -16px 0 0;
  }

  .flow-free__image img {
    width: calc(100% - 4px);
    height: 365px;
    margin-left: auto;
    object-position: 76% center;
    clip-path: inset(0 round 70px 0 70px 0);
  }

  .flow-free__image figcaption {
    right: 0;
    bottom: 18px;
    max-width: 260px;
    padding: 9px 11px;
    font-size: 10px;
  }

  .role-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    width: calc(100% - 12px);
    padding: 13px 15px;
    margin: -20px 0 0 12px;
  }

  .role-strip > i {
    display: none;
  }

  .role-strip p + p {
    padding-top: 8px;
    border-top: 1px solid rgba(23, 25, 29, .1);
  }

  .role-boundary-note {
    margin: 17px 0 0 12px;
    font-size: 11px;
  }

  .field-tested-grid {
    gap: 22px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .hero--product-story:not(.is-inview) .story-step,
  .motion-ready [data-image-reveal]:not(.is-inview) figcaption {
    opacity: 1;
    transform: none;
  }

  .motion-ready [data-image-reveal]:not(.is-inview) img {
    clip-path: none;
  }
}

@media (max-width: 380px) {
  .call-story {
    padding-top: 220px;
  }

  .call-story__restaurant {
    height: 250px;
  }

  .story-step--phone {
    top: 12px;
  }
}


.problem-cues {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rk-line);
  border-bottom: 1px solid var(--rk-line);
  list-style: none;
}

.problem-cues li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: center;
  gap: 2px 12px;
  min-height: 112px;
  padding: 20px 25px;
}

.problem-cues li + li {
  border-left: 1px solid var(--rk-line);
}

.problem-cues span {
  grid-row: 1 / 3;
  color: var(--rk-signal-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.problem-cues small {
  color: var(--rk-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.problem-cues strong {
  color: var(--rk-ink);
  font-size: 14px;
  line-height: 1.5;
}

.setup-visual {
  display: grid;
  min-height: 580px;
  align-content: center;
  gap: 28px;
  padding: 38px 0 38px 18px;
}

.setup-visual__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.setup-visual__list li {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 19px 0;
}

.setup-visual__list li + li {
  border-top: 1px solid rgba(23, 25, 29, .14);
}

.setup-visual__list li > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(31, 98, 99, .35);
  border-radius: 50%;
  color: var(--rk-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.setup-visual__list small,
.setup-visual__list strong {
  display: block;
}

.setup-visual__list small {
  margin-bottom: 5px;
  color: var(--rk-signal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
}

.setup-visual__list strong {
  color: var(--rk-ink);
  font-size: clamp(18px, 1.8vw, 23px);
  letter-spacing: -.035em;
  line-height: 1.4;
}

.setup-visual__boundary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 18px;
  margin: 0;
  border-radius: 999px;
  background: var(--rk-ink);
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  font-weight: 800;
}

.setup-visual__boundary span {
  color: #fff;
  font-weight: 900;
}

.setup-visual__boundary i {
  color: var(--rk-signal-bright);
  font-size: 18px;
  font-style: normal;
}

.motion-ready .problem-cues:not(.is-inview) li,
.motion-ready .setup-visual:not(.is-inview) li,
.motion-ready .setup-visual:not(.is-inview) .setup-visual__boundary {
  opacity: 0;
  transform: translateY(12px);
}

.motion-ready .problem-cues.is-inview li,
.motion-ready .setup-visual.is-inview li,
.motion-ready .setup-visual.is-inview .setup-visual__boundary {
  transition: opacity .55s var(--rk-ease), transform .55s var(--rk-ease);
}

.motion-ready .problem-cues.is-inview li:nth-child(2),
.motion-ready .setup-visual.is-inview li:nth-child(2) { transition-delay: .1s; }

.motion-ready .problem-cues.is-inview li:nth-child(3),
.motion-ready .setup-visual.is-inview li:nth-child(3) { transition-delay: .2s; }

.motion-ready .setup-visual.is-inview .setup-visual__boundary { transition-delay: .3s; }

@media (max-width: 680px) {
  .problem-cues {
    grid-template-columns: 1fr;
  }

  .problem-cues li {
    grid-template-columns: 31px 58px minmax(0, 1fr);
    gap: 8px;
    min-height: 64px;
    padding: 11px 7px;
  }

  .problem-cues li + li {
    border-top: 1px solid var(--rk-line);
    border-left: 0;
  }

  .problem-cues span {
    grid-row: auto;
  }

  .problem-cues small {
    font-size: 9px;
  }

  .problem-cues strong {
    font-size: 11px;
  }

  .setup-visual {
    min-height: 0;
    gap: 17px;
    padding: 2px 0 0;
  }

  .setup-visual__list li {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 13px;
    min-height: 86px;
    padding: 12px 0;
  }

  .setup-visual__list li > span {
    width: 43px;
    height: 43px;
    font-size: 10px;
  }

  .setup-visual__list small {
    margin-bottom: 3px;
    font-size: 9px;
  }

  .setup-visual__list strong {
    font-size: 15px;
  }

  .setup-visual__boundary {
    flex-wrap: wrap;
    gap: 4px 7px;
    padding: 12px 13px;
    border-radius: 12px;
    font-size: 9px;
    text-align: center;
  }

  .setup-visual__boundary i {
    font-size: 14px;
  }
}


.hero-price-lockup {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: 8px 15px;
  max-width: 520px;
  padding: 10px 0 11px;
  margin: -3px 0 18px;
  border-top: 1px solid rgba(23, 25, 29, .2);
  border-bottom: 1px solid rgba(23, 25, 29, .2);
}

.hero-price-lockup__label {
  color: var(--rk-signal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.hero-price-lockup p {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0;
  color: var(--rk-ink);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.hero-price-lockup strong {
  color: var(--rk-teal);
  font-size: clamp(34px, 3.3vw, 44px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.055em;
  line-height: .9;
}

.hero-price-lockup small {
  color: var(--rk-muted);
  font-size: 10px;
  font-weight: 700;
}

.hero-price-lockup__scope {
  justify-self: start;
  padding-left: 14px;
  border-left: 1px solid rgba(23, 25, 29, .18);
  color: var(--rk-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

.motion-ready .hero-copy--upgrade .hero-price-lockup {
  clip-path: inset(0 100% 0 0);
}

.motion-ready .hero--product-story.is-inview .hero-copy--upgrade .hero-price-lockup {
  animation: rk-copy-wipe .72s .33s var(--rk-ease) both;
}

.motion-ready .hero--product-story.is-inview .hero-copy--upgrade .hero-actions {
  animation-delay: .42s;
}


.start-path {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
  padding: 38px 0 8px;
  margin-top: 58px;
  border-top: 1px solid var(--rk-line);
}

.start-path__heading .eyebrow {
  margin: 0 0 9px;
}

.start-path__heading h3 {
  margin: 0;
  color: var(--rk-ink);
  font-size: clamp(21px, 2.1vw, 29px);
  letter-spacing: -.045em;
  line-height: 1.45;
}

.start-path ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.start-path li {
  position: relative;
  min-width: 0;
  padding: 4px 18px 4px 0;
}

.start-path li:not(:last-child)::after {
  position: absolute;
  top: 11px;
  right: 7px;
  width: 16px;
  height: 1px;
  background: var(--rk-signal-bright);
  content: "";
}

.start-path li > span,
.start-path li > strong,
.start-path li > small {
  display: block;
}

.start-path li > span {
  margin-bottom: 15px;
  color: var(--rk-signal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.start-path li > strong {
  margin-bottom: 6px;
  color: var(--rk-ink);
  font-size: 13px;
  line-height: 1.45;
}

.start-path li > small {
  color: var(--rk-muted);
  font-size: 10px;
  line-height: 1.65;
}


.case-study {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--rk-ink);
  color: #fff;
}

.case-study::before {
  position: absolute;
  z-index: -1;
  top: -118px;
  right: -60px;
  color: rgba(255, 255, 255, .035);
  content: "01";
  font-size: min(35vw, 470px);
  font-weight: 900;
  letter-spacing: -.11em;
  line-height: 1;
}

.case-study::after {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: -94px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 38px rgba(255, 255, 255, .025), 0 0 0 76px rgba(255, 255, 255, .018);
}

.case-study__mast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.case-study .eyebrow {
  margin: 0;
  color: #f07a63;
}

.case-study__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}

.case-study__status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #70b89b;
  box-shadow: 0 0 0 5px rgba(112, 184, 155, .12);
}

.case-study__layout {
  display: grid;
  grid-template-columns: minmax(470px, 1fr) minmax(0, .95fr);
  gap: clamp(48px, 6vw, 78px);
  align-items: start;
  padding: clamp(52px, 6vw, 82px) 0 38px;
}

.case-study__profile {
  margin: 0 0 15px;
  color: #70b89b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
}

.case-study__intro h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -.065em;
  line-height: 1.18;
}

.case-study__intro h2 span {
  display: block;
  white-space: nowrap;
}

.case-study__intro > p:last-child {
  max-width: 485px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.95;
}

.case-study__results {
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  list-style: none;
}

.case-study__results li {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 4px 20px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.case-study__results span {
  grid-row: 1 / 3;
  color: #f07a63;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.case-study__results strong {
  color: #fff;
  font-size: 17px;
  letter-spacing: -.02em;
  line-height: 1.5;
}

.case-study__results p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 11px;
  line-height: 1.75;
}

.case-study__note {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  line-height: 1.7;
}

.motion-ready .start-path:not(.is-inview) li,
.motion-ready .case-study__layout:not(.is-inview) .case-study__intro,
.motion-ready .case-study__layout:not(.is-inview) .case-study__results li {
  opacity: 0;
  transform: translateY(14px);
}

.motion-ready .start-path.is-inview li,
.motion-ready .case-study__layout.is-inview .case-study__intro,
.motion-ready .case-study__layout.is-inview .case-study__results li {
  transition: opacity .62s var(--rk-ease), transform .62s var(--rk-ease);
}

.motion-ready .start-path.is-inview li:nth-child(2),
.motion-ready .case-study__layout.is-inview .case-study__results li:nth-child(1) { transition-delay: .1s; }
.motion-ready .start-path.is-inview li:nth-child(3),
.motion-ready .case-study__layout.is-inview .case-study__results li:nth-child(2) { transition-delay: .18s; }
.motion-ready .start-path.is-inview li:nth-child(4),
.motion-ready .case-study__layout.is-inview .case-study__results li:nth-child(3) { transition-delay: .26s; }

@media (max-width: 1040px) {
  .start-path {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .case-study__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 680px) {
  .hero-price-lockup {
    grid-template-columns: auto auto 1fr;
    gap: 6px 9px;
    padding: 8px 0 9px;
    margin: -1px 0 11px;
  }

  .hero-price-lockup__label {
    font-size: 8px;
  }

  .hero-price-lockup p {
    gap: 3px;
    font-size: 10px;
  }

  .hero-price-lockup strong {
    font-size: 30px;
  }

  .hero-price-lockup small {
    font-size: 8px;
  }

  .hero-price-lockup__scope {
    padding-left: 8px;
    font-size: 9px;
  }

  .start-path {
    gap: 22px;
    padding-top: 30px;
    margin-top: 39px;
  }

  .start-path__heading h3 {
    font-size: 20px;
  }

  .start-path ol {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .start-path li {
    min-height: 108px;
    padding: 15px 14px 15px 0;
    border-top: 1px solid var(--rk-line);
  }

  .start-path li:nth-child(even) {
    padding-right: 0;
    padding-left: 14px;
    border-left: 1px solid var(--rk-line);
  }

  .start-path li:not(:last-child)::after {
    display: none;
  }

  .start-path li > span {
    margin-bottom: 8px;
  }

  .case-study::before {
    top: 10px;
    right: -24px;
    font-size: 180px;
  }

  .case-study__mast {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding-bottom: 18px;
  }

  .case-study__layout {
    gap: 34px;
    padding: 42px 0 27px;
  }

  .case-study__intro h2 {
    margin-bottom: 18px;
    font-size: clamp(32px, 9.4vw, 39px);
  }

  .case-study__intro h2 span {
    white-space: normal;
  }

  .case-study__intro > p:last-child {
    font-size: 13px;
    line-height: 1.85;
  }

  .case-study__results li {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 5px 13px;
    padding: 19px 0;
  }

  .case-study__results span {
    grid-row: 1 / 3;
  }

  .case-study__results strong {
    font-size: 15px;
  }

  .case-study__results p {
    font-size: 10px;
  }

  .case-study__note {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .start-path:not(.is-inview) li,
  .motion-ready .case-study__layout:not(.is-inview) .case-study__intro,
  .motion-ready .case-study__layout:not(.is-inview) .case-study__results li {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 380px) {
  .hero--product-story {
    padding-bottom: 6px;
  }

  .call-story {
    padding-top: 208px;
  }

  .call-story__restaurant {
    height: 238px;
  }
}


@media (min-width: 681px) {
  .call-story__status-stack {
    position: absolute;
    z-index: 2;
    top: 28px;
    left: clamp(60px, 14%, 152px);
    display: grid;
    gap: 26px;
    width: 238px;
  }

  .call-story__status-stack .story-step {
    position: relative;
    inset: auto;
  }

  .call-story__status-stack .story-step--notice {
    width: 238px;
  }

  .call-story__status-stack .story-step--intent {
    width: 207px;
    margin-left: 34px;
  }
}

@media (min-width: 1600px) {
  .hero--product-story .hero-upgrade-grid {
    width: min(1680px, calc(50% + 580px));
    margin-right: 0;
    margin-left: max(24px, calc(50% - 580px));
    grid-template-columns: minmax(470px, 520px) minmax(720px, 1fr);
    gap: clamp(44px, 3vw, 72px);
  }

  .call-story {
    margin-right: 0;
    margin-left: 0;
  }

  .call-story__restaurant {
    right: 0;
  }

  .story-step--phone {
    right: clamp(110px, 7vw, 170px);
  }

  .story-step--actions {
    right: clamp(42px, 4vw, 92px);
  }
}


.audience-visual {
  display: grid;
  min-height: 0;
  grid-template-rows: auto auto auto;
}

.audience-visual::before {
  inset: 40px 3% 76px 0;
}

.audience-visual__eyebrow {
  position: relative;
  top: auto;
  left: auto;
  grid-row: 1;
  justify-self: start;
  margin: 0 0 16px;
}

.audience-visual__media {
  position: relative;
  grid-row: 2;
  min-height: 450px;
}

.audience-visual img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 92%;
  height: 100%;
}

.audience-visual__ai {
  top: 42%;
}

.audience-visual figcaption {
  position: relative;
  right: auto;
  bottom: auto;
  grid-row: 3;
  width: min(430px, 82%);
  padding: 16px 0 0 20px;
  margin: 0 0 0 auto;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 680px) {
  .call-story__status-stack {
    display: contents;
  }

  .call-story {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .story-step--notice {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    border-radius: 14px 14px 0 0;
    transform: none;
  }

  .story-step--intent {
    display: grid;
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: auto minmax(0, 1fr);
    align-self: auto;
    gap: 2px 8px;
    width: 100%;
    margin: 0;
    padding: 10px 12px 11px;
    border-top: 1px solid rgba(23, 25, 29, .09);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 14px 30px rgba(67, 44, 30, .11);
    transform: none;
  }

  .story-step--intent > .story-step__number {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .story-step--intent > small {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
  }

  .story-step--intent > strong {
    grid-column: 1 / 3;
    grid-row: 2;
    margin: 2px 0 0;
  }

  .story-intent-options {
    grid-column: 1 / -1;
    grid-row: 3;
    align-self: start;
    flex-direction: row;
    justify-self: start;
    margin-top: 5px;
  }

  .story-step--actions {
    grid-column: 1;
    grid-row: 3;
    margin-top: 8px;
    transform: none;
  }

  .motion-ready .hero--product-story.is-inview .story-step--notice,
  .motion-ready .hero--product-story.is-inview .story-step--actions {
    animation-name: story-step-pop;
  }

  .audience-visual {
    min-height: 0;
  }

  .audience-visual::before {
    inset: 34px 0 66px 9%;
  }

  .audience-visual__eyebrow {
    margin-right: 16px;
    margin-bottom: 14px;
  }

  .audience-visual img {
    width: 100%;
    height: 100%;
  }

  .audience-visual__media {
    min-height: 365px;
  }

  .audience-visual__ai {
    top: 37%;
  }

  .audience-visual figcaption {
    width: calc(100% - 16px);
    padding: 14px 0 0 16px;
  }
}

.motion-ready .audience-visual[data-image-static] .audience-visual__ai {
  opacity: 1;
  transform: none;
  transition: none;
}

.faq-transfer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.faq-transfer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--rk-teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
