@import url("/polish-foundation.css");

:root {
  --rl-color-cream-100: #FEEAD7;
  --rl-color-cream-200: #FFF0DE;
  --rl-color-orange-500: #F4AB4B;
  --rl-color-teal-900: #0F2D32;
  --rl-color-ink-900: #120C0B;
  --rl-color-white: #FFFFFF;

  --rl-bg-page: var(--rl-color-cream-200);
  --rl-bg-card: var(--rl-color-white);
  --rl-bg-alt: #F9E5CF;
  --rl-border-soft: #EAD9C7;
  --rl-border-strong: #D8BE9F;
  --rl-text-primary: var(--rl-color-ink-900);
  --rl-text-strong: var(--rl-color-teal-900);
  --rl-text-muted: #4C5A5F;
  --rl-text-caption: #314A51;
  --rl-text-caption-soft: #415960;
  --rl-text-caption-inverse: #93AAB1;
  --rl-phone-shell-padding: 0.17rem;
  --rl-phone-shell-padding-roomy: 0.22rem;
  --rl-phone-shell-radius: 1.02rem;
  --rl-phone-shell-inner-radius: 0.86rem;
  --rl-tablet-shell-radius: 0.58rem;
  --rl-tablet-shell-inner-radius: 0.42rem;
  --rl-focus-ring: #2B7FFF;

  --rl-font-heading: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  --rl-font-body: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;

  --rl-radius-sm: 0.625rem;
  --rl-radius-md: 0.875rem;
  --rl-radius-lg: 1.25rem;
  --rl-radius-pill: 999px;

  --rl-shadow-soft: 0 8px 24px rgba(15, 45, 50, 0.08);
  --rl-shadow-pop: 0 14px 30px rgba(15, 45, 50, 0.14);

  --rl-space-1: 0.25rem;
  --rl-space-2: 0.5rem;
  --rl-space-3: 0.75rem;
  --rl-space-4: 1rem;
  --rl-space-5: 1.5rem;
  --rl-space-6: 2rem;
  --rl-space-7: 3rem;

  --rl-container-max: 1160px;
  --rl-container-pad: clamp(1.1rem, 3.4vw, 2.2rem);
  --rl-section-pad-y: clamp(3.35rem, 7vw, 5.9rem);

  --rl-dur-fast: 150ms;
  --rl-dur-base: 240ms;
  --rl-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font: 500 1rem / 1.61 var(--rl-font-body);
  color: var(--rl-text-primary);
  background:
    radial-gradient(90% 80% at 8% -10%, color-mix(in srgb, var(--rl-color-orange-500) 13%, transparent), transparent 72%),
    radial-gradient(80% 65% at 92% -18%, color-mix(in srgb, var(--rl-color-teal-900) 8%, transparent), transparent 70%),
    var(--rl-bg-page);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--rl-focus-ring);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus-visible {
  position: fixed;
  left: var(--rl-space-4);
  top: var(--rl-space-4);
  width: auto;
  height: auto;
  padding: var(--rl-space-3) var(--rl-space-4);
  border-radius: var(--rl-radius-sm);
  background: var(--rl-color-white);
  z-index: 999;
}

.container {
  width: min(var(--rl-container-max), calc(100% - (var(--rl-container-pad) * 2)));
  margin-inline: auto;
}

.section {
  padding-block: var(--rl-section-pad-y);
}

.section--compact {
  padding-block: clamp(2.45rem, 5.2vw, 4.2rem);
}

.section--compact-top {
  padding-top: clamp(2.4rem, 5vw, 4rem);
}

.section--compact-bottom {
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
}

.section--bridge {
  padding-top: clamp(2.1rem, 4.6vw, 3.35rem);
  padding-bottom: clamp(2.7rem, 5.4vw, 4.25rem);
}

.section--stack-tight > .container + .container {
  margin-top: clamp(1rem, 2.4vw, 1.55rem);
}

.section--alt {
  background: var(--rl-bg-alt);
}

.section > .container + .container {
  margin-top: clamp(1.55rem, 3.4vw, 2.35rem);
}

.section-label {
  margin: 0 0 0.68rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--rl-color-teal-900) 78%, white);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--rl-text-strong);
  font-family: var(--rl-font-heading);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  margin-bottom: 1.15rem;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  margin-bottom: 1.05rem;
}

h3 {
  font-size: clamp(1.18rem, 2.2vw, 1.45rem);
  margin-bottom: 0.88rem;
}

p {
  margin: 0 0 1.18rem;
  max-width: 66ch;
}

.section > .container > h2 + p {
  margin-bottom: clamp(1.45rem, 3vw, 2.15rem);
  max-width: 53ch;
  font-size: clamp(1rem, 1.14vw, 1.08rem);
  line-height: 1.68;
  color: #375057;
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0 var(--rl-space-5);
  border-radius: var(--rl-radius-pill);
  border: 1px solid transparent;
  font: 700 1rem / 1 var(--rl-font-body);
  text-decoration: none;
  transition:
    transform var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease)),
    box-shadow var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease)),
    background-color var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease)),
    color var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease)),
    border-color var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease)),
    opacity var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease));
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--rl-shadow-pop);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--rl-color-orange-500);
  color: var(--rl-color-teal-900);
}

.btn-primary--warm,
.hero .actions .btn-primary,
.cta-band .btn-primary {
  background: linear-gradient(180deg, color-mix(in srgb, var(--rl-color-orange-500) 92%, white) 0%, var(--rl-color-orange-500) 100%);
  color: var(--rl-color-teal-900);
  border-color: color-mix(in srgb, var(--rl-color-teal-900) 26%, var(--rl-color-orange-500));
  box-shadow:
    0 14px 26px rgba(15, 45, 50, 0.18),
    0 0 0 2px color-mix(in srgb, white 46%, transparent);
}

.btn-primary--warm:hover,
.hero .actions .btn-primary:hover,
.cta-band .btn-primary:hover {
  background: linear-gradient(180deg, color-mix(in srgb, var(--rl-color-orange-500) 86%, white) 0%, color-mix(in srgb, var(--rl-color-orange-500) 96%, white) 100%);
  border-color: color-mix(in srgb, var(--rl-color-teal-900) 34%, var(--rl-color-orange-500));
  box-shadow:
    0 18px 32px rgba(15, 45, 50, 0.22),
    0 0 0 2px color-mix(in srgb, white 52%, transparent);
}

.btn-secondary {
  background: var(--rl-color-teal-900);
  color: var(--rl-color-white);
}

.btn-ghost {
  background: transparent;
  color: var(--rl-text-strong);
  border-color: var(--rl-border-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid color-mix(in srgb, var(--rl-border-soft) 75%, transparent);
  background: color-mix(in srgb, var(--rl-bg-page) 90%, white);
  backdrop-filter: blur(8px);
  transition:
    background-color var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease)),
    border-color var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease)),
    box-shadow var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease));
}

.site-header--scrolled {
  border-bottom-color: color-mix(in srgb, var(--rl-color-teal-900) 12%, var(--rl-border-soft));
  background: color-mix(in srgb, var(--rl-bg-page) 82%, white);
  box-shadow: 0 14px 32px rgba(15, 45, 50, 0.1);
}

.site-header__row {
  min-height: 4.7rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--rl-space-4);
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--rl-text-strong);
  min-height: 44px;
}

.logo-lockup img {
  width: 38px;
  height: 38px;
}

.logo-lockup span {
  font: 800 1.3rem / 1 var(--rl-font-heading);
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.28rem;
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding-inline: 0.48rem;
  border-radius: var(--rl-radius-sm);
  color: var(--rl-text-strong);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease)),
    color var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease));
}

.site-nav a:hover {
  background: color-mix(in srgb, var(--rl-color-teal-900) 8%, white);
}

.site-nav a[aria-current="page"] {
  background: color-mix(in srgb, var(--rl-color-orange-500) 18%, white);
  color: #17363C;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
}

.site-header__actions .btn {
  min-height: 2.56rem;
  padding-inline: 0.95rem;
  font-size: 0.89rem;
}

.utility-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #213A40;
  text-decoration: none;
  text-underline-offset: 3px;
  transition:
    color var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease)),
    text-decoration-color var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease));
}

.utility-link:hover {
  text-decoration: underline;
  color: #102B30;
}

.menu-btn {
  display: none;
  min-height: 44px;
  min-width: 44px;
  border-radius: var(--rl-radius-sm);
  border: 1px solid var(--rl-border-strong);
  background: var(--rl-color-white);
  color: var(--rl-text-strong);
  font: 700 1rem / 1 var(--rl-font-body);
  transition:
    transform var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease)),
    box-shadow var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease)),
    border-color var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease)),
    background-color var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease));
}

.menu-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--rl-shadow-soft);
}

.menu-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--rl-focus-ring, #2B7FFF) 22%, transparent),
    var(--rl-shadow-soft);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease)),
    visibility 0s linear var(--rl-motion-base, var(--rl-dur-base));
}

.mobile-nav[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease));
}

.mobile-nav[aria-hidden="false"] .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav__panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(320px, 85vw);
  height: 100%;
  border-left: 1px solid color-mix(in srgb, var(--rl-border-soft) 70%, white);
  background:
    radial-gradient(86% 64% at 100% 0%, color-mix(in srgb, var(--rl-color-orange-500) 10%, transparent), transparent 74%),
    linear-gradient(180deg, color-mix(in srgb, var(--rl-color-white) 98%, var(--rl-color-cream-100)) 0%, color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100)) 100%);
  box-shadow: -8px 0 30px rgba(15, 45, 50, 0.22);
  padding: var(--rl-space-5);
  display: grid;
  gap: var(--rl-space-4);
  align-content: start;
  transform: translateX(100%);
  opacity: 0.98;
  transition:
    transform var(--rl-dur-base) var(--rl-ease),
    opacity var(--rl-dur-base) var(--rl-ease);
}

.mobile-nav[aria-hidden="false"] .mobile-nav__panel {
  transform: translateX(0);
  opacity: 1;
}

.mobile-nav__close {
  justify-self: end;
  border: 1px solid var(--rl-border-strong);
  border-radius: var(--rl-radius-sm);
  background: transparent;
  min-width: 44px;
  min-height: 44px;
  font-size: 1.1rem;
  transition:
    background-color var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease)),
    border-color var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease));
}

.mobile-nav__close:hover {
  background: color-mix(in srgb, var(--rl-color-orange-500) 18%, white);
  border-color: color-mix(in srgb, var(--rl-color-orange-500) 44%, var(--rl-border-soft));
}

.mobile-nav__close:focus-visible,
.mobile-nav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--rl-focus-ring, #2B7FFF) 22%, transparent);
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--rl-space-2);
}

.mobile-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: var(--rl-radius-sm);
  padding: 0.3rem 0.45rem;
  text-decoration: none;
  color: var(--rl-text-strong);
  font-weight: 700;
  transition:
    background-color var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease)),
    color var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease));
}

.mobile-nav a:hover {
  background: color-mix(in srgb, var(--rl-color-teal-900) 8%, white);
}

.mobile-nav a[aria-current="page"] {
  background: color-mix(in srgb, var(--rl-color-orange-500) 18%, white);
  color: #17363C;
}

.hero {
  position: relative;
  padding-block: clamp(3.4rem, 7.1vw, 5.35rem);
  --hero-orb-a: color-mix(in srgb, var(--rl-color-orange-500) 22%, transparent);
  --hero-orb-b: color-mix(in srgb, var(--rl-color-teal-900) 14%, transparent);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(45% 46% at 90% 24%, var(--hero-orb-a), transparent 70%),
    radial-gradient(36% 40% at 9% 85%, var(--hero-orb-b), transparent 72%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(1.6rem, 3.2vw, 2.6rem);
  align-items: start;
}

.hero__grid > *,
.grid-2 > *,
.grid-3 > *,
.pricing-grid > *,
.poster-stack > *,
.site-footer__grid > *,
.page-links ul > li,
.field-grid > * {
  min-width: 0;
}

.hero__lede {
  font-size: clamp(0.99rem, 1.2vw, 1.1rem);
  color: #2E3E43;
  max-width: 50ch;
  line-height: 1.68;
  text-wrap: pretty;
  margin-bottom: 1.14rem;
}

.chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.chips li {
  border-radius: var(--rl-radius-pill);
  border: 1px solid var(--rl-border-strong);
  background: color-mix(in srgb, var(--rl-color-white) 84%, transparent);
  padding: 0.5rem 0.74rem;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--rl-text-strong);
  width: 100%;
  line-height: 1.32;
}

@media (min-width: 1081px) {
  .chips li:nth-child(n + 6) {
    display: none;
  }
}

.actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--rl-space-3);
}

.hero .actions + p {
  margin-top: 0.92rem;
  margin-bottom: 0;
  max-width: 46ch;
  color: #3C535A;
  font-size: 0.89rem;
  line-height: 1.62;
}

.hero .actions .btn-secondary {
  background: transparent;
  color: var(--rl-text-strong);
  border-color: var(--rl-border-strong);
  box-shadow: none;
}

.hero .actions .btn-secondary:hover {
  background: color-mix(in srgb, var(--rl-color-orange-500) 16%, white);
  border-color: color-mix(in srgb, var(--rl-color-orange-500) 44%, var(--rl-border-soft));
}

.screenshot-frame {
  width: min(100%, 390px);
  justify-self: center;
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--rl-color-white) 26%, transparent);
  background: linear-gradient(165deg, #20353B 0%, #16282C 62%, #122126 100%);
  padding: 0.3rem;
  box-shadow: 0 14px 30px rgba(15, 45, 50, 0.18);
}

.screenshot-frame--phone {
  padding: var(--rl-phone-shell-padding-roomy);
  border-radius: var(--rl-phone-shell-radius);
  border-width: 1.2px;
}

.hero-visual {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: visible;
  transform: perspective(1500px) rotateX(0deg) rotateY(0deg) translate3d(0, 0, 0);
  transform-style: preserve-3d;
  transition: transform 420ms var(--rl-ease-standard);
  will-change: transform;
  --hero-float-top-x: 0.4rem;
  --hero-float-top-y: -0.3rem;
  --hero-float-top-rotate: -1.8deg;
  --hero-float-bottom-x: -0.4rem;
  --hero-float-bottom-y: 0.34rem;
  --hero-float-bottom-rotate: 1.5deg;
  --hero-float-bottom-right-x: 0.34rem;
  --hero-float-bottom-right-y: 0.34rem;
  --hero-float-bottom-right-rotate: -1.2deg;
  --hero-float-thumb-top-x: -0.38rem;
  --hero-float-thumb-top-y: -0.26rem;
  --hero-float-thumb-top-rotate: -7deg;
  --hero-float-thumb-bottom-x: 0.4rem;
  --hero-float-thumb-bottom-y: 0.22rem;
  --hero-float-thumb-bottom-rotate: 6deg;
}

.hero-visual--simple {
  min-height: 525px;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 76%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(58% 46% at 84% 14%, color-mix(in srgb, var(--rl-color-orange-500) 16%, transparent), transparent 72%),
    radial-gradient(52% 48% at 14% 84%, color-mix(in srgb, var(--rl-color-teal-900) 12%, transparent), transparent 74%),
    color-mix(in srgb, var(--rl-color-white) 95%, var(--rl-color-cream-100));
  padding: 0.62rem;
}

.hero-visual--dashboard {
  min-height: 548px;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 72%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(58% 44% at 84% 14%, color-mix(in srgb, var(--rl-color-orange-500) 16%, transparent), transparent 72%),
    radial-gradient(54% 48% at 14% 84%, color-mix(in srgb, var(--rl-color-teal-900) 14%, transparent), transparent 74%),
    color-mix(in srgb, var(--rl-color-white) 95%, var(--rl-color-cream-100));
  padding: 0.56rem;
}

.hero-visual--dashboard-clean {
  min-height: 510px;
}

.hero-visual--dashboard-clean .screenshot-frame--tablet {
  width: min(100%, 508px);
}

.hero-visual--dashboard-clean .hero-proof {
  width: min(214px, 42vw);
}

.hero-visual .screenshot-frame {
  width: min(100%, 358px);
  margin: 0;
  position: relative;
  z-index: 2;
}

.hero-visual .screenshot-frame--phone {
  width: min(100%, 248px);
}

.hero-visual--simple .screenshot-frame {
  width: min(100%, 348px);
}

.hero-visual--simple .screenshot-frame--phone {
  width: min(100%, 240px);
}

.hero-visual--dashboard .screenshot-frame--tablet {
  width: min(100%, 480px);
}

.screenshot-frame--phone img {
  aspect-ratio: 1206 / 2622;
  object-fit: contain;
  object-position: top center;
  border: 0;
  border-radius: var(--rl-phone-shell-inner-radius);
  background: transparent;
}

.screenshot-frame--poster {
  width: min(100%, 368px);
  border-radius: 1.18rem;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  background:
    radial-gradient(58% 42% at 84% 16%, color-mix(in srgb, var(--rl-color-orange-500) 10%, transparent), transparent 74%),
    linear-gradient(180deg, color-mix(in srgb, var(--rl-color-white) 98%, var(--rl-color-cream-100)) 0%, color-mix(in srgb, var(--rl-color-white) 93%, var(--rl-color-cream-100)) 100%);
  padding: 0.42rem;
  box-shadow: 0 14px 28px rgba(15, 45, 50, 0.08);
}

.screenshot-frame--poster img {
  aspect-ratio: 1587 / 2245;
  object-fit: cover;
  object-position: center top;
  border-radius: 0.82rem;
  border: 0;
  background: transparent;
}

.screenshot-frame--tablet {
  width: min(100%, 520px);
  border-radius: var(--rl-tablet-shell-radius);
  padding: 0.36rem;
  background:
    radial-gradient(70% 48% at 85% 14%, color-mix(in srgb, var(--rl-color-orange-500) 18%, transparent), transparent 72%),
    radial-gradient(60% 52% at 14% 84%, color-mix(in srgb, var(--rl-color-teal-900) 16%, transparent), transparent 74%),
    linear-gradient(160deg, #1D3338 0%, #16282D 62%, #122025 100%);
}

.hero-visual .screenshot-frame--tablet {
  width: min(100%, 472px);
}

.screenshot-frame--tablet img {
  width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: top center;
  border-radius: var(--rl-tablet-shell-inner-radius);
}

.hero-proof {
  position: absolute;
  z-index: 3;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: var(--rl-radius-md);
  background: color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100));
  box-shadow: 0 24px 48px rgba(15, 45, 50, 0.14);
  backdrop-filter: blur(12px);
  padding: 0.58rem 0.66rem;
  width: min(220px, 44vw);
  display: grid;
  gap: 0.16rem;
  transform-origin: center;
}

.hero-proof__kicker {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #304A51;
  line-height: 1.2;
}

.hero-proof :is(h2, h3) {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.25;
}

.hero-proof p {
  margin: 0;
  max-width: none;
  font-size: 0.74rem;
  line-height: 1.34;
  color: #3D535A;
}

.hero-proof--top-right {
  top: 0.95rem;
  right: 0.2rem;
  transform: translate3d(var(--hero-float-top-x), var(--hero-float-top-y), 0) rotate(var(--hero-float-top-rotate));
}

.hero-proof--left-mid {
  top: 3.5rem;
  left: 0;
  transform: translate3d(-0.32rem, -0.18rem, 0) rotate(-1.2deg);
}

.hero-proof--bottom-left {
  left: 0.4rem;
  bottom: 1rem;
  transform: translate3d(var(--hero-float-bottom-x), var(--hero-float-bottom-y), 0) rotate(var(--hero-float-bottom-rotate));
}

.hero-proof--bottom-right {
  right: 0.25rem;
  bottom: 1.2rem;
  transform: translate3d(var(--hero-float-bottom-right-x), var(--hero-float-bottom-right-y), 0) rotate(var(--hero-float-bottom-right-rotate));
}

.hero-visual__thumb {
  position: absolute;
  z-index: 1;
  margin: 0;
  width: min(176px, 34vw);
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: var(--rl-radius-md);
  background: color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100));
  box-shadow: 0 22px 44px rgba(15, 45, 50, 0.12);
  backdrop-filter: blur(10px);
  padding: 0.38rem;
  transform-origin: center;
}

.hero-visual__thumb img {
  width: 100%;
  border-radius: 0.68rem;
  border: 1px solid color-mix(in srgb, var(--rl-color-white) 72%, transparent);
  background: var(--rl-color-white);
}

.hero-visual__thumb.hero-visual__thumb--phone {
  width: 160px;
  inline-size: min(160px, 100%);
  max-width: 100%;
  justify-self: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-visual__thumb--phone .device-preview-shell {
  width: 100%;
  padding: var(--rl-phone-shell-padding-roomy);
  border-radius: var(--rl-phone-shell-radius);
}

.hero-visual__thumb--phone img {
  aspect-ratio: 1206 / 2622;
  object-fit: contain;
  object-position: top center;
}

.hero-visual__thumb figcaption {
  margin: 0.26rem 0 0;
  font-size: 0.68rem;
  line-height: 1.26;
  font-weight: 700;
  color: #334B52;
  text-align: center;
}

.hero-visual__thumb--top-left {
  left: 0.3rem;
  top: 1.4rem;
  transform: translate3d(var(--hero-float-thumb-top-x), var(--hero-float-thumb-top-y), 0) rotate(var(--hero-float-thumb-top-rotate));
}

.hero-visual__thumb--lower-right {
  right: 0.1rem;
  bottom: 1.1rem;
  transform: translate3d(var(--hero-float-thumb-bottom-x), var(--hero-float-thumb-bottom-y), 0) rotate(var(--hero-float-thumb-bottom-rotate));
}

.hero-proof__shot {
  margin: 0.22rem 0 0;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: 0.62rem;
  overflow: hidden;
}

.hero-proof__shot img {
  width: 100%;
  display: block;
}

body.page-pricing .hero {
  --hero-orb-a: color-mix(in srgb, var(--rl-color-orange-500) 26%, transparent);
  --hero-orb-b: color-mix(in srgb, var(--rl-color-teal-900) 10%, transparent);
}

body.page-pricing .hero-visual {
  min-height: 530px;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 74%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(56% 48% at 84% 14%, color-mix(in srgb, var(--rl-color-orange-500) 20%, transparent), transparent 70%),
    radial-gradient(46% 44% at 14% 84%, color-mix(in srgb, var(--rl-color-teal-900) 11%, transparent), transparent 72%),
    color-mix(in srgb, var(--rl-color-white) 92%, var(--rl-color-cream-100));
  padding: 0.5rem;
}

body.page-pricing .hero-visual--dashboard {
  min-height: 548px;
}

body.page-pricing .hero-visual .screenshot-frame {
  transform: translateY(4px);
}

body.page-pricing .hero-visual--dashboard-clean .screenshot-frame {
  transform: none;
}

body.page-pricing .hero-proof--top-right {
  right: 0.45rem;
  top: 0.65rem;
}

body.page-pricing .hero-proof--bottom-left {
  left: 0.4rem;
  bottom: 1.25rem;
}

body.page-pricing .hero-visual__thumb--lower-right {
  right: 0.6rem;
  bottom: -0.15rem;
  transform: rotate(4deg);
}

body.page-pricing .hero-visual--dashboard-clean .hero-proof--top-right {
  right: 0.65rem;
  top: 0.8rem;
}

body.page-pricing .hero-visual--dashboard-clean .hero-proof--bottom-left {
  left: 0.65rem;
  bottom: 1rem;
}

body.page-pricing .pricing-fit-board {
  min-height: 548px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  place-items: stretch;
  align-content: start;
}

body.page-pricing .pricing-fit-board--routes {
  min-height: auto;
  padding: clamp(0.72rem, 1.45vw, 0.95rem);
  align-content: stretch;
}

body.page-pricing .pricing-fit-card,
body.page-pricing .pricing-fit-callout {
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: var(--rl-radius-md);
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--rl-color-white) 97%, var(--rl-color-cream-100)) 0%, #EEF3F5 100%);
  box-shadow: var(--rl-shadow-soft);
}

body.page-pricing .pricing-fit-card {
  display: grid;
  gap: 0.72rem;
  padding: clamp(0.88rem, 1.6vw, 1rem);
  align-content: start;
}

body.page-pricing .pricing-fit-card--starter {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

body.page-pricing .pricing-fit-board--routes .pricing-fit-card,
body.page-pricing .pricing-fit-board--routes .pricing-fit-callout {
  min-height: 100%;
}

body.page-pricing .pricing-fit-board--routes .pricing-fit-card--starter,
body.page-pricing .pricing-fit-board--routes .pricing-fit-callout {
  grid-column: auto;
  grid-template-columns: minmax(0, 1fr);
}

body.page-pricing .pricing-fit-card__copy {
  display: grid;
  gap: 0.32rem;
  align-content: start;
}

body.page-pricing .pricing-fit-card__eyebrow {
  margin: 0;
  color: #7A4A16;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body.page-pricing .pricing-fit-card :is(h2, h3),
body.page-pricing .pricing-fit-callout :is(h2, h3) {
  margin: 0;
  color: #173740;
  line-height: 1.14;
}

body.page-pricing .pricing-fit-card :is(h2, h3) {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

body.page-pricing .pricing-fit-callout :is(h2, h3) {
  font-size: 1rem;
}

body.page-pricing .pricing-fit-card p,
body.page-pricing .pricing-fit-callout p {
  margin: 0;
  max-width: none;
  color: #365157;
  font-size: 0.8rem;
  line-height: 1.54;
}

body.page-pricing .pricing-fit-card figure,
body.page-pricing .pricing-fit-callout figure {
  margin: 0;
}

body.page-pricing .pricing-fit-card__surface,
body.page-pricing .pricing-fit-card__poster {
  width: 100%;
}

body.page-pricing .pricing-fit-card__media {
  min-height: 10.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 78%, white);
  border-radius: calc(var(--rl-radius-md) - 0.3rem);
  background:
    radial-gradient(66% 62% at 50% 18%, color-mix(in srgb, var(--rl-color-orange-500) 12%, transparent), transparent 72%),
    color-mix(in srgb, var(--rl-color-white) 96%, #EEF3F5);
}

body.page-pricing .pricing-fit-card__media--poster img {
  width: min(8.55rem, 70%);
  height: auto;
  display: block;
  padding: 0.16rem;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 84%, white);
  border-radius: 0.56rem;
  background: color-mix(in srgb, var(--rl-color-white) 98%, var(--rl-color-cream-100));
  box-shadow:
    0 0.75rem 1.8rem rgba(23, 55, 64, 0.12),
    0 0.12rem 0.5rem rgba(122, 74, 22, 0.08);
}

body.page-pricing .pricing-fit-card__media--poster {
  padding: 0.45rem;
  overflow: visible;
  border-color: transparent;
  background:
    radial-gradient(60% 58% at 50% 40%, color-mix(in srgb, var(--rl-color-orange-500) 9%, transparent), transparent 72%),
    linear-gradient(180deg, color-mix(in srgb, var(--rl-color-white) 96%, #EEF3F5), color-mix(in srgb, var(--rl-color-cream-100) 42%, white));
}

body.page-pricing .pricing-fit-card__media--phone .device-preview-shell {
  width: min(8.25rem, 62%);
  margin: 0;
}

body.page-pricing .pricing-fit-card__media--phone .device-preview-shell img {
  width: 100%;
  height: auto;
  display: block;
}

body.page-pricing .pricing-fit-card__media--phone-with-poster-bg {
  background:
    radial-gradient(60% 58% at 50% 40%, color-mix(in srgb, var(--rl-color-orange-500) 9%, transparent), transparent 72%),
    linear-gradient(180deg, color-mix(in srgb, var(--rl-color-white) 96%, #EEF3F5), color-mix(in srgb, var(--rl-color-cream-100) 42%, white));
  padding: 0.45rem;
}

body.page-pricing .pricing-fit-card__media--dashboard img {
  width: 100%;
  max-height: 10rem;
  display: block;
  object-fit: contain;
  object-position: top center;
  border-radius: 0.8rem;
}

body.page-pricing .pricing-fit-card__surface img {
  aspect-ratio: 2560 / 1800;
  object-fit: contain;
  object-position: top center;
}

body.page-pricing .pricing-fit-card__surface figcaption {
  display: grid;
  gap: 0.18rem;
}

body.page-pricing .pricing-fit-card__poster {
  justify-self: stretch;
}

body.page-pricing .pricing-fit-card__poster img {
  aspect-ratio: 1587 / 2245;
  object-fit: cover;
  object-position: center top;
}

body.page-pricing .pricing-fit-callout {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.58rem;
  align-content: start;
  padding: 0.92rem 1rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rl-color-white) 98%, #FAEEDD) 0%, color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100)) 100%);
}

body.page-pricing .pricing-fit-callout .btn {
  width: fit-content;
}

body.page-pricing .pricing-fit-card__link {
  width: fit-content;
  color: var(--rl-text-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

body.page-pricing .pricing-fit-process {
  margin: 0.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

body.page-pricing .pricing-fit-process li {
  min-height: 2.65rem;
  display: flex;
  align-items: center;
  padding: 0.44rem 0.52rem;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 78%, white);
  border-radius: var(--rl-radius-sm);
  background: color-mix(in srgb, var(--rl-color-white) 90%, #F5E7D2);
  color: #2F454B;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
}

body.page-pricing .pricing-billing-note {
  margin-top: 0.9rem;
}

body.page-start .hero {
  --hero-orb-a: color-mix(in srgb, var(--rl-color-orange-500) 16%, transparent);
  --hero-orb-b: color-mix(in srgb, var(--rl-color-teal-900) 16%, transparent);
}

body.page-start .section,
body.page-pricing .section,
body.page-datahub .section,
body.page-notifications .section {
  padding-block: clamp(2.7rem, 5.7vw, 4.35rem);
}

body.page-how-it-works .section {
  padding-block: clamp(2.8rem, 5.9vw, 4.5rem);
}

body.page-start .section > .container + .container,
body.page-pricing .section > .container + .container,
body.page-datahub .section > .container + .container,
body.page-notifications .section > .container + .container,
body.page-how-it-works .section > .container + .container {
  margin-top: clamp(1rem, 2.3vw, 1.45rem);
}

body.page-start .hero-visual {
  min-height: 515px;
  border: 1px dashed color-mix(in srgb, var(--rl-color-teal-900) 24%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(52% 46% at 18% 16%, color-mix(in srgb, var(--rl-color-orange-500) 12%, transparent), transparent 72%),
    radial-gradient(48% 42% at 88% 82%, color-mix(in srgb, var(--rl-color-teal-900) 9%, transparent), transparent 74%),
    color-mix(in srgb, var(--rl-color-white) 95%, var(--rl-color-cream-100));
  padding: 0.42rem;
}

body.page-start .start-hero-visual {
  min-height: 0;
  display: grid;
  place-items: stretch;
  gap: 0.82rem;
  align-content: start;
  padding: 0.72rem;
  border-style: solid;
}

body.page-start .start-hero-surface {
  width: 100%;
  max-width: 100%;
  margin: 0;
  margin-bottom: clamp(6.8rem, 10vw, 7.9rem);
  position: relative;
  z-index: 2;
}

body.page-start .start-hero-surface img {
  aspect-ratio: 2560 / 1800;
  object-fit: contain;
  object-position: top center;
}

body.page-start .start-hero-surface figcaption {
  display: grid;
  gap: 0.18rem;
}

body.page-start .start-hero-visual .hero-proof {
  width: min(228px, 42vw);
}

body.page-start .hero-visual .screenshot-frame {
  box-shadow: 0 20px 40px rgba(15, 45, 50, 0.2);
}

body.page-start .hero-proof--top-right {
  right: 0.55rem;
  top: 0.72rem;
}

body.page-start .hero-proof--bottom-left {
  left: 0.55rem;
  bottom: 1rem;
}

.start-path-grid {
  align-items: start;
}

.start-path__steps {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.start-path__steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.88rem 0.92rem;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 84%, white);
  border-radius: var(--rl-radius-md);
  background: color-mix(in srgb, var(--rl-color-white) 97%, var(--rl-color-cream-100));
  box-shadow: 0 8px 18px rgba(12, 34, 40, 0.08);
}

.start-path__steps strong {
  display: block;
  margin-bottom: 0.18rem;
  color: #183A41;
  font-size: 0.95rem;
  line-height: 1.35;
}

.start-path__steps p {
  margin: 0;
  max-width: none;
  color: #3A5058;
  font-size: 0.84rem;
  line-height: 1.52;
}

.start-path__step-number {
  inline-size: auto;
  min-inline-size: 1.9rem;
  block-size: 1.9rem;
  padding-inline: 0.36rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--rl-color-orange-500) 22%, white);
  color: #183940;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.start-path__facts {
  margin: 1rem 0 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.5rem;
}

.start-path__facts li {
  color: #355057;
  font-size: 0.88rem;
  line-height: 1.52;
}

.start-path__proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
  align-items: start;
  margin-top: 1rem;
}

.start-path__surface {
  min-height: 100%;
}

.start-path__surface img {
  aspect-ratio: 2560 / 1800;
  object-fit: contain;
  object-position: top center;
}

.start-path__surface figcaption {
  display: grid;
  gap: 0.18rem;
}

.start-path__proof .workflow-note {
  margin-top: 0.98rem;
}

.start-journey {
  display: grid;
  gap: clamp(1rem, 2vw, 1.45rem);
}

.start-journey__header {
  max-width: 76ch;
  display: grid;
  gap: 0.56rem;
}

.start-journey__header :is(h2, p) {
  margin: 0;
}

.start-journey__header p:not(.section-label) {
  color: #365157;
}

.start-journey__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.3vw, 0.95rem);
  align-items: stretch;
}

.start-journey-card {
  min-width: 0;
  display: grid;
  gap: 0.58rem;
  align-content: start;
  padding: clamp(0.82rem, 1.4vw, 1rem);
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(62% 42% at 16% 8%, color-mix(in srgb, var(--rl-color-orange-500) 8%, transparent), transparent 72%),
    linear-gradient(160deg, color-mix(in srgb, var(--rl-color-white) 98%, var(--rl-color-cream-100)), #EEF3F5);
  box-shadow: 0 12px 28px rgba(12, 34, 40, 0.075);
}

.start-journey-card--text {
  background:
    radial-gradient(circle at 20% 12%, color-mix(in srgb, var(--rl-color-orange-500) 18%, transparent), transparent 38%),
    linear-gradient(160deg, color-mix(in srgb, var(--rl-color-white) 98%, var(--rl-color-cream-100)), color-mix(in srgb, var(--rl-color-orange-500) 8%, white));
}

.start-journey-card__number {
  inline-size: auto;
  min-inline-size: 2.15rem;
  block-size: 2.15rem;
  padding-inline: 0.5rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--rl-color-orange-500) 42%, white);
  border-radius: 999px;
  background: color-mix(in srgb, var(--rl-color-orange-500) 18%, white);
  color: #173740;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.start-journey-card__step {
  display: inline-flex;
  width: fit-content;
  min-height: 1.36rem;
  align-items: center;
  padding: 0.08rem 0.5rem;
  border-radius: var(--rl-radius-pill);
  background: color-mix(in srgb, var(--rl-color-teal-900) 8%, white);
  color: #24474E;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.start-journey-card h3,
.start-journey-card p {
  margin: 0;
}

.start-journey-card h3 {
  color: #173740;
  font-size: clamp(0.94rem, 1.25vw, 1.04rem);
  line-height: 1.18;
}

.start-journey-card p {
  max-width: none;
  color: #365157;
  font-size: 0.78rem;
  line-height: 1.48;
}

.start-journey-card__media {
  margin: 0;
  padding: 0.32rem;
  border-radius: var(--rl-radius-md);
}

.start-journey-card__media img {
  aspect-ratio: 2560 / 1800;
  object-fit: contain;
  object-position: top center;
}

.start-journey__support {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem 1rem;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.85rem, 1.5vw, 1rem);
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: var(--rl-radius-xl);
  background: color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100));
}

.start-journey__support p {
  margin: 0;
  max-width: 56ch;
  color: #365157;
}

body.page-cafes .hero {
  --hero-orb-a: color-mix(in srgb, var(--rl-color-orange-500) 22%, transparent);
  --hero-orb-b: color-mix(in srgb, #224951 19%, transparent);
}

body.page-cafes .hero-visual {
  min-height: 528px;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 74%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(58% 48% at 18% 18%, color-mix(in srgb, var(--rl-color-orange-500) 14%, transparent), transparent 72%),
    radial-gradient(46% 44% at 88% 82%, color-mix(in srgb, #224951 12%, transparent), transparent 74%),
    color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100));
  padding: 0.52rem;
}

body.page-cafes .hero-proof--top-right {
  right: 0.2rem;
  top: 0.65rem;
}

body.page-cafes .hero-proof--bottom-left {
  left: 0.05rem;
  bottom: 0.85rem;
}

body.page-cafes .hero-visual__thumb--top-left {
  left: 0.1rem;
  top: 0.95rem;
}

body.page-cafes .hero-visual__thumb--cafe-poster {
  width: min(172px, 34vw);
  padding: 0.28rem 0.3rem;
}

@media (min-width: 1024px) {
  body.page-cafes .hero-visual__thumb--cafe-poster {
    width: min(164px, 24vw);
  }
}

body.page-boba .hero {
  --hero-orb-a: color-mix(in srgb, var(--rl-color-orange-500) 30%, transparent);
  --hero-orb-b: color-mix(in srgb, #173E46 13%, transparent);
}

body.page-boba .hero-visual {
  min-height: 530px;
}

body.page-boba .hero-proof--top-right {
  right: 0.42rem;
  top: 0.85rem;
}

body.page-boba .hero-proof--bottom-left {
  left: 0.5rem;
  bottom: 1.2rem;
}

body.page-boba .hero-proof--notification-card {
  right: -0.15rem;
  bottom: -0.35rem;
  width: min(244px, 44vw);
  gap: 0.24rem;
  padding: 0.52rem 0.58rem 0.56rem;
  z-index: 4;
  transform: translate3d(0.28rem, 0.16rem, 0) rotate(2deg);
}

body.page-boba .hero-proof--notification-card .hero-proof__shot {
  margin: 0 0 0.1rem;
  overflow: visible;
}

body.page-boba .hero-proof--notification-card .hero-proof__shot img {
  border-radius: 1.16rem;
  box-shadow: 0 12px 24px rgba(15, 45, 50, 0.1);
}

body.page-boba .hero-visual__thumb--lower-right {
  right: 0.55rem;
  bottom: -0.92rem;
  transform: rotate(3deg);
  z-index: 4;
  backdrop-filter: none;
  background: transparent;
  box-shadow: none;
}

body.page-boba .hero-visual__thumb--lower-right figcaption {
  position: relative;
  z-index: 1;
}

body.page-boba .hero-visual__thumb--lower-right img {
  background: #efe8f4 !important;
  border-radius: 1.42rem;
}

body.page-wallet .hero {
  --hero-orb-a: color-mix(in srgb, #EAA55B 27%, transparent);
  --hero-orb-b: color-mix(in srgb, #1C4C55 18%, transparent);
}

body.page-wallet .hero-visual {
  min-height: 536px;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 76%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(56% 44% at 18% 16%, color-mix(in srgb, #EAA55B 16%, transparent), transparent 72%),
    radial-gradient(48% 46% at 86% 82%, color-mix(in srgb, #1C4C55 12%, transparent), transparent 74%),
    color-mix(in srgb, var(--rl-color-white) 95%, var(--rl-color-cream-100));
  padding: 0.48rem;
}

body.page-wallet .hero-visual .screenshot-frame {
  transform: translateY(8px);
}

body.page-wallet .hero-proof--top-right {
  right: 0.42rem;
  top: 0.75rem;
}

body.page-wallet .hero-proof--bottom-left {
  left: 0.42rem;
  bottom: 1rem;
}

body.page-wallet .hero-visual__thumb--top-left {
  left: 0.38rem;
  top: 0.92rem;
  transform: rotate(-4deg);
}

body.page-wallet .hero-visual__thumb--wallet-pass {
  width: min(218px, 38vw);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: 0 22px 44px rgba(15, 45, 50, 0.1);
  backdrop-filter: none;
}

body.page-wallet .hero-visual__thumb--wallet-pass img {
  display: block;
  border: 0;
  border-radius: 0.72rem;
  background: transparent;
}

body.page-posters .hero {
  --hero-orb-a: color-mix(in srgb, #F2A13D 32%, transparent);
  --hero-orb-b: color-mix(in srgb, #1A434A 10%, transparent);
}

body.page-posters .hero-visual {
  min-height: 540px;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 72%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(54% 44% at 16% 18%, color-mix(in srgb, #F2A13D 17%, transparent), transparent 72%),
    radial-gradient(44% 44% at 86% 82%, color-mix(in srgb, #1A434A 9%, transparent), transparent 74%),
    color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100));
  padding: 0.52rem;
}

body.page-posters .hero-proof--top-right {
  right: 0.28rem;
  top: 0.74rem;
}

body.page-posters .hero-proof--bottom-left {
  left: 0.38rem;
  bottom: 0.96rem;
}

body.page-posters .hero-visual__thumb--lower-right {
  right: 0.38rem;
  bottom: 0.32rem;
  transform: rotate(3deg);
  z-index: 20;
}

body.page-posters .hero-visual__thumb--front {
  z-index: 30 !important;
  position: absolute;
}

body.page-hardware .hero {
  --hero-orb-a: color-mix(in srgb, #F3A84B 19%, transparent);
  --hero-orb-b: color-mix(in srgb, #123840 20%, transparent);
}

body.page-hardware .hero-visual {
  min-height: 528px;
  border: 1px dashed color-mix(in srgb, var(--rl-color-teal-900) 22%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(52% 44% at 16% 16%, color-mix(in srgb, var(--rl-color-orange-500) 14%, transparent), transparent 72%),
    radial-gradient(48% 44% at 88% 84%, color-mix(in srgb, var(--rl-color-teal-900) 10%, transparent), transparent 74%),
    color-mix(in srgb, var(--rl-color-white) 95%, var(--rl-color-cream-100));
  padding: 0.48rem;
}

body.page-hardware .hero-proof--top-right {
  right: 0.45rem;
  top: 0.72rem;
}

body.page-hardware .hero-proof--bottom-left {
  left: 0.46rem;
  bottom: 1rem;
}

body.page-hardware .hero-visual__thumb--top-left {
  left: 0.35rem;
  top: 0.95rem;
  transform: rotate(-4deg);
}

body.page-hardware .hero-visual__thumb--wallet-showcase {
  padding: 0.62rem;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: calc(var(--rl-radius-md) + 0.14rem);
  background: #fff;
  box-shadow: 0 24px 44px rgba(15, 45, 50, 0.12);
}

body.page-hardware .hero-visual__thumb--wallet-showcase img {
  background: #fff;
  border: 0;
  border-radius: 0.58rem;
}

body.page-hardware .hero-visual__thumb--wallet-showcase:has(img[src*="app-wallet-pass-iso-clean"]) {
  padding: 0.62rem;
}

body.page-hardware .hero-visual__thumb--wallet-showcase:has(img[src*="app-wallet-pass-iso-clean"]) figcaption {
  display: none;
}

body.page-datahub .hero {
  --hero-orb-a: color-mix(in srgb, #EAAE63 21%, transparent);
  --hero-orb-b: color-mix(in srgb, #143E47 26%, transparent);
}

body.page-datahub .hero-visual {
  min-height: 552px;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 74%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(58% 44% at 84% 14%, color-mix(in srgb, var(--rl-color-orange-500) 18%, transparent), transparent 72%),
    radial-gradient(56% 50% at 14% 84%, color-mix(in srgb, var(--rl-color-teal-900) 16%, transparent), transparent 74%),
    color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100));
  padding: 0.45rem;
}

body.page-datahub .hero-proof--top-right {
  right: 0.45rem;
  top: 0.65rem;
}

body.page-datahub .hero-proof--bottom-left {
  left: 0.55rem;
  bottom: 1rem;
}

body.page-datahub .hero-visual__thumb--lower-right {
  right: 0.3rem;
  bottom: 0.45rem;
  transform: rotate(3deg);
}

body.page-datahub .hero-visual__thumb--owner-charts {
  right: 0.15rem;
  bottom: -0.35rem;
  width: min(214px, 34%);
  padding: 0.34rem;
  z-index: 2;
  transform: rotate(2deg);
}

body.page-datahub .hero-visual__thumb--owner-charts figcaption {
  text-align: left;
  font-size: 0.66rem;
}

body.page-datahub .hero-visual--dashboard-clean .hero-proof--top-right {
  right: 0.6rem;
  top: 0.78rem;
}

body.page-datahub .hero-visual--dashboard-clean .hero-proof--bottom-left {
  left: 0.65rem;
  bottom: 1rem;
}

body.page-bespoke-app .hero-visual--dashboard-clean .hero-proof--top-right {
  right: 0.65rem;
  top: 0.8rem;
}

body.page-bespoke-app .hero-visual--dashboard-clean .hero-proof--bottom-left {
  left: 0.65rem;
  bottom: 1rem;
}

body.page-bespoke-app .bespoke-process-visual {
  min-height: 548px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(0.78rem, 1.8vw, 1rem);
  align-content: center;
  align-items: stretch;
  justify-items: stretch;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 76%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(62% 48% at 84% 14%, color-mix(in srgb, var(--rl-color-orange-500) 17%, transparent), transparent 72%),
    radial-gradient(54% 48% at 14% 84%, color-mix(in srgb, var(--rl-color-teal-900) 12%, transparent), transparent 74%),
    color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100));
  padding: clamp(0.85rem, 2vw, 1.1rem);
}

body.page-bespoke-app .bespoke-route-card,
body.page-bespoke-app .bespoke-process-card {
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 80%, white);
  border-radius: var(--rl-radius-md);
  background: color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100));
  box-shadow: var(--rl-shadow-soft);
  padding: clamp(0.95rem, 2vw, 1.15rem);
}

body.page-bespoke-app .bespoke-route-card {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

body.page-bespoke-app .bespoke-process-card {
  grid-row: span 2;
  display: grid;
  gap: 0.78rem;
}

body.page-bespoke-app .bespoke-route-card__eyebrow {
  margin: 0;
  color: #7A4A16;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-bespoke-app .bespoke-route-card h2,
body.page-bespoke-app .bespoke-process-card h2 {
  margin: 0;
  color: var(--rl-text-strong);
  font-size: clamp(1.12rem, 1.85vw, 1.42rem);
  line-height: 1.12;
}

body.page-bespoke-app .bespoke-route-card p {
  margin: 0;
  color: #334A50;
  font-size: 0.9rem;
  line-height: 1.58;
}

body.page-bespoke-app .bespoke-route-card a {
  width: fit-content;
  color: var(--rl-text-strong);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

body.page-bespoke-app .bespoke-route-card--bespoke {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--rl-color-white) 96%, #FAEEDD) 0%, color-mix(in srgb, var(--rl-color-white) 89%, var(--rl-color-cream-100)) 100%);
}

body.page-bespoke-app .bespoke-process-card__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

body.page-bespoke-app .bespoke-process-card__steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem 0.72rem;
  align-items: start;
  padding: 0.78rem;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 78%, white);
  border-radius: var(--rl-radius-sm);
  background: color-mix(in srgb, var(--rl-color-white) 92%, #EEF3F5);
}

body.page-bespoke-app .bespoke-process-card__steps span {
  grid-row: span 2;
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--rl-color-orange-500) 28%, white);
  color: var(--rl-text-strong);
  font-weight: 800;
}

body.page-bespoke-app .bespoke-process-card__steps strong {
  color: var(--rl-text-strong);
  line-height: 1.25;
}

body.page-bespoke-app .bespoke-process-card__steps p {
  margin: 0;
  color: #40575D;
  font-size: 0.78rem;
  line-height: 1.45;
}

body.page-gamified .hero-visual,
body.page-notifications .hero-visual,
body.page-feedback .hero-visual,
body.page-juice .hero-visual {
  min-height: 530px;
}

body.page-notifications .hero {
  --hero-orb-a: color-mix(in srgb, #F3AE58 24%, transparent);
  --hero-orb-b: color-mix(in srgb, #143E47 16%, transparent);
}

body.page-notifications .hero-visual--simple .screenshot-frame {
  transform: translateY(4px);
}

body.page-notifications .hero-proof--bottom-left {
  width: min(246px, 46vw);
}

.nudge-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.28rem, 2.6vw, 1.75rem);
  padding: clamp(1.24rem, 2.6vw, 1.7rem);
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 76%, white);
  border-radius: var(--rl-radius-lg);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--rl-color-white) 92%, var(--rl-color-cream-100)), color-mix(in srgb, var(--rl-color-cream-100) 24%, white));
  box-shadow: var(--rl-shadow-soft);
  align-items: stretch;
}

.nudge-proof__copy {
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: var(--rl-radius-lg);
  background: var(--rl-bg-card);
  padding: clamp(1.16rem, 2.4vw, 1.48rem);
  display: grid;
  gap: 0.62rem;
  align-content: start;
}

.nudge-proof__copy h2 {
  font-size: clamp(1.22rem, 2.15vw, 1.78rem);
  margin-bottom: 0.1rem;
  max-width: 24ch;
}

.nudge-proof__copy p {
  margin: 0;
  color: #32464C;
  font-size: 0.97rem;
  line-height: 1.6;
  max-width: 56ch;
}

.nudge-proof__points {
  list-style: none;
  margin: 0.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.44rem;
}

.nudge-proof__points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  align-items: start;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 72%, white);
  border-radius: var(--rl-radius-sm);
  background: color-mix(in srgb, var(--rl-color-cream-100) 24%, white);
  padding: 0.64rem 0.74rem;
  color: #2A4046;
  font-size: 0.84rem;
  line-height: 1.45;
  font-weight: 700;
}

.nudge-proof__points li::before {
  content: "↺";
  font-size: 0.82rem;
  font-weight: 900;
  color: #1D3B41;
  line-height: 1.2;
  margin-top: 0.02rem;
}

.nudge-proof__shots {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 0.58rem;
  align-content: start;
}

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

.nudge-proof__shot {
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 78%, white);
  border-radius: var(--rl-radius-md);
  background: var(--rl-bg-card);
  box-shadow: var(--rl-shadow-soft);
  padding: 0.58rem;
}

.nudge-proof__shot--featured {
  padding: 0.66rem;
  background:
    linear-gradient(155deg, color-mix(in srgb, var(--rl-color-white) 95%, var(--rl-color-cream-100)), color-mix(in srgb, var(--rl-color-cream-100) 18%, white));
}

.nudge-proof__shot img {
  width: 100%;
  height: auto;
  border: 1px solid color-mix(in srgb, var(--rl-color-teal-900) 16%, white);
  border-radius: 0.58rem;
  background: var(--rl-color-white);
}

.nudge-proof__shot--notification img {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nudge-proof__shot--featured img {
  max-height: 180px;
  object-fit: contain;
}

.nudge-proof__shot figcaption {
  margin-top: 0.44rem;
  color: var(--rl-text-caption);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.33;
}

.nudge-proof__shot figcaption strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #203B42;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
}

.nudge-proof__shot figcaption span {
  display: block;
  color: #3B535A;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.42;
}

.nudge-proof__impact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.52rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nudge-proof__impact li {
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 74%, white);
  border-radius: var(--rl-radius-sm);
  background: color-mix(in srgb, var(--rl-color-white) 96%, var(--rl-color-cream-100));
  padding: 0.62rem 0.7rem;
  display: grid;
  gap: 0.22rem;
}

.nudge-proof__impact strong {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #203C43;
}

.nudge-proof__impact span {
  color: #3D535A;
  font-size: 0.79rem;
  line-height: 1.4;
  font-weight: 700;
}

body.page-feedback .hero {
  --hero-orb-a: color-mix(in srgb, #E9A859 22%, transparent);
  --hero-orb-b: color-mix(in srgb, #1A454D 14%, transparent);
}

body.page-feedback .hero-visual--simple {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

body.page-feedback .hero-visual--simple .screenshot-frame {
  transform: translateY(2px);
}

body.page-feedback .hero-proof--top-right {
  right: 0.36rem;
  top: 0.74rem;
}

body.page-feedback .hero-proof--bottom-left {
  left: 0.42rem;
  bottom: 1rem;
}

body.page-feedback .hero-visual__thumb--lower-right {
  right: 0.3rem;
  bottom: -0.36rem;
  transform: rotate(3deg);
}

body.page-juice .hero {
  --hero-orb-a: color-mix(in srgb, #F2B85D 22%, transparent);
  --hero-orb-b: color-mix(in srgb, #1A4950 16%, transparent);
}

body.page-juice .hero-visual--simple {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

body.page-juice .hero-visual--simple .screenshot-frame {
  transform: translateY(5px);
}

body.page-juice .hero-proof--top-right {
  right: 0.34rem;
  top: 0.78rem;
}

body.page-juice .hero-proof--bottom-left {
  left: 0.42rem;
  bottom: 1rem;
}

body.page-login .hero,
body.page-admin .hero {
  --hero-orb-a: color-mix(in srgb, #F4AB4B 16%, transparent);
  --hero-orb-b: color-mix(in srgb, #153E46 12%, transparent);
}

body.page-gamified .hero {
  --hero-orb-a: color-mix(in srgb, #F4AB4B 26%, transparent);
  --hero-orb-b: color-mix(in srgb, #1A4148 16%, transparent);
}

body.page-gamified .hero-visual {
  min-height: 534px;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 76%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(58% 44% at 82% 16%, color-mix(in srgb, #F4AB4B 16%, transparent), transparent 72%),
    radial-gradient(44% 44% at 14% 84%, color-mix(in srgb, #1A4148 10%, transparent), transparent 74%),
    color-mix(in srgb, var(--rl-color-white) 95%, var(--rl-color-cream-100));
  padding: 0.48rem;
}

body.page-gamified .hero-proof--top-right {
  right: 0.36rem;
  top: 0.72rem;
}

body.page-gamified .hero-proof--bottom-left {
  left: 0.38rem;
  bottom: 0.98rem;
}

body.page-compare-paper .hero {
  --hero-orb-a: color-mix(in srgb, #F4AB4B 24%, transparent);
  --hero-orb-b: color-mix(in srgb, #0F2D32 16%, transparent);
}

body.page-compare-paper .hero-visual {
  min-height: 528px;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 76%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(56% 46% at 82% 16%, color-mix(in srgb, var(--rl-color-orange-500) 14%, transparent), transparent 72%),
    radial-gradient(44% 42% at 14% 84%, color-mix(in srgb, var(--rl-color-teal-900) 10%, transparent), transparent 74%),
    color-mix(in srgb, var(--rl-color-white) 95%, var(--rl-color-cream-100));
  padding: 0.48rem;
}

body.page-compare-paper .hero-visual .screenshot-frame--tablet {
  border-radius: 0.78rem;
}

body.page-compare-paper .hero-visual .screenshot-frame--tablet img {
  border-radius: 0.62rem;
}

body.page-compare-paper .hero-visual__thumb--lower-right {
  right: -0.12rem;
  bottom: -0.42rem;
}

body.page-compare-paper .hero-visual__thumb--wallet-white {
  z-index: 6;
  padding: 0.58rem !important;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white) !important;
  border-radius: calc(var(--rl-radius-md) + 0.14rem) !important;
  background: #fff !important;
  box-shadow: 0 24px 44px rgba(15, 45, 50, 0.12) !important;
}

body.page-compare-paper .hero-visual__thumb--wallet-white img {
  background: #fff !important;
  border: 0 !important;
  border-radius: 0.58rem;
}

body.page-compare-paper .hero-visual__thumb--wallet-white figcaption {
  margin-top: 0.4rem;
  color: #334b52;
}

body.page-compare-custom .hero {
  --hero-orb-a: color-mix(in srgb, #E89D3A 26%, transparent);
  --hero-orb-b: color-mix(in srgb, #0F2D32 22%, transparent);
}

body.page-compare-custom .hero-visual--dashboard {
  min-height: 548px;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 74%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(56% 42% at 84% 14%, color-mix(in srgb, #E89D3A 16%, transparent), transparent 72%),
    radial-gradient(52% 50% at 14% 84%, color-mix(in srgb, #0F2D32 14%, transparent), transparent 74%),
    color-mix(in srgb, var(--rl-color-white) 95%, var(--rl-color-cream-100));
  padding: 0.48rem;
}

body.page-compare-custom .hero-visual .screenshot-frame img {
  object-position: top center;
}

body.page-compare-custom .hero-proof--top-right {
  right: 0.42rem;
  top: 0.76rem;
}

body.page-compare-custom .hero-proof--bottom-left {
  left: 0.42rem;
  bottom: 1rem;
}

/* Secondary-page hero showcases should sit directly on the hero background. */
.hero-visual--simple,
.hero-visual--dashboard,
body.page-pricing .hero-visual,
body.page-start .hero-visual,
body.page-cafes .hero-visual,
body.page-wallet .hero-visual,
body.page-posters .hero-visual,
body.page-hardware .hero-visual,
body.page-datahub .hero-visual,
body.page-gamified .hero-visual,
body.page-compare-paper .hero-visual,
body.page-compare-custom .hero-visual--dashboard {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  border-radius: 0.95rem;
  border: 1px solid color-mix(in srgb, var(--rl-color-white) 72%, transparent);
  object-fit: contain;
  object-position: top center;
  background: var(--rl-color-white);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.9vw, 2.15rem);
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.3rem, 2.6vw, 1.95rem);
}

.how-flow {
  display: grid;
  gap: clamp(1.05rem, 2.2vw, 1.4rem);
}

body.page-how-it-works .how-flow {
  gap: clamp(0.86rem, 1.9vw, 1.2rem);
}

.how-flow__intro {
  max-width: 64ch;
  margin-bottom: 0;
  color: #365056;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.2rem);
}

.workflow-card {
  display: grid;
  gap: 0.82rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid var(--rl-border-card);
  border-radius: var(--rl-radius-xl);
  background: var(--rl-surface-card);
  box-shadow: var(--rl-shadow-1);
  align-content: start;
}

.workflow-card--small {
  grid-column: span 4;
}

.workflow-card--signin {
  grid-column: span 5;
}

.workflow-card--medium {
  grid-column: span 7;
}

.workflow-card--wide {
  grid-column: span 12;
}

.workflow-card__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.workflow-card__number {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: var(--rl-radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--rl-color-orange-500) 24%, white);
  border: 1px solid color-mix(in srgb, var(--rl-color-orange-500) 56%, white);
  color: #17373E;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  flex: 0 0 auto;
}

.workflow-card__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.14rem 0.58rem;
  border-radius: var(--rl-radius-pill);
  background: color-mix(in srgb, var(--rl-color-teal-900) 8%, white);
  color: #2B474D;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.workflow-card__kicker,
.collection-route__chip,
.datahub-panel__benefit-label,
.datahub-panel__proof-label {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.workflow-card h3,
.workflow-card h4 {
  margin: 0;
  color: #173740;
  line-height: 1.22;
}

.workflow-card h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.workflow-card h4 {
  font-size: 0.92rem;
  margin-bottom: 0.22rem;
}

.workflow-card p,
.workflow-card li {
  margin: 0;
  max-width: none;
  font-size: 0.84rem;
  line-height: 1.56;
  color: #364D53;
}

.workflow-card ul,
.workflow-card ol {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.46rem;
}

.workflow-note {
  display: inline-block;
  max-width: 100%;
  min-height: 2rem;
  padding: 0.24rem 0.58rem;
  border-radius: var(--rl-radius-pill);
  background: color-mix(in srgb, var(--rl-color-orange-500) 16%, white);
  color: #23444B;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.5;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: pretty;
  vertical-align: top;
}

.workflow-signin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(144px, 0.72fr);
  gap: clamp(0.85rem, 1.55vw, 1.05rem);
  align-items: start;
  margin-top: 0.12rem;
}

.workflow-signin-points {
  display: grid;
  gap: 0.66rem;
  align-content: start;
}

.workflow-signin-points span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.68rem 0.78rem 0.68rem 2rem;
  border-radius: var(--rl-radius-md);
  border: 1px solid color-mix(in srgb, var(--rl-border-card) 90%, white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.94));
  color: #25454C;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.42;
  box-shadow: 0 10px 22px rgba(12, 34, 40, 0.055);
}

.workflow-signin-points span::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 50%;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #F5AE42;
  box-shadow: 0 0 0 0.22rem color-mix(in srgb, #F5AE42 18%, white);
}

.workflow-signin-visual {
  align-self: start;
  width: min(100%, 178px);
}

.workflow-signin-visual figcaption {
  max-width: 15rem;
  margin-inline: auto;
  text-align: center;
}

.collection-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.95rem, 1.9vw, 1.2rem);
  align-items: start;
}

.collection-route {
  display: grid;
  gap: 0.86rem;
  padding: clamp(0.94rem, 1.8vw, 1.08rem);
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: var(--rl-radius-md);
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--rl-color-white) 97%, var(--rl-color-cream-100)), #EEF3F5);
  box-shadow: 0 10px 24px rgba(12, 34, 40, 0.08);
  align-content: start;
  min-height: 100%;
}

.collection-route__visual {
  margin: 0;
  justify-self: center;
}

.collection-route__body {
  display: grid;
  gap: 0.42rem;
  align-content: start;
}

.collection-route__body h4,
.collection-route__result h4 {
  margin: 0;
  color: #173740;
  line-height: 1.22;
  font-size: 1rem;
}

.collection-route__body p,
.collection-route__result p {
  margin: 0;
  max-width: none;
  font-size: 0.82rem;
  line-height: 1.56;
  color: #365157;
}

.collection-route__chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.42rem;
  padding: 0.08rem 0.52rem;
  border-radius: var(--rl-radius-pill);
  background: color-mix(in srgb, var(--rl-color-orange-500) 14%, white);
  color: #23444B;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collection-route__result {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 0.98rem 1.04rem;
  border: 1px solid color-mix(in srgb, var(--rl-color-orange-500) 24%, white);
  border-radius: var(--rl-radius-md);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--rl-color-white) 98%, var(--rl-color-cream-100)) 0%, color-mix(in srgb, var(--rl-color-orange-500) 10%, white) 100%);
  box-shadow: 0 10px 24px rgba(12, 34, 40, 0.08);
}

.collection-route__result-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--rl-color-teal-900) 10%, white);
  border: 1px solid color-mix(in srgb, var(--rl-color-teal-900) 12%, white);
  color: #173740;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
  flex: 0 0 auto;
}

.collection-route__result-copy {
  display: grid;
  gap: 0.36rem;
  align-content: start;
}

.collection-route__chip--result {
  background: color-mix(in srgb, var(--rl-color-teal-900) 8%, white);
}

.collection-route__visual-stack {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(92px, 0.62fr);
  gap: 0.62rem;
  align-items: center;
  justify-content: center;
}

.collection-route__visual-stack--wallet {
  width: min(100%, 320px);
  justify-self: center;
}

.collection-route__wallet-pass {
  margin: 0;
  align-self: center;
}

.collection-route__wallet-pass img {
  width: 100%;
  display: block;
  border: 0;
  border-radius: 1rem;
  background: transparent;
  box-shadow: 0 14px 30px rgba(15, 45, 50, 0.12);
}

.collection-route__visual--secondary {
  width: min(100%, 120px);
}

.collection-video-proof,
.till-video-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: clamp(0.95rem, 2vw, 1.25rem);
  align-items: center;
  padding: clamp(0.95rem, 1.9vw, 1.2rem);
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: var(--rl-radius-lg);
  background:
    radial-gradient(62% 58% at 18% 18%, color-mix(in srgb, var(--rl-color-orange-500) 10%, transparent), transparent 72%),
    linear-gradient(150deg, color-mix(in srgb, var(--rl-color-white) 97%, var(--rl-color-cream-100)), color-mix(in srgb, white 91%, #EEF4F4));
  box-shadow: 0 12px 28px rgba(12, 34, 40, 0.08);
}

.collection-video-proof__media,
.till-video-proof__media {
  --app-video-max-width: 320px;
  justify-self: center;
}

.collection-video-proof__copy,
.till-video-proof__copy {
  display: grid;
  gap: 0.44rem;
  align-content: center;
}

.collection-video-proof__copy h4,
.till-video-proof__copy h3 {
  margin: 0;
  color: #173740;
  line-height: 1.16;
  font-size: clamp(1.05rem, 1.65vw, 1.32rem);
}

.collection-video-proof__copy p,
.till-video-proof__copy p {
  margin: 0;
  max-width: 62ch;
  color: #365157;
  font-size: 0.88rem;
  line-height: 1.58;
}

.till-proof {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.till-proof__header {
  max-width: 74ch;
  display: grid;
  gap: 0.58rem;
}

.till-proof__header h2,
.till-proof__header p {
  margin: 0;
}

.till-proof__header p:not(.section-label) {
  color: #365157;
}

.till-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.78rem, 1.5vw, 1rem);
  align-items: stretch;
}

.till-proof-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.till-proof-card {
  min-width: 0;
  display: grid;
  gap: 0.54rem;
  align-content: start;
  padding: clamp(0.78rem, 1.35vw, 0.95rem);
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: var(--rl-radius-md);
  background:
    radial-gradient(54% 42% at 18% 12%, color-mix(in srgb, var(--rl-color-orange-500) 8%, transparent), transparent 72%),
    linear-gradient(160deg, color-mix(in srgb, var(--rl-color-white) 98%, var(--rl-color-cream-100)), #EEF3F5);
  box-shadow: 0 12px 28px rgba(12, 34, 40, 0.075);
}

.till-proof-card .proof-frame--phone {
  width: min(100%, 142px);
  margin-inline: auto;
}

.till-proof-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 1.35rem;
  align-items: center;
  padding: 0.08rem 0.5rem;
  border-radius: var(--rl-radius-pill);
  background: color-mix(in srgb, var(--rl-color-teal-900) 8%, white);
  color: #24474E;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.till-proof-card h3 {
  margin: 0;
  color: #173740;
  font-size: clamp(0.92rem, 1.25vw, 1.02rem);
  line-height: 1.18;
}

.till-proof-card p {
  margin: 0;
  max-width: none;
  color: #365157;
  font-size: 0.76rem;
  line-height: 1.48;
}

.till-proof-card__wallet {
  display: grid;
  place-items: center;
  min-height: 178px;
}

.till-proof-card__wallet img {
  width: min(100%, 178px);
  display: block;
  border: 0;
  border-radius: 1rem;
  background: transparent;
  box-shadow: 0 14px 30px rgba(15, 45, 50, 0.12);
}

.comparison-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: stretch;
  margin-block: clamp(1rem, 2.4vw, 1.5rem);
}

.comparison-proof__panel {
  display: grid;
  gap: 0.82rem;
  align-content: start;
  padding: clamp(1.1rem, 2.4vw, 1.55rem);
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: var(--rl-radius-xl);
  background: color-mix(in srgb, var(--rl-color-white) 96%, var(--rl-color-cream-100));
  box-shadow: var(--rl-shadow-soft);
}

.comparison-proof__panel--paper {
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--rl-color-white) 97%, var(--rl-color-cream-100)), color-mix(in srgb, var(--rl-color-orange-500) 8%, white));
}

.comparison-proof__panel h2,
.comparison-proof__panel p {
  margin: 0;
}

.comparison-proof__panel ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.52rem;
  color: #365157;
}

.comparison-proof__visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  align-items: start;
}

.comparison-proof__visuals .proof-frame--phone {
  width: min(100%, 154px);
}

.comparison-proof__dashboard {
  min-width: 0;
}

.comparison-proof__dashboard img {
  aspect-ratio: 2560 / 1800;
  object-fit: contain;
  object-position: top center;
}

.proof-pair,
.journey-pair,
.reward-pair,
.datahub-panel {
  display: grid;
  gap: 0.9rem;
}

.proof-pair {
  grid-template-columns: repeat(2, minmax(0, 208px));
  justify-content: center;
  align-items: start;
}

.journey-pair {
  grid-template-columns: minmax(0, 208px) minmax(0, 1fr);
  align-items: center;
}

.reward-pair {
  grid-template-columns: repeat(2, minmax(0, 208px));
  justify-content: center;
  align-items: start;
}

.datahub-panel {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: start;
}

.datahub-panel__summary {
  gap: 0.96rem;
}

.datahub-panel__summary h3 {
  margin: 0;
  color: #173740;
  line-height: 1.18;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.datahub-panel__summary > p {
  margin: 0;
  max-width: none;
}

.datahub-panel__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.datahub-panel__benefits li {
  display: grid;
  gap: 0.26rem;
  padding: 0.82rem 0.9rem;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 78%, white);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--rl-color-white) 97%, var(--rl-color-cream-100));
}

.datahub-panel__benefits p {
  margin: 0;
  max-width: none;
  font-size: 0.82rem;
  line-height: 1.52;
  color: #355057;
}

.datahub-panel__benefit-label,
.datahub-panel__proof-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.36rem;
  padding: 0.06rem 0.5rem;
  border-radius: var(--rl-radius-pill);
  background: color-mix(in srgb, var(--rl-color-teal-900) 8%, white);
  color: #23464C;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.datahub-panel__note {
  margin: 0;
  padding: 0.82rem 0.9rem;
  border: 1px solid color-mix(in srgb, var(--rl-color-orange-500) 26%, white);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--rl-color-orange-500) 9%, white);
  color: #345058;
  font-size: 0.82rem;
  line-height: 1.56;
}

.datahub-panel__visual {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.datahub-panel__chart {
  margin: 0;
  padding: 0.58rem;
  gap: 0.5rem;
  border-color: color-mix(in srgb, var(--rl-color-teal-900) 20%, white);
  background:
    radial-gradient(62% 44% at 82% 12%, color-mix(in srgb, var(--rl-color-orange-500) 12%, transparent), transparent 72%),
    linear-gradient(160deg, color-mix(in srgb, #F8FAFB 96%, var(--rl-color-cream-100)), #ECF2F4);
}

.datahub-panel__chart img {
  aspect-ratio: 960 / 1280;
  object-fit: contain;
  object-position: top center;
  max-height: min(56vh, 620px);
  border-color: color-mix(in srgb, var(--rl-color-teal-900) 18%, white);
}

.datahub-panel__chart figcaption,
.datahub-panel__mini figcaption {
  display: grid;
  gap: 0.2rem;
}

.datahub-panel__support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  align-items: start;
}

.datahub-panel__mini.proof-frame--app {
  width: min(100%, 192px);
  justify-self: center;
}

.datahub-panel__mini .device-preview-shell {
  padding: var(--rl-phone-shell-padding-roomy);
}

.proof-frame,
.proof-surface,
.proof-callout {
  border: 1px solid var(--rl-border-card);
  border-radius: var(--rl-radius-md);
  box-shadow: var(--rl-shadow-1);
}

.proof-frame,
.proof-surface {
  margin: 0;
  padding: 0.48rem;
  display: grid;
  gap: 0.34rem;
  align-content: start;
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--rl-surface-card-strong) 94%, #F8FAFB), #E8EFF2);
}

.proof-frame img,
.proof-surface img {
  width: 100%;
  display: block;
  border-radius: 0.82rem;
  border: 1px solid color-mix(in srgb, var(--rl-color-white) 78%, transparent);
  background: var(--rl-color-white);
}

.proof-frame--phone,
.proof-frame--app {
  justify-self: center;
  width: min(100%, 208px);
  padding: 0;
  gap: 0.44rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.proof-frame--app {
  width: min(100%, 208px);
}

.proof-frame--modal {
  justify-self: center;
  width: min(100%, 208px);
  padding: 0.42rem;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--rl-color-white) 98%, var(--rl-color-cream-100)) 0%, color-mix(in srgb, var(--rl-color-white) 92%, var(--rl-color-cream-100)) 100%);
}

.proof-frame--phone img,
.proof-frame--app img {
  aspect-ratio: 1206 / 2622;
  object-fit: contain;
  object-position: top center;
  max-height: none;
  border-radius: var(--rl-phone-shell-inner-radius);
}

.device-preview-shell {
  width: 100%;
  padding: var(--rl-phone-shell-padding);
  border-radius: var(--rl-phone-shell-radius);
  border: 1.2px solid color-mix(in srgb, var(--rl-color-white) 24%, transparent);
  background:
    linear-gradient(165deg, #20353B 0%, #16282C 62%, #122126 100%);
  box-shadow: 0 12px 24px rgba(15, 45, 50, 0.16);
}

.device-preview-shell > img {
  width: 100%;
  display: block;
  border-radius: var(--rl-phone-shell-inner-radius);
  border: 0;
  background: transparent;
}

.proof-frame--modal img {
  aspect-ratio: 1206 / 1680;
  object-fit: cover;
  object-position: top center;
  max-height: none;
}

.proof-frame--modal .device-preview-shell {
  width: 100%;
  padding: var(--rl-phone-shell-padding);
  border-radius: var(--rl-phone-shell-radius);
}

.proof-frame--modal .device-preview-shell > img {
  aspect-ratio: 1206 / 1680;
  object-fit: cover;
  object-position: top center;
  max-height: none;
}

.proof-frame figcaption,
.proof-surface figcaption {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--rl-text-caption);
  font-weight: 700;
  text-wrap: pretty;
}

.proof-callout {
  padding: 0.78rem 0.84rem;
  display: grid;
  gap: 0.32rem;
  align-content: start;
  background: var(--rl-surface-card-strong);
}

.proof-callout h4 {
  margin: 0;
  font-size: 0.88rem;
  color: #183A41;
  line-height: 1.28;
}

.proof-callout p {
  margin: 0;
  max-width: none;
  font-size: 0.78rem;
  line-height: 1.48;
  color: #3A5058;
}

.datahub-panel .proof-frame {
  margin: 0;
  justify-self: center;
}

.cta-band__note {
  margin-top: 0.88rem;
  font-size: 0.82rem;
  color: #385057;
}

.card {
  display: grid;
  border: 1px solid var(--rl-border-card);
  border-radius: var(--rl-radius-xl);
  background: var(--rl-surface-card);
  box-shadow: var(--rl-shadow-1);
  padding: clamp(1.46rem, 2.9vw, 2.08rem);
  align-content: start;
  gap: 1rem;
  transition:
    transform var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease)),
    box-shadow var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease));
}

.card--recommended {
  border: 2px solid color-mix(in srgb, var(--rl-color-orange-500) 58%, white);
  box-shadow: var(--rl-shadow-pop);
}

.card p:last-child {
  margin-bottom: 0;
}

.card p {
  line-height: 1.7;
  color: #33484E;
  max-width: 56ch;
  text-wrap: pretty;
}

.card .media-proof {
  margin-top: 1.3rem;
}

.card ul,
.card ol {
  display: grid;
  gap: 0.58rem;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-2px);
    box-shadow: var(--rl-shadow-pop);
  }
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rl-space-2);
  margin-top: var(--rl-space-3);
}

.inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.5rem 0.78rem;
  border-radius: var(--rl-radius-pill);
  background: color-mix(in srgb, var(--rl-color-teal-900) 9%, white);
  color: #1F3A40;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
}

.inline-links a:hover {
  background: color-mix(in srgb, var(--rl-color-orange-500) 24%, white);
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--rl-radius-lg);
  overflow: hidden;
  border: 1px solid var(--rl-border-soft);
  background: var(--rl-bg-card);
  box-shadow: var(--rl-shadow-soft);
}

.comparison th,
.comparison td {
  padding: 0.92rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid color-mix(in srgb, var(--rl-border-soft) 70%, white);
  font-size: 0.91rem;
  line-height: 1.45;
}

.comparison thead th {
  background: color-mix(in srgb, var(--rl-color-teal-900) 88%, white);
  color: white;
}

.comparison tbody tr:nth-child(even) td {
  background: color-mix(in srgb, var(--rl-color-cream-200) 38%, white);
}

.comparison-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-mobile {
  display: none;
}

.comparison-mobile__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--rl-space-3);
}

.comparison-mobile__item {
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: var(--rl-radius-md);
  background: color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100));
  box-shadow: var(--rl-shadow-soft);
  padding: 0.98rem;
  display: grid;
  gap: 0.52rem;
  align-content: start;
}

.comparison-mobile__item h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.28;
  color: var(--rl-text-strong);
}

.comparison-mobile__row {
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 84%, white);
  border-radius: var(--rl-radius-sm);
  background: color-mix(in srgb, var(--rl-color-white) 96%, var(--rl-color-cream-100));
  padding: 0.56rem 0.6rem;
  display: grid;
  gap: 0.22rem;
}

.comparison-mobile__label {
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #355058;
  font-weight: 800;
}

.comparison-mobile__value {
  margin: 0;
  max-width: none;
  font-size: 0.82rem;
  line-height: 1.52;
  color: #364D53;
  font-weight: 600;
}

.comparison-mobile__value--highlight {
  color: #183940;
  font-weight: 800;
}

.comparison-scroll-note {
  margin-top: var(--rl-space-3);
}

.highlight {
  background: color-mix(in srgb, var(--rl-color-orange-500) 22%, white);
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--rl-space-4);
}

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

.pricing-core-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
  align-items: start;
  justify-items: center;
  margin-top: 1rem;
}

.pricing-growth-proof {
  display: grid;
  gap: 0.82rem;
  margin-top: 1rem;
}

.pricing-growth-proof__workspace img,
.pricing-growth-proof__support img {
  aspect-ratio: 2560 / 1800;
  object-fit: contain;
  object-position: top center;
}

.pricing-growth-proof__support {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
  align-items: start;
}

.pricing-growth-proof__support .proof-surface {
  min-height: 100%;
}

.pricing-poster-fit,
.pricing-print-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
  margin-top: 1rem;
  align-items: start;
}

.pricing-poster-fit .screenshot-frame {
  width: 100%;
}

.pricing-poster-fit .screenshot-frame--poster {
  padding: 0.38rem;
}

.price {
  font: 800 clamp(1.7rem, 3vw, 2.3rem) / 1 var(--rl-font-heading);
  color: var(--rl-text-strong);
  margin-bottom: var(--rl-space-3);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--rl-radius-pill);
  background: color-mix(in srgb, var(--rl-color-orange-500) 24%, white);
  color: #1E3940;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.bespoke-panel-wrap {
  margin-top: clamp(1.4rem, 3vw, 2.15rem);
}

.bespoke-panel {
  border-radius: var(--rl-radius-lg);
  border: 1px solid color-mix(in srgb, var(--rl-color-teal-900) 18%, white);
  background:
    radial-gradient(70% 88% at 10% 18%, color-mix(in srgb, var(--rl-color-orange-500) 14%, transparent), transparent 72%),
    radial-gradient(62% 72% at 92% 88%, color-mix(in srgb, var(--rl-color-teal-900) 12%, transparent), transparent 74%),
    linear-gradient(165deg, color-mix(in srgb, var(--rl-color-white) 95%, var(--rl-color-cream-100)) 0%, color-mix(in srgb, var(--rl-color-white) 86%, #F7E8D0) 100%);
  box-shadow: var(--rl-shadow-pop);
  padding: clamp(1.5rem, 3.6vw, 2.4rem);
}

.bespoke-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.2rem, 2.8vw, 2rem);
  align-items: start;
}

.bespoke-panel__content {
  display: grid;
  gap: 0.8rem;
}

.bespoke-panel__eyebrow {
  margin: 0;
  color: #7A4A16;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bespoke-panel__lede,
.bespoke-panel__meta,
.bespoke-panel__caveat,
.bespoke-panel__note {
  margin: 0;
  color: #334A50;
  line-height: 1.65;
}

.bespoke-panel__price {
  margin: 0;
  color: var(--rl-text-strong);
  font: 800 clamp(1.95rem, 3vw, 2.55rem) / 1.02 var(--rl-font-heading);
}

.bespoke-panel__price span {
  display: block;
  margin-top: 0.2rem;
  color: #465D64;
  font-size: 0.42em;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bespoke-panel__meta {
  font-size: 0.95rem;
  font-weight: 700;
  color: #284148;
}

.bespoke-panel__caveat {
  font-size: 0.9rem;
}

.bespoke-panel__list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.62rem;
  color: #233A40;
}

.bespoke-panel__list li {
  line-height: 1.58;
}

.bespoke-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.15rem;
}

.bespoke-panel__note {
  font-size: 0.82rem;
  color: #4B6268;
}

.pricing-bespoke-teaser {
  margin: 1rem 0 0;
  padding: 0.92rem 1rem;
  border-radius: var(--rl-radius-md);
  border: 1px solid color-mix(in srgb, var(--rl-color-orange-500) 20%, white);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rl-color-white) 96%, #FAEEDD) 0%, color-mix(in srgb, var(--rl-color-white) 92%, var(--rl-color-cream-100)) 100%);
  color: #31484F;
  line-height: 1.58;
}

.pricing-bespoke-teaser a {
  font-weight: 700;
}

.cta-band {
  border-radius: var(--rl-radius-lg);
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 75%, white);
  background:
    radial-gradient(72% 90% at 8% 15%, color-mix(in srgb, var(--rl-color-orange-500) 15%, transparent), transparent 68%),
    radial-gradient(56% 70% at 88% 85%, color-mix(in srgb, var(--rl-color-teal-900) 10%, transparent), transparent 72%),
    color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100));
  box-shadow: var(--rl-shadow-pop);
  padding: clamp(1.7rem, 3.6vw, 2.75rem);
  display: grid;
  gap: 0.8rem;
}

.cta-band .actions {
  margin-top: 0.5rem;
}

.cta-band p {
  margin: 0;
  max-width: 60ch;
  color: #334A50;
  line-height: 1.61;
}

.cta-band p:last-child {
  margin-bottom: 0;
}

.poster-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--rl-space-4);
}

.poster-stack figure {
  margin: 0;
  border-radius: var(--rl-radius-md);
  border: 1px solid var(--rl-border-soft);
  padding: 0.42rem;
  background: linear-gradient(160deg, #20353B 0%, #16282C 62%, #122126 100%);
  box-shadow: var(--rl-shadow-soft);
}

.poster-stack img {
  border-radius: 0.7rem;
  aspect-ratio: 1587 / 2245;
  object-fit: cover;
  background: var(--rl-color-white);
}

.media-proof {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.25rem;
}

.media-proof figure {
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 84%, white);
  border-radius: var(--rl-radius-md);
  background: color-mix(in srgb, var(--rl-color-white) 96%, var(--rl-color-cream-100));
  padding: 0.5rem;
  box-shadow: var(--rl-shadow-soft);
}

.media-proof figure figcaption {
  margin: 0.48rem 0 0;
  font-size: 0.75rem;
  line-height: 1.42;
  color: #3B5259;
  font-weight: 700;
  text-wrap: pretty;
}

.media-proof img {
  width: 100%;
  border-radius: 0.62rem;
  border: 1px solid color-mix(in srgb, var(--rl-color-white) 65%, transparent);
  background: var(--rl-color-white);
}

.media-proof--tall img {
  max-height: none;
  object-fit: contain;
  object-position: top center;
}

.media-proof--dashboard {
  gap: 0.72rem;
}

.media-proof--split-data,
.media-proof--mixed-data {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.media-proof--app-data {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: start;
}

.media-proof--app-data .media-proof__figure--phone {
  width: min(100%, 190px);
}

.media-proof--app-data .media-proof__tablet-frame {
  width: min(100%, 300px);
}

.media-proof--dashboard figure {
  padding: 0.34rem;
  border-color: color-mix(in srgb, var(--rl-color-teal-900) 20%, white);
  background:
    radial-gradient(64% 46% at 82% 12%, color-mix(in srgb, var(--rl-color-orange-500) 12%, transparent), transparent 72%),
    color-mix(in srgb, var(--rl-color-white) 97%, var(--rl-color-cream-100));
}

.media-proof--dashboard img,
.media-proof__figure--dashboard img {
  width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: top center;
  max-height: none;
  border: 0;
  background: transparent;
}

.media-proof__figure--phone img {
  aspect-ratio: 1206 / 2622;
  object-fit: contain;
  object-position: top center;
  max-height: none;
}

.media-proof__figure--tablet,
.proof-surface--tablet-proof {
  align-content: start;
}

.media-proof__tablet-frame,
.proof-surface__tablet-frame,
.hero-visual__tablet-frame {
  width: min(100%, 260px);
  margin-inline: auto;
}

.media-proof--split-data .media-proof__tablet-frame {
  width: min(100%, 290px);
}

.media-proof--mixed-data .media-proof__tablet-frame {
  width: min(100%, 240px);
}

.pricing-growth-proof__support .proof-surface__tablet-frame {
  width: min(100%, 188px);
}

.hero-visual__tablet-frame {
  width: 100%;
}

.media-proof .screenshot-frame--tablet,
.proof-surface .screenshot-frame--tablet,
.hero-visual__thumb .screenshot-frame--tablet {
  display: block;
  padding: 0.28rem;
  border: 0;
  background:
    radial-gradient(70% 48% at 85% 14%, color-mix(in srgb, var(--rl-color-orange-500) 18%, transparent), transparent 72%),
    radial-gradient(60% 52% at 14% 84%, color-mix(in srgb, var(--rl-color-teal-900) 16%, transparent), transparent 74%),
    linear-gradient(160deg, #1D3338 0%, #16282D 62%, #122025 100%);
}

.media-proof .screenshot-frame--tablet img,
.proof-surface .screenshot-frame--tablet img,
.hero-visual__thumb .screenshot-frame--tablet img,
.pricing-growth-proof__support .screenshot-frame--tablet img {
  width: 100%;
  aspect-ratio: auto;
  max-height: none;
  object-fit: contain;
  object-position: top center;
  border: 0;
  border-radius: var(--rl-tablet-shell-inner-radius);
  background: transparent;
}

.media-proof--tall {
  justify-items: center;
}

.media-proof--tall figure {
  width: min(100%, 208px);
}

.media-proof__figure--phone {
  width: min(100%, 208px);
  justify-self: center;
  padding: 0;
  gap: 0.44rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.media-proof__figure--phone img {
  max-height: none;
  border-radius: 0.9rem;
}

.media-proof--notifications {
  gap: 0.82rem;
}

.media-proof--notifications figure {
  padding: 0.42rem;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--rl-color-white) 98%, var(--rl-color-cream-100)) 0%, color-mix(in srgb, var(--rl-color-white) 93%, var(--rl-color-cream-100)) 100%);
}

.media-proof--notifications img {
  aspect-ratio: auto;
  object-fit: contain;
}

.media-proof--notifications figure:has(> img[src*="app-store-custom-notification-clean"]),
.media-proof--notifications figure:has(> img[src*="notification-close-to-reward-clean"]),
.media-proof--notifications figure:has(> img[src*="notification-reward-ready-clean"]),
.media-proof figure:has(> img[src*="app-wallet-pass-iso-clean"]) {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-proof__shot:has(> img[src*="app-store-custom-notification-clean"]),
.hero-proof__shot:has(> img[src*="notification-close-to-reward-clean"]),
.hero-proof__shot:has(> img[src*="notification-reward-ready-clean"]),
.hero-proof__shot:has(> img[src*="app-wallet-pass-iso-clean"]),
.hero-visual__thumb:has(> img[src*="app-store-custom-notification-clean"]),
.hero-visual__thumb:has(> img[src*="notification-close-to-reward-clean"]),
.hero-visual__thumb:has(> img[src*="notification-reward-ready-clean"]),
.hero-visual__thumb:has(> img[src*="app-wallet-pass-iso-clean"]),
.lp-visual-stack figure:has(> img[src*="app-store-custom-notification-clean"]),
.lp-visual-stack figure:has(> img[src*="notification-close-to-reward-clean"]),
.lp-visual-stack figure:has(> img[src*="notification-reward-ready-clean"]),
.lp-visual-stack figure:has(> img[src*="app-wallet-pass-iso-clean"]) {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.page-hardware .hero-visual__thumb--wallet-showcase:has(> img[src*="app-wallet-pass-iso-clean"]) {
  padding: 0.62rem !important;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white) !important;
  border-radius: calc(var(--rl-radius-md) + 0.14rem) !important;
  background: #fff !important;
  box-shadow: 0 24px 44px rgba(15, 45, 50, 0.12) !important;
}

body.page-hardware .hero-visual__thumb--wallet-showcase:has(> img[src*="app-wallet-pass-iso-clean"]) img {
  background: #fff !important;
}

.media-proof--notifications figure:has(> img[src*="app-store-custom-notification-clean"]) figcaption,
.media-proof--notifications figure:has(> img[src*="notification-close-to-reward-clean"]) figcaption,
.media-proof--notifications figure:has(> img[src*="notification-reward-ready-clean"]) figcaption,
.media-proof figure:has(> img[src*="app-wallet-pass-iso-clean"]) figcaption,
.hero-visual__thumb:has(> img[src*="app-store-custom-notification-clean"]) figcaption,
.hero-visual__thumb:has(> img[src*="notification-close-to-reward-clean"]) figcaption,
.hero-visual__thumb:has(> img[src*="notification-reward-ready-clean"]) figcaption,
.hero-visual__thumb:has(> img[src*="app-wallet-pass-iso-clean"]) figcaption,
.lp-visual-stack figure:has(> img[src*="app-store-custom-notification-clean"]) figcaption,
.lp-visual-stack figure:has(> img[src*="notification-close-to-reward-clean"]) figcaption,
.lp-visual-stack figure:has(> img[src*="notification-reward-ready-clean"]) figcaption,
.lp-visual-stack figure:has(> img[src*="app-wallet-pass-iso-clean"]) figcaption {
  margin-top: 0.44rem;
}

img[src*="app-store-custom-notification-clean"],
img[src*="notification-close-to-reward-clean"],
img[src*="notification-reward-ready-clean"],
img[src*="app-wallet-pass-iso-clean"] {
  background: transparent !important;
  border: 0 !important;
}

body.page-wallet .hero-visual__thumb--wallet-pass {
  width: min(232px, 39vw);
  padding: 0.5rem;
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 84%, white);
  border-radius: calc(var(--rl-radius-md) + 0.16rem);
  background:
    radial-gradient(70% 58% at 80% 18%, color-mix(in srgb, var(--rl-color-orange-500) 8%, transparent), transparent 76%),
    color-mix(in srgb, var(--rl-color-white) 96%, var(--rl-color-cream-100));
  box-shadow: 0 22px 44px rgba(15, 45, 50, 0.13);
  backdrop-filter: blur(10px);
}

body.page-wallet .hero-visual__thumb--wallet-pass img {
  display: block;
  border: 0 !important;
  border-radius: 0.72rem;
  background: transparent !important;
}

body.page-wallet .media-proof__figure--wallet-pass {
  width: min(100%, 238px);
  margin-inline: auto;
}

@media (min-width: 1024px) {
  body.page-wallet .media-proof__figure--wallet-pass {
    width: min(100%, 220px);
    margin-inline: auto;
  }
}

.media-proof--phone-pair {
  grid-template-columns: repeat(2, minmax(0, 208px));
  gap: 0.72rem;
  justify-content: center;
}

.media-proof--phone-pair figure {
  display: grid;
  gap: 0.18rem;
  align-content: start;
  width: min(100%, 208px);
  justify-self: center;
}

.media-proof--phone-pair img {
  aspect-ratio: 1206 / 2622;
  object-fit: contain;
  object-position: top center;
  max-height: none;
}

.media-proof--owner-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
  align-items: start;
}

.media-proof--owner-pair figure {
  padding: 0.5rem;
  border-color: color-mix(in srgb, var(--rl-color-teal-900) 20%, white);
  background:
    radial-gradient(64% 46% at 82% 12%, color-mix(in srgb, var(--rl-color-orange-500) 12%, transparent), transparent 72%),
    color-mix(in srgb, var(--rl-color-white) 97%, var(--rl-color-cream-100));
}

.media-proof--owner-pair img {
  aspect-ratio: 2560 / 1800;
  object-fit: contain;
  object-position: top center;
  border-color: color-mix(in srgb, var(--rl-color-teal-900) 18%, white);
}

.photo-proof {
  margin: 0;
  display: grid;
  gap: 0.5rem;
  border: 1px solid var(--rl-border-card);
  border-radius: var(--rl-radius-md);
  background: var(--rl-surface-card-strong);
  padding: 0.5rem;
  box-shadow: var(--rl-shadow-1);
}

.photo-proof img {
  width: 100%;
  border-radius: 0.68rem;
  border: 1px solid color-mix(in srgb, var(--rl-color-white) 65%, transparent);
  background: var(--rl-color-white);
  object-fit: cover;
}

.photo-proof figcaption {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.42;
  color: #3B5259;
  font-weight: 700;
  text-wrap: pretty;
}

.photo-proof--wide img {
  aspect-ratio: 4 / 3;
}

.photo-proof--tall img {
  aspect-ratio: 1600 / 2286;
  object-position: center top;
}

.app-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: var(--rl-space-3);
}

.app-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
  min-height: 0;
  line-height: 0;
  overflow: hidden;
  box-shadow: var(--rl-shadow-soft);
  transition:
    transform var(--rl-dur-fast) var(--rl-ease),
    box-shadow var(--rl-dur-base) var(--rl-ease),
    border-color var(--rl-dur-base) var(--rl-ease);
}

.app-badge-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--rl-shadow-pop);
}

.app-badge-link.is-target {
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--rl-color-orange-500) 22%, transparent), var(--rl-shadow-pop);
}

.app-badge-link img {
  width: clamp(188px, 15.8vw, 216px);
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.app-handoff {
  margin-top: 0.72rem;
  padding: 0.82rem 0.88rem;
  border-radius: var(--rl-radius-md);
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  background: color-mix(in srgb, var(--rl-color-white) 96%, var(--rl-color-cream-100));
  box-shadow: var(--rl-shadow-soft);
  display: grid;
  gap: 0.24rem;
}

.app-handoff__title {
  margin: 0;
  color: #1C3A40;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.app-handoff__title::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--rl-color-orange-500) 82%, white);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--rl-color-orange-500) 38%, transparent);
  animation: app-handoff-pulse 1.25s ease-out infinite;
}

.app-handoff__copy {
  margin: 0;
  max-width: none;
  color: #365059;
  font-size: 0.82rem;
  line-height: 1.5;
}

body.is-app-handoff-manual .app-handoff__title::before {
  animation: none;
  box-shadow: none;
}

@keyframes app-handoff-pulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--rl-color-orange-500) 40%, transparent);
  }

  70% {
    box-shadow: 0 0 0 0.45rem color-mix(in srgb, var(--rl-color-orange-500) 0%, transparent);
  }

  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--rl-color-orange-500) 0%, transparent);
  }
}

.app-download-note {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 0.82rem;
  color: #3D5056;
}

.customer-route-panel {
  margin-top: var(--rl-space-4);
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: var(--rl-radius-md);
  background: color-mix(in srgb, var(--rl-color-white) 95%, var(--rl-color-cream-100));
  box-shadow: var(--rl-shadow-soft);
  padding: 1.28rem;
}

.customer-route-panel h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.customer-route-panel p {
  margin-bottom: 0;
  max-width: none;
  color: #3D5056;
  font-size: 0.9rem;
}

.customer-route-panel__list {
  margin: 0.7rem 0 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.52rem;
}

.customer-route-panel__list li {
  color: #355057;
  font-size: 0.88rem;
  line-height: 1.52;
}

.customer-route-panel__meta {
  margin-top: 0.82rem;
  padding-top: 0.72rem;
  border-top: 1px solid color-mix(in srgb, var(--rl-border-soft) 80%, white);
  color: #40545A;
  font-size: 0.84rem;
  line-height: 1.48;
}

.legal-doc {
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 80%, white);
  border-radius: var(--rl-radius-lg);
  background: color-mix(in srgb, var(--rl-color-white) 96%, var(--rl-color-cream-100));
  box-shadow: var(--rl-shadow-soft);
  padding: clamp(1.22rem, 2.8vw, 2.1rem);
  max-width: 920px;
  margin-inline: auto;
}

.legal-doc h2 {
  font-size: clamp(1.3rem, 2.7vw, 1.9rem);
  margin-bottom: 0.9rem;
}

.legal-doc h3 {
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  margin-top: 1.3rem;
  margin-bottom: 0.5rem;
}

.legal-doc p {
  max-width: none;
  color: #2E3F44;
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 1rem;
}

.legal-doc ul {
  margin: 0 0 1.1rem;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.62rem;
}

.legal-doc li {
  color: #2E3F44;
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-doc li strong {
  color: #1A3940;
}

.legal-meta {
  margin-top: -0.2rem;
  margin-bottom: 1.15rem;
  font-size: 0.84rem;
  color: #486067;
  font-weight: 700;
}

body.page-get-app .hero {
  --hero-orb-a: color-mix(in srgb, #F0A548 28%, transparent);
  --hero-orb-b: color-mix(in srgb, #143F47 18%, transparent);
}

body.page-get-app .hero-visual {
  min-height: 520px;
}

body.page-get-app .hero-proof--top-right {
  right: 0.45rem;
  top: 0.7rem;
}

body.page-get-app .hero-proof--bottom-left {
  left: 0.45rem;
  bottom: 1rem;
}

body.page-get-app .hero-visual__thumb--lower-right {
  right: -0.3rem;
  bottom: -0.9rem;
}

body.page-legal .hero {
  --hero-orb-a: color-mix(in srgb, #F4AB4B 17%, transparent);
  --hero-orb-b: color-mix(in srgb, #0F2D32 13%, transparent);
}

body.page-legal .hero__grid {
  grid-template-columns: minmax(0, 1fr);
}

body.page-legal .hero {
  padding-block: clamp(2.2rem, 4.8vw, 3.6rem);
}

.form-wrap {
  display: grid;
  gap: var(--rl-space-4);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--rl-space-3);
}

.field-group {
  display: grid;
  gap: var(--rl-space-2);
}

.field-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rl-text-strong);
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.6rem 0.72rem;
  border-radius: var(--rl-radius-sm);
  border: 1px solid var(--rl-border-strong);
  background: var(--rl-color-white);
  color: var(--rl-text-primary);
  font: 500 0.95rem / 1.42 var(--rl-font-body);
}

.field-group textarea {
  min-height: 6.4rem;
  resize: vertical;
}

.form-note {
  font-size: 0.84rem;
  color: #3B4D53;
  line-height: 1.5;
}

.status {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1C3940;
}

.site-footer {
  border-top: 1px solid color-mix(in srgb, var(--rl-border-soft) 75%, transparent);
  background: color-mix(in srgb, var(--rl-color-teal-900) 94%, white);
  color: var(--rl-color-white);
  padding-block: clamp(2.4rem, 5vw, 3rem);
}

.site-footer a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, white 34%, transparent);
  text-underline-offset: 0.18em;
  transition:
    color var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease)),
    text-decoration-color var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease));
}

.site-footer a:hover {
  color: color-mix(in srgb, white 88%, var(--rl-color-orange-500));
  text-decoration-color: currentColor;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: clamp(1.7rem, 4vw, 2.5rem);
}

.site-footer h2,
.site-footer h3 {
  color: var(--rl-color-white);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.site-footer__grid > div:last-child ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem 0.85rem;
}

.site-footer__meta {
  margin-top: var(--rl-space-5);
  margin-bottom: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: color-mix(in srgb, white 76%, transparent);
}

.page-links {
  margin-top: clamp(1.9rem, 3.8vw, 2.7rem);
  padding: clamp(1.25rem, 2.8vw, 1.8rem);
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 76%, white);
  border-radius: var(--rl-radius-lg);
  background: color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100));
  box-shadow: var(--rl-shadow-soft);
}

body.page-notifications .page-links,
body.page-datahub .page-links,
body.page-how-it-works .page-links {
  margin-top: clamp(1.15rem, 2.6vw, 1.75rem);
}

body.page-start .cta-band,
body.page-pricing .cta-band,
body.page-datahub .cta-band,
body.page-notifications .cta-band,
body.page-how-it-works .cta-band {
  padding: clamp(1.45rem, 3vw, 2.2rem);
}

.page-links h2 {
  margin-bottom: var(--rl-space-3);
  font-size: 1.25rem;
}

.page-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.82rem;
}

.page-links a {
  display: grid;
  align-content: start;
  min-height: 100%;
  text-decoration: none;
  border: 1px solid var(--rl-border-soft);
  border-radius: var(--rl-radius-md);
  background: color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100));
  padding: 0.88rem 0.96rem;
  color: #1F3A40;
  font-weight: 700;
  line-height: 1.42;
  transition:
    transform var(--rl-motion-fast, var(--rl-dur-fast)) var(--rl-motion-ease-standard, var(--rl-ease)),
    border-color var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease)),
    box-shadow var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease)),
    background-color var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease));
}

.page-links a:hover {
  border-color: color-mix(in srgb, var(--rl-color-orange-500) 46%, var(--rl-border-soft));
  box-shadow: var(--rl-shadow-soft);
  transform: translateY(-2px);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--rl-space-4);
}

.section > .container.info-strip + .container.info-strip {
  margin-top: clamp(0.85rem, 1.6vw, 1.15rem);
}

.info-strip--four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-strip__item {
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: var(--rl-radius-md);
  background: color-mix(in srgb, var(--rl-color-white) 95%, var(--rl-color-cream-100));
  box-shadow: var(--rl-shadow-soft);
  padding: 1.12rem 1.14rem;
  display: grid;
  gap: 0.34rem;
  align-content: start;
}

.info-strip__item strong {
  font-size: 0.74rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #213D44;
}

.info-strip__item p {
  margin: 0;
  max-width: none;
  font-size: 0.87rem;
  line-height: 1.56;
  color: #3A5057;
}

.js-public-polish .rl-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--rl-motion-slow, 340ms) var(--rl-motion-ease-decelerate, var(--rl-ease)),
    transform var(--rl-motion-slow, 340ms) var(--rl-motion-ease-decelerate, var(--rl-ease));
  transition-delay: var(--rl-reveal-delay, 0ms);
}

.js-public-polish .rl-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .menu-btn,
  .mobile-nav,
  .mobile-nav__backdrop,
  .mobile-nav__panel,
  .js-public-polish .rl-reveal {
    transition-duration: 1ms !important;
    animation: none !important;
    transform: none !important;
  }
}

.legal-summary {
  max-width: 920px;
  margin: 0 auto clamp(1rem, 2.4vw, 1.5rem);
  display: grid;
  gap: 1rem;
}

.legal-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--rl-space-3);
}

.legal-summary__item {
  border: 1px solid color-mix(in srgb, var(--rl-border-soft) 82%, white);
  border-radius: var(--rl-radius-md);
  background: color-mix(in srgb, var(--rl-color-white) 95%, var(--rl-color-cream-100));
  box-shadow: var(--rl-shadow-soft);
  padding: 1.12rem 1.14rem;
  display: grid;
  gap: 0.34rem;
}

.legal-summary__item strong {
  font-size: 0.74rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #203C43;
}

.legal-summary__item p {
  margin: 0;
  max-width: none;
  font-size: 0.87rem;
  line-height: 1.58;
  color: #3B5057;
}

.legal-summary__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rl-space-2);
}

.legal-summary__links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.5rem 0.78rem;
  border-radius: var(--rl-radius-pill);
  background: color-mix(in srgb, var(--rl-color-teal-900) 9%, white);
  color: #1F3A40;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
}

.legal-summary__links a:hover {
  background: color-mix(in srgb, var(--rl-color-orange-500) 24%, white);
}

@media (max-width: 1080px) {
  .site-header__row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--rl-space-3);
  }

  .site-nav {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    overflow: visible;
  }

  .hero__grid,
  .grid-2,
  .grid-3,
  .info-strip,
  .legal-summary__grid,
  .bespoke-panel__grid,
  .pricing-grid,
  .site-footer__grid,
  .page-links ul,
  .field-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .poster-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--rl-space-3);
  }

  .poster-stack figure:last-child {
    grid-column: 1 / -1;
    width: min(360px, 100%);
    justify-self: center;
  }

  .site-header__actions .btn-secondary,
  .site-header__actions .utility-link {
    display: none;
  }

  .site-footer__grid > div:last-child ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chips li:nth-child(n + 7) {
    display: none;
  }

  .workflow-card--small,
  .workflow-card--signin,
  .workflow-card--medium {
    grid-column: span 6;
  }

  .media-proof--dashboard img,
  .media-proof__figure--dashboard img {
    max-height: min(60vh, 560px);
  }

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

  body.page-pricing .pricing-fit-board {
    min-height: auto;
  }

  body.page-pricing .pricing-fit-card--starter {
    grid-template-columns: minmax(0, 1fr);
  }

  body.page-bespoke-app .bespoke-process-visual {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  body.page-bespoke-app .bespoke-process-card {
    grid-row: auto;
  }

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

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

  .datahub-panel__chart img {
    max-height: min(54vh, 560px);
  }

  .hero-visual {
    min-height: 0;
    gap: var(--rl-space-3);
    align-content: start;
  }

  .hero-visual .screenshot-frame {
    width: min(340px, 84vw);
  }

  .hero-visual .screenshot-frame--phone {
    width: min(232px, 72vw);
  }

  .hero-visual .screenshot-frame--tablet {
    width: min(440px, 92vw);
  }

  .hero-proof,
  .hero-visual__thumb {
    position: relative;
    inset: auto;
    transform: none !important;
    width: min(360px, 100%);
    justify-self: center;
  }

  .hero-visual__thumb.hero-visual__thumb--phone {
    width: 196px;
    inline-size: min(196px, 100%);
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .site-footer__grid > div:last-child ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-summary__links {
    display: grid;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-block: clamp(2.75rem, 9vw, 3.55rem);
  }

  .section {
    padding-block: clamp(2.75rem, 9vw, 3.45rem);
  }

  .collection-routes {
    grid-template-columns: 1fr;
  }

  .collection-route__result {
    grid-template-columns: 1fr;
  }

  .media-proof--split-data,
  .media-proof--mixed-data,
  .media-proof--app-data {
    grid-template-columns: minmax(0, 1fr);
  }

  .collection-route__result-icon {
    display: none;
  }

  .site-header__actions {
    gap: var(--rl-space-2);
  }

  .actions .btn {
    width: 100%;
    justify-content: center;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .actions {
    flex-direction: row;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero .actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__grid,
  .grid-2,
  .grid-3,
  .info-strip,
  .bespoke-panel__grid,
  .pricing-grid {
    gap: 1.28rem;
  }

  .bespoke-panel {
    padding: 1.38rem;
  }

  .bespoke-panel__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .pricing-bespoke-teaser {
    padding: 0.94rem;
    font-size: 0.91rem;
  }

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

  .poster-stack figure:last-child {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }

  .chips {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--rl-space-2);
  }

  .hero .chips li:nth-child(n + 3) {
    display: none;
  }

  .chips li:nth-child(n + 4) {
    display: none;
  }

  body.page-pricing .pricing-fit-board,
  .pricing-core-proof,
  .pricing-growth-proof__support,
  .pricing-poster-fit,
  .pricing-print-proof {
    grid-template-columns: 1fr;
  }

  body.page-pricing .pricing-fit-board {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 0.2rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  body.page-pricing .pricing-fit-board::-webkit-scrollbar {
    display: none;
  }

  body.page-pricing .pricing-fit-board > * {
    flex: 0 0 min(22rem, 86vw);
    scroll-snap-align: start;
  }

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

  body.page-pricing .pricing-fit-card,
  body.page-pricing .pricing-fit-callout {
    padding: 0.86rem;
  }

  body.page-pricing .pricing-fit-card--starter,
  body.page-pricing .pricing-fit-callout {
    grid-column: auto;
  }

  body.page-pricing .pricing-fit-callout .btn {
    width: 100%;
    justify-content: center;
  }

  body.page-pricing .pricing-fit-process,
  body.page-bespoke-app .bespoke-process-card__steps {
    grid-template-columns: minmax(0, 1fr);
  }

  body.page-pricing .pricing-fit-card__media {
    min-height: 8.6rem;
  }

  body.page-bespoke-app .bespoke-process-visual {
    padding: 0.76rem;
  }

  .proof-pair,
  .journey-pair,
  .reward-pair,
  .datahub-panel {
    grid-template-columns: 1fr;
  }

  .start-path__steps li {
    padding: 0.82rem 0.86rem;
  }

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

  .workflow-card--small,
  .workflow-card--signin,
  .workflow-card--medium,
  .workflow-card--wide {
    grid-column: auto;
  }

  .workflow-signin-layout {
    grid-template-columns: 1fr;
  }

  .workflow-signin-visual {
    justify-self: center;
  }

  .app-badge-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    align-items: center;
    max-width: 24rem;
  }

  .app-badge-link {
    width: 100%;
  }

  .app-badge-link img {
    width: 100%;
  }

  .chips li {
    justify-content: flex-start;
    width: 100%;
  }

  h1 {
    font-size: clamp(1.85rem, 9.2vw, 2.45rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

  body.page-notifications h1,
  body.page-start h1,
  body.page-book-demo h1,
  body.page-wallet h1,
  body.page-bespoke-app h1 {
    font-size: clamp(1.72rem, 8vw, 2.24rem);
  }

  .hero__lede {
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: var(--rl-space-3);
  }

  body.page-notifications .hero__lede,
  body.page-book-demo .hero__lede {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .card {
    padding: 1.34rem;
  }

  .card p,
  .card li,
  .form-note,
  .comparison-mobile__value,
  .field-group label {
    line-height: 1.68;
  }

  .card p,
  .form-note,
  .comparison-mobile__value {
    font-size: 0.91rem;
  }

  .info-strip__item {
    padding: 1rem;
  }

  .info-strip__item p,
  .legal-summary__item p {
    font-size: 0.85rem;
    line-height: 1.54;
  }

  .cta-band {
    padding: 1.42rem;
    gap: 0.78rem;
  }

  .page-links a,
  .customer-route-panel {
    padding: 0.98rem;
  }

  .card ul,
  .card ol {
    gap: 0.4rem;
    padding-left: 1.05rem;
  }

  .chips li {
    min-height: auto;
    padding: 0.4rem 0.6rem;
    line-height: 1.3;
  }

  .hero-proof p {
    font-size: 0.76rem;
  }

  .hero-visual__thumb {
    display: none;
  }

  .hero-visual .hero-proof--bottom-left {
    display: none;
  }

  .hero-proof--top-right {
    width: min(100%, 22rem);
  }

  .hero-visual--simple .hero-proof {
    left: auto;
    right: auto;
    justify-self: center;
    margin-inline: auto;
  }

  body.page-boba .hero-visual--simple {
    justify-items: center;
  }

  body.page-boba .hero-proof--top-right,
  body.page-boba .hero-proof--notification-card {
    width: min(100%, 22rem);
    max-width: calc(100vw - 3rem);
    justify-self: center;
    margin-inline: auto;
    left: auto;
    right: auto;
    transform: none !important;
  }

  body.page-boba .hero-proof--notification-card .hero-proof__shot img {
    width: 100%;
  }

  .screenshot-frame {
    width: min(320px, 88vw);
    margin-top: var(--rl-space-2);
  }

  .screenshot-frame--tablet {
    width: min(410px, 92vw);
  }

  .hero-visual--simple {
    min-height: 0;
    gap: var(--rl-space-3);
    align-content: start;
    padding: 0.46rem;
  }

  body.page-book-demo .hero-visual,
  body.page-start .hero-visual,
  body.page-notifications .hero-visual {
    min-height: 0;
    gap: var(--rl-space-3);
    align-content: start;
  }

  body.page-datahub .hero-visual {
    min-height: 0;
    gap: var(--rl-space-3);
    align-content: start;
    justify-items: stretch;
  }

  body.page-datahub .hero-visual .screenshot-frame--tablet {
    width: 100%;
  }

  body.page-datahub .hero-visual__thumb--owner-charts {
    display: none;
  }

  body.page-datahub .hero-visual--dashboard-clean .hero-proof--top-right {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    text-align: left;
    left: auto;
    right: auto;
    transform: none !important;
  }

  body.page-compare-custom .hero-visual--dashboard {
    min-height: 0;
    gap: var(--rl-space-3);
    align-content: start;
    justify-items: stretch;
  }

  body.page-compare-custom .hero-visual .screenshot-frame--tablet {
    width: 100%;
  }

  body.page-compare-custom .hero-proof--top-right {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    text-align: left;
    left: auto;
    right: auto;
    transform: none !important;
  }

  body.page-start .start-hero-surface {
    margin-bottom: 0;
  }

  body.page-start .start-hero-visual .hero-proof--top-right {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    text-align: left;
  }

  body.page-book-demo [data-demo-context="reply"] {
    display: none;
  }

  .media-proof--dashboard img,
  .media-proof__figure--dashboard img {
    max-height: min(56vh, 500px);
  }

  .media-proof--phone-pair {
    grid-template-columns: minmax(0, 1fr);
  }

  .media-proof--owner-pair {
    grid-template-columns: 1fr;
  }

  .proof-frame--phone,
  .proof-frame--app,
  .proof-frame--modal,
  .media-proof__figure--phone {
    width: min(100%, 196px);
  }

  .hero-visual__thumb.hero-visual__thumb--phone {
    width: min(184px, 100%);
    inline-size: min(184px, 100%);
    max-width: 100%;
  }

  .site-header__actions .btn-primary {
    width: auto;
    min-height: 44px;
    padding-inline: 0.85rem;
    font-size: 0.9rem;
  }

  .site-header__row {
    gap: 0.45rem;
  }

  .logo-lockup span {
    font-size: 1.08rem;
  }
}

@media (max-width: 390px) {
  .hero .actions {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 1.2rem;
  }

  .section > .container + .container {
    margin-top: 1.15rem;
  }

  .hero-proof,
  .hero-visual__thumb {
    width: 100%;
  }

  body.page-pricing .pricing-fit-board > * {
    flex-basis: min(19.5rem, 90vw);
  }

  .start-path__proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .chips {
    grid-template-columns: minmax(0, 1fr);
  }

  .comparison {
    min-width: 640px;
  }
}

@media (max-width: 640px) {
  .comparison-wrap {
    display: none;
  }

  .comparison-mobile {
    display: block;
  }

  .comparison-scroll-note {
    display: none;
  }

  .comparison {
    min-width: 560px;
  }

  .comparison th,
  .comparison td {
    padding: 0.72rem;
  }

  .inline-links {
    gap: var(--rl-space-3);
  }

  .inline-links a {
    width: 100%;
    justify-content: center;
  }

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

  .datahub-panel__mini {
    scroll-snap-align: none;
  }

  .datahub-panel__mini.proof-frame--app {
    width: 100%;
  }

  .datahub-panel__mini:last-child {
    grid-column: 1 / -1;
    width: min(100%, 192px);
    justify-self: center;
  }

  .datahub-panel__chart img {
    max-height: min(48vh, 440px);
  }
}

@media (max-width: 420px) {
  .site-header .container {
    width: min(var(--rl-container-max), calc(100% - 1.25rem));
  }

  h1 {
    text-wrap: wrap;
    overflow-wrap: anywhere;
    max-width: 100%;
    inline-size: 100%;
  }

  .hero__lede,
  p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  p {
    margin-bottom: 0.92rem;
  }

  .card {
    padding: 1.12rem;
  }

  .card p,
  .card li {
    font-size: 0.91rem;
    line-height: 1.66;
  }

  .legal-doc {
    padding: 1.02rem;
  }

  .legal-doc p,
  .legal-doc li {
    font-size: 0.92rem;
    line-height: 1.66;
  }

  .legal-doc h3 {
    margin-top: 1.08rem;
    font-size: 0.98rem;
  }

  .app-badge-link {
    width: 100%;
    justify-content: center;
  }

  .chips li {
    font-size: 0.73rem;
    line-height: 1.32;
    min-height: 2.1rem;
    padding: 0.44rem 0.62rem;
  }

  .comparison-mobile__item {
    padding: 0.88rem;
    gap: 0.42rem;
  }

  .comparison-mobile__row {
    padding: 0.58rem 0.6rem;
  }

  .comparison-mobile__value {
    font-size: 0.8rem;
    line-height: 1.48;
  }

  .form-note {
    font-size: 0.84rem;
    line-height: 1.54;
  }

  .site-footer ul {
    gap: 0.5rem;
  }

  .site-footer a {
    display: inline-block;
    padding-block: 0.08rem;
  }

  .info-strip__item,
  .legal-summary__item,
  .page-links a,
  .customer-route-panel {
    padding: 0.88rem;
  }

  .hero-proof {
    padding: 0.54rem 0.6rem;
  }

  .screenshot-frame--tablet {
    width: min(100%, 95vw);
    padding: 0.32rem;
  }

  .hero-visual--simple {
    padding: 0.4rem;
  }

  .media-proof--dashboard figure {
    padding: 0.42rem;
  }

  .site-header__actions .btn-primary {
    min-height: 2.5rem;
    padding-inline: 0.64rem;
    font-size: 0.82rem;
  }

  .menu-btn {
    min-width: 40px;
    min-height: 40px;
    font-size: 0.85rem;
    padding-inline: 0.38rem;
  }

  .logo-lockup {
    gap: 0.34rem;
  }

  .logo-lockup span {
    font-size: 0.88rem;
  }
}

.booking-grid {
  display: grid;
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
}

.booking-card {
  padding: clamp(1.2rem, 2.8vw, 1.8rem);
  border: 1px solid rgba(216, 190, 159, 0.82);
  border-radius: var(--rl-radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    var(--rl-bg-card);
  box-shadow: var(--rl-shadow-soft);
}

.booking-card--missing {
  max-width: 52rem;
}

.booking-embed-shell {
  position: relative;
  margin-top: 1rem;
  isolation: isolate;
}

.booking-embed {
  display: block;
  width: 100%;
  min-height: clamp(680px, 76vh, 860px);
  border: 1px solid rgba(216, 190, 159, 0.88);
  border-radius: calc(var(--rl-radius-lg) - 0.18rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 250, 0.94)),
    var(--rl-color-white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  transition: opacity var(--rl-motion-base, var(--rl-dur-base)) var(--rl-motion-ease-standard, var(--rl-ease));
}

.booking-embed-state {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  justify-items: start;
  padding: clamp(0.9rem, 2.6vw, 1.2rem);
  pointer-events: none;
}

.booking-embed-state__panel {
  max-width: 24rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(216, 190, 159, 0.9);
  border-radius: calc(var(--rl-radius-md) + 0.1rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    color-mix(in srgb, var(--rl-color-white) 94%, var(--rl-color-cream-100));
  box-shadow: var(--rl-shadow-soft);
}

.booking-card.is-booking-loaded .booking-embed-state {
  display: none;
}

.booking-card.is-booking-stalled .booking-embed {
  opacity: 0.2;
}

.booking-card.is-booking-stalled .booking-embed-state {
  align-content: center;
  justify-items: center;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.84));
  backdrop-filter: blur(3px);
}

.booking-card.is-booking-stalled .booking-embed-state__panel {
  max-width: 30rem;
  box-shadow: var(--rl-shadow-pop);
}

.booking-embed-state__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--rl-color-teal-900);
}

.booking-embed-state__copy {
  max-width: 28rem;
  margin: 0;
  color: var(--rl-color-teal-700);
}

.booking-actions {
  margin-top: 1rem;
}

@media (max-width: 860px) {
  .booking-card {
    padding: 1rem;
  }

  .booking-embed {
    min-height: 760px;
  }
}

@media (max-width: 1080px) {
  .start-journey__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .till-video-proof {
    grid-template-columns: minmax(0, 1fr);
  }

  .till-video-proof__media {
    --app-video-max-width: 300px;
  }

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

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

@media (max-width: 680px) {
  .start-journey__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .start-journey__support {
    align-items: stretch;
  }

  .start-journey__support .inline-links {
    width: 100%;
  }

  .till-proof-grid,
  .till-proof-grid--compact,
  .comparison-proof__visuals {
    grid-template-columns: minmax(0, 1fr);
  }

  .nudge-proof {
    gap: 1.02rem;
    padding: 1.04rem;
  }

  .nudge-proof__copy {
    padding: 1rem;
    gap: 0.52rem;
  }

  .nudge-proof__copy h2 {
    font-size: 1.1rem;
    max-width: 17ch;
  }

  .nudge-proof__copy p {
    font-size: 0.91rem;
    line-height: 1.54;
  }

  .nudge-proof__points {
    gap: 0.36rem;
  }

  .nudge-proof__points li {
    padding: 0.54rem 0.64rem;
    font-size: 0.8rem;
    line-height: 1.38;
  }

  .nudge-proof__shots {
    gap: 0.48rem;
  }

  .nudge-proof__support,
  .nudge-proof__impact {
    grid-template-columns: minmax(0, 1fr);
  }

  .nudge-proof__shot {
    padding: 0.5rem;
  }

  .nudge-proof__shot--featured {
    padding: 0.56rem;
  }

  .collection-video-proof,
  .till-video-proof {
    grid-template-columns: minmax(0, 1fr);
    padding: 0.85rem;
  }

  .collection-video-proof__media,
  .till-video-proof__media {
    --app-video-max-width: 280px;
    width: min(100%, 280px);
  }

  .till-proof-card .proof-frame--phone,
  .comparison-proof__visuals .proof-frame--phone {
    width: min(100%, 176px);
  }

  .collection-route__visual-stack {
    grid-template-columns: minmax(0, 1fr);
  }

  .collection-route__visual--secondary {
    width: min(100%, 156px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
