/* UNIT01 production site - Relace type + Rulebase anatomy */

@font-face {
  font-family: "Geist Mono Variable";
  src: url("/fonts/GeistMono-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  background: #0e0e0d;
  overscroll-behavior: none;
}

::selection {
  background: rgba(25, 25, 24, 0.12);
}

body.u01-site {
  margin: 0;
  background: var(--u01-bg);
  color: var(--u01-ink);
  font-family: var(--font-text);
  font-size: 16.5px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.u01-site a {
  color: inherit;
  text-decoration: none;
}

body.u01-site img {
  max-width: 100%;
  display: block;
}

body.u01-site button,
body.u01-site input,
body.u01-site textarea,
body.u01-site select {
  font: inherit;
  color: inherit;
}

.u01-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 14px;
  background: var(--u01-ink);
  color: #f7f6f4;
}

.u01-skip:focus {
  left: 16px;
  top: 16px;
}

.u01-wrap {
  width: min(var(--u01-max), calc(100% - 56px));
  margin-inline: auto;
}

.u01-kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--u01-ink-faint);
  margin: 0 0 12px;
}

.u01-display {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: clamp(44px, 6.5vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

.u01-h2 {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

.u01-h3 {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0;
}

.u01-display strong,
.u01-h2 strong,
.u01-h3 strong,
.u01-em {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
}

.u01-body-muted {
  color: var(--u01-ink-muted);
  max-width: 58ch;
  margin: 14px 0 0;
}

.u01-caption {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--u01-ink-faint);
}

/* Header */
.u01-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--u01-header-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  font-family: var(--font-header);
  background: rgba(244, 243, 241, 0.9);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid var(--u01-line);
}

.u01-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--u01-space-8);
  width: min(var(--u01-max), calc(100% - 64px));
  margin-inline: auto;
}

.u01-header-left {
  display: flex;
  align-items: center;
  gap: 48px;
  min-width: 0;
}

.u01-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.u01-logo-img {
  display: block;
  height: 32px;
  width: auto;
}

.u01-logo-img-lg {
  height: 73px;
}

.u01-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.u01-nav a {
  opacity: 0.72;
  transition: opacity var(--u01-dur) var(--u01-ease);
}

.u01-nav a:hover,
.u01-nav a[aria-current="page"] {
  opacity: 1;
}

.u01-header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

body.u01-site .u01-nav-toggle {
  display: none;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--u01-line-strong);
  border-radius: var(--u01-radius-cta);
  background: #fff;
  color: var(--u01-ink);
  -webkit-text-fill-color: var(--u01-ink);
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.u01-mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: min(var(--u01-max), calc(100% - 64px));
  max-height: calc(100vh - var(--u01-header-h) - 16px);
  max-height: calc(100dvh - var(--u01-header-h) - 16px);
  margin: 8px auto 0;
  padding: 12px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--u01-line);
  border-radius: 4px;
  background: #fff;
  flex-direction: column;
  gap: 4px;
}

.u01-mobile-nav:not([hidden]) {
  display: flex;
}

.u01-mobile-nav a {
  padding: 12px 10px;
  border-radius: 4px;
  font-size: 15px;
}

.u01-mobile-nav a:hover,
.u01-mobile-nav a[aria-current="page"] {
  background: var(--u01-bg-soft);
}

.u01-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: var(--u01-radius-cta);
  border: 1px solid transparent;
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform var(--u01-dur) var(--u01-ease), background var(--u01-dur) var(--u01-ease),
    border-color var(--u01-dur) var(--u01-ease), box-shadow var(--u01-dur) var(--u01-ease);
}

body.u01-site a.u01-btn-header,
body.u01-site .u01-btn-header {
  height: 36px;
  padding: 6px 14px;
  border-radius: var(--u01-radius-cta);
  background: var(--u01-cta);
  color: #f7f6f4;
}

body.u01-site a.u01-btn-header:hover,
body.u01-site .u01-btn-header:hover {
  background: #3b3935;
  transform: none;
}

.u01-btn:hover {
  transform: translateY(-1px);
}

.u01-btn:focus-visible {
  outline: 2px solid var(--u01-ink);
  outline-offset: 3px;
}

.u01-glitch {
  position: relative;
  display: inline-block;
}

.u01-glitch-base,
.u01-glitch-accent {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: inherit;
}

.u01-glitch-base {
  display: inline-block;
}

.u01-glitch-accent {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
  font-family: var(--font-header-display);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

@keyframes u01-glitch-base {
  0% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  28% {
    opacity: 0;
    animation-timing-function: linear;
  }
  64% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  100% {
    opacity: 1;
  }
}

@keyframes u01-glitch-accent {
  0% {
    opacity: 0;
    animation-timing-function: ease-out;
  }
  28% {
    opacity: 1;
    animation-timing-function: linear;
  }
  64% {
    opacity: 1;
    animation-timing-function: ease-in;
  }
  100% {
    opacity: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  :is(a, button):hover > .u01-glitch .u01-glitch-base {
    animation: u01-glitch-base 820ms linear;
  }

  :is(a, button):hover > .u01-glitch .u01-glitch-accent {
    animation: u01-glitch-accent 820ms linear;
  }
}

body.u01-site a.u01-btn-dark,
body.u01-site .u01-btn-dark {
  background: var(--u01-ink);
  color: #f7f6f4;
}

.u01-btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--u01-line-strong);
  color: var(--u01-ink);
}

.u01-btn-ghost:hover {
  background: #fff;
}

.u01-btn-light {
  background: #f7f6f4;
  color: #1e1e1e;
  border-radius: var(--u01-radius-cta);
}

body.u01-site a.u01-btn-light,
body.u01-site .u01-btn-light {
  background: #f7f6f4;
  color: #1e1e1e !important;
}

body.u01-site a.u01-btn-light:hover,
body.u01-site .u01-btn-light:hover {
  background: #fff;
  color: #111 !important;
}

body.u01-site a.u01-btn-ghost-dark,
body.u01-site .u01-btn-ghost-dark {
  background: rgba(247, 246, 244, 0.06);
  border: 1px solid rgba(247, 246, 244, 0.42);
  color: #f7f6f4 !important;
  border-radius: var(--u01-radius-cta);
  height: 40px;
}

body.u01-site a.u01-btn-ghost-dark:hover,
body.u01-site .u01-btn-ghost-dark:hover {
  background: rgba(247, 246, 244, 0.12);
  border-color: rgba(247, 246, 244, 0.7);
  color: #fff !important;
}

.u01-hero-actions,
.u01-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.u01-page-hero-actions {
  margin-top: 28px;
}

/* Production home uses rb-clone without moodboard notes */
body.u01-site .rb-clone-note {
  display: none !important;
}

body.u01-site .u01-home-top .rb-nav {
  display: none;
}

body.u01-site .u01-home-top .rb-hero {
  margin-top: 0;
}

body.u01-site .u01-home-top .rb-hero-right {
  background-image: url("/images/hero-bg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

body.u01-site .u01-home-top .rb-hero-content,
body.u01-site .u01-home-top .rb-hero-h1,
body.u01-site .u01-home-top .rb-hero-body {
  text-align: left;
}

body.u01-site .u01-home-top .u01-hero-actions {
  justify-content: flex-start;
}

/* Live method instrument - cool-light, ink only, 4px. Not a chat clone. */
body.u01-site .u01-home-top .rb-hero-chat-card {
  top: 196px;
  width: 392px;
}

body.u01-site .u01-home-top .u01-desk {
  background: #f5f5f2;
  border: 1px solid rgba(26, 23, 22, 0.16);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 18px 48px rgba(25, 25, 24, 0.16);
}

body.u01-site .u01-home-top .u01-desk-head,
body.u01-site .u01-home-top .u01-desk-now,
body.u01-site .u01-home-top .u01-desk-swarm,
body.u01-site .u01-home-top .u01-desk-foot {
  padding-left: 14px;
  padding-right: 14px;
}

body.u01-site .u01-home-top .u01-desk-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(26, 23, 22, 0.1);
}

body.u01-site .u01-home-top .u01-desk-id {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

body.u01-site .u01-home-top .u01-desk-mark {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #191918;
  border: 1px solid #191918;
  object-fit: cover;
  flex-shrink: 0;
}

body.u01-site .u01-home-top .u01-desk-id-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

body.u01-site .u01-home-top .u01-desk-id-text strong {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #191918;
}

body.u01-site .u01-home-top .u01-desk-id-text span {
  font-family: var(--font-text);
  font-size: 11px;
  line-height: 1.2;
  color: rgba(26, 23, 22, 0.5);
}

body.u01-site .u01-home-top .u01-desk-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #191918;
}

body.u01-site .u01-home-top .u01-desk-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: #191918;
  animation: u01-desk-pulse 1.8s var(--u01-ease) infinite;
}

body.u01-site .u01-home-top .u01-desk-kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 23, 22, 0.42);
}

body.u01-site .u01-home-top .u01-desk-now {
  position: relative;
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(26, 23, 22, 0.1);
}

body.u01-site .u01-home-top .u01-desk-now::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: #191918;
}

body.u01-site .u01-home-top .u01-desk-now-title {
  margin: 4px 0 0;
  font-family: var(--font-text);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #191918;
}

body.u01-site .u01-home-top .u01-desk-now-copy {
  margin: 4px 0 0;
  font-family: var(--font-text);
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: rgba(26, 23, 22, 0.56);
}

body.u01-site .u01-home-top .u01-desk-swarm {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(26, 23, 22, 0.1);
}

body.u01-site .u01-home-top .u01-desk-sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

body.u01-site .u01-home-top .u01-desk-sec-head span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 23, 22, 0.38);
}

body.u01-site .u01-home-top .u01-desk-lanes {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.u01-site .u01-home-top .u01-desk-lanes::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(26, 23, 22, 0.16);
}

body.u01-site .u01-home-top .u01-desk-lane {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 24px;
  padding: 0 8px 0 10px;
  border-radius: 4px;
}

body.u01-site .u01-home-top .u01-desk-lane::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border: 1px solid rgba(26, 23, 22, 0.28);
  border-radius: 1px;
  background: #f5f5f2;
}

body.u01-site .u01-home-top .u01-desk-lane.is-live {
  background: rgba(25, 25, 24, 0.05);
}

body.u01-site .u01-home-top .u01-desk-lane.is-live::before {
  background: #191918;
  border-color: #191918;
}

body.u01-site .u01-home-top .u01-desk-lane-name {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #191918;
}

body.u01-site .u01-home-top .u01-desk-lane-state {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26, 23, 22, 0.4);
}

body.u01-site .u01-home-top .u01-desk-lane.is-live .u01-desk-lane-state {
  color: #191918;
  letter-spacing: 0.08em;
}

body.u01-site .u01-home-top .u01-desk-gates ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.u01-site .u01-home-top .u01-desk-gates li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 8px 10px 10px;
  border-top: 1px solid rgba(26, 23, 22, 0.1);
  border-right: 1px solid rgba(26, 23, 22, 0.1);
}

body.u01-site .u01-home-top .u01-desk-gates li:last-child {
  border-right: 0;
}

body.u01-site .u01-home-top .u01-desk-gates li[data-state="flag"] {
  background: rgba(25, 25, 24, 0.045);
  box-shadow: inset 0 2px 0 #191918;
}

body.u01-site .u01-home-top .u01-desk-gates li[data-state="next"] {
  background: transparent;
}

body.u01-site .u01-home-top .u01-desk-gates span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 23, 22, 0.4);
}

body.u01-site .u01-home-top .u01-desk-gates strong {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #191918;
}

body.u01-site .u01-home-top .u01-desk-foot {
  padding-top: 10px;
  padding-bottom: 12px;
  background: rgba(25, 25, 24, 0.03);
}

body.u01-site .u01-home-top .u01-desk-foot-copy {
  margin: 4px 0 0;
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #191918;
}

@keyframes u01-desk-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.28;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.u01-site .u01-home-top .u01-desk-live-dot {
    animation: none;
  }
}

body.u01-site .u01-home-top .rb-hero-mini {
  width: auto;
  max-width: min(520px, calc(100% - 48px));
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

body.u01-site .u01-home-top .rb-hero-mini-reel {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
  gap: 3px;
  height: 52px;
}

body.u01-site .u01-home-top .rb-hero-mini-shot {
  position: relative;
  width: 76.8px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: transparent;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 50%);
  mask-image: linear-gradient(to right, transparent 0%, #000 50%);
}

body.u01-site .u01-home-top .rb-hero-mini-shot video {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(calc(10 / 9));
  transform-origin: right center;
  margin-right: -7px;
}

body.u01-site .u01-home-top .rb-hero-mini-text {
  font-family: var(--font-header);
  text-align: left;
  height: auto;
  min-height: 52px;
  justify-content: space-between;
  min-width: 0;
}

body.u01-site .u01-home-top .rb-hero-mini-link {
  font-family: var(--font-header);
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

body.u01-site .u01-home-top .rb-hero-mini:hover .rb-hero-mini-link {
  color: #fff;
}

body.u01-site .rb-hero-h1 {
  font-family: var(--font-hero);
}

/* Three-beat headline: keep each beat on its own line up to the stone panel. */
@media (min-width: 1101px) {
  body.u01-site .u01-home-top .rb-hero-content {
    width: min(600px, calc(52vw - 124px));
  }

  body.u01-site .u01-home-top .rb-hero-h1 {
    font-size: clamp(46px, 3.9vw, 56px);
    line-height: 1;
    letter-spacing: -0.03em;
  }
}

body.u01-site .rb-hero-h1 strong {
  font-family: var(--font-header-display);
  font-weight: 500;
}

@media (max-width: 1100px) {
  body.u01-site .u01-home-top .rb-hero-content {
    left: auto;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  body.u01-site .u01-home-top .rb-hero-right {
    height: 480px;
  }

  body.u01-site .u01-home-top .rb-hero-chat-card {
    top: 36px;
    width: min(392px, calc(100% - 32px));
  }

  body.u01-site .u01-home-top .u01-desk-now-title {
    font-size: 18px;
  }

  body.u01-site .u01-home-top .rb-hero-mini {
    width: auto;
    max-width: min(520px, calc(100% - 48px));
    padding: 0;
    margin: 0 24px 32px;
  }
}

@media (max-width: 560px) {
  body.u01-site .u01-home-top .rb-hero-mini {
    flex-wrap: wrap;
    width: calc(100% - 48px);
    max-width: none;
    gap: 10px;
  }

  body.u01-site .u01-home-top .rb-hero-mini-reel {
    height: 40px;
  }

  body.u01-site .u01-home-top .rb-hero-mini-shot {
    width: 57.6px;
    height: 40px;
  }

  body.u01-site .u01-home-top .rb-hero-mini-text {
    min-height: 0;
    width: 100%;
  }
}

body.u01-site .rb-btn-demo-light,
body.u01-site .rb-nav-cta,
body.u01-site .rb-nav-links a {
  font-family: var(--font-header);
}

body.u01-site .u01-home-top,
body.u01-site .u01-home-top.rb-clone {
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

body.u01-site .u01-site-trust {
  border-bottom: 1px solid var(--u01-line);
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

body.u01-site .u01-site-trust p {
  padding-top: 0;
  min-width: 0;
}

body.u01-site .u01-site-trust .rb-trust-logos {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 100px,
    #000 calc(100% - 100px),
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 100px,
    #000 calc(100% - 100px),
    transparent
  );
}

body.u01-site .u01-site-trust .rb-trust-logos.is-dragging {
  cursor: grabbing;
}

body.u01-site .u01-site-trust .rb-trust-logos-track {
  display: flex;
  width: max-content;
  will-change: transform;
  pointer-events: none;
}

body.u01-site .u01-site-trust .rb-trust-logos-set {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  padding-inline-end: 6px;
  flex: 0 0 auto;
  width: max-content;
  box-sizing: content-box;
}

@media (prefers-reduced-motion: reduce) {
  body.u01-site .u01-site-trust .rb-trust-logos {
    cursor: default;
  }
}

body.u01-site .u01-site-trust .rb-trust-logo-pill {
  flex-shrink: 0;
  height: 44px;
  padding: 0 12px;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.u01-site .u01-site-trust .rb-trust-logo-pill img {
  display: block;
  height: 18px;
  max-height: 18px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
  object-position: center;
  opacity: 0.82;
}

body.u01-site .u01-site-trust .rb-trust-logo-pill.is-fal img {
  height: 13px;
  max-height: 13px;
}

/* Sections */
.u01-section {
  padding: 96px 0;
}

.u01-section-tight {
  padding: 72px 0;
}

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

.u01-section-head .u01-h2,
.u01-section-head .u01-display {
  margin-top: 8px;
}

/* Gap / engine reuse on light pages */
body.u01-site .rb-clone-mid {
  background: #efedeb;
  /* Hairline only — section air lives on .engine-section (was stacking 96 + 40). */
  padding-top: 0;
}

body.u01-site .rb-clone-mid > .rb-nav-light {
  display: none;
}

/*
 * Match .u01-wrap inset (80px at 1440; 28px below ~1336; 16px ≤800)
 * instead of the Rulebase clone 100/48/20 gutter. Top pad = other section heads.
 */
body.u01-site .rb-clone .engine-section {
  padding-top: var(--u01-space-24);
  padding-right: max(28px, calc((100% - var(--u01-max)) / 2));
  padding-left: max(28px, calc((100% - var(--u01-max)) / 2));
}

body.u01-site .rb-clone-mid > .engine-section:first-child {
  padding-top: var(--u01-space-24);
}

/* Sit in engine-section bottom pad — no extra wash band */
body.u01-site .rb-clone .engine-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: calc(-1 * var(--u01-space-16));
  padding-bottom: var(--u01-space-12);
}

body.u01-site .rb-clone .engine-cta .u01-btn {
  min-height: 48px;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--u01-radius-cta);
}

@media (max-width: 1200px) {
  body.u01-site .rb-clone .engine-cta {
    margin-top: 8px;
  }
}

.u01-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--u01-line);
  border: 1px solid var(--u01-line);
  border-radius: 4px;
  overflow: hidden;
}

.u01-proof-item {
  background: var(--u01-bg-elevated);
  padding: 28px 24px;
}

.u01-proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.04em;
  font-weight: 500;
  margin-bottom: 8px;
}

.u01-proof-item span {
  color: var(--u01-ink-muted);
  font-size: 14px;
}

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

.u01-offer-card {
  background: var(--u01-bg-elevated);
  border: 1px solid var(--u01-line);
  border-radius: 4px;
  padding: 28px 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--u01-dur) var(--u01-ease), transform var(--u01-dur) var(--u01-ease);
}

.u01-offer-card:hover {
  border-color: var(--u01-line-strong);
  transform: translateY(-2px);
}

.u01-offer-card .u01-kicker {
  margin-bottom: 18px;
}

.u01-offer-card h3 {
  margin-bottom: 12px;
}

.u01-offer-card p {
  color: var(--u01-ink-muted);
  margin: 0 0 auto;
  font-size: 15px;
}

.u01-offer-card .u01-offer-link {
  margin-top: 24px;
  font-size: 14px;
  opacity: 0.8;
}

.u01-offer-card:hover .u01-offer-link {
  opacity: 1;
}

.u01-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.u01-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--u01-line);
}

.u01-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--u01-line);
  font-size: 15px;
  color: var(--u01-ink-muted);
}

.u01-list-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--u01-ink-faint);
  padding-top: 3px;
}

.u01-panel {
  background: var(--u01-bg-elevated);
  border: 1px solid var(--u01-line);
  border-radius: 4px;
  padding: 28px;
}

.u01-panel h3 {
  margin-bottom: 10px;
}

.u01-panel p {
  margin: 0;
  color: var(--u01-ink-muted);
  font-size: 15px;
}

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

.u01-story-card {
  background: #fff;
  border: 1px solid var(--u01-line);
  border-radius: 4px;
  padding: 24px;
}

.u01-story-card .u01-kicker {
  margin-bottom: 16px;
}

.u01-story-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.u01-story-card p {
  margin: 0;
  color: var(--u01-ink-muted);
  font-size: 14.5px;
}

.u01-page-hero {
  padding: 72px 0 48px;
  background: var(--u01-bg-hero);
  border-bottom: 1px solid var(--u01-line);
}

.u01-page-hero .u01-display {
  max-width: 16ch;
}

.u01-page-hero .u01-body-muted {
  max-width: 52ch;
  font-size: 17px;
}

/* Forms */
.u01-form-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.u01-form {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--u01-line);
  border-radius: 4px;
  padding: 32px;
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: 0 16px 40px rgba(25, 25, 24, 0.05);
  transition: border-color var(--u01-dur) var(--u01-ease), box-shadow var(--u01-dur) var(--u01-ease);
}

.u01-form:focus-within {
  border-color: var(--u01-line-strong);
  box-shadow: 0 18px 48px rgba(25, 25, 24, 0.07);
}

.u01-form-grid {
  display: grid;
  gap: 20px;
}

.u01-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.u01-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.u01-field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--u01-ink-muted);
}

.u01-field-req {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--u01-ink-faint);
}

.u01-field input:not([type="range"]):not([type="hidden"]),
.u01-field select,
.u01-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--u01-line-strong);
  border-radius: 4px;
  background: #f7f6f4;
  padding: 13px 14px;
  font-size: 15.5px;
  letter-spacing: -0.012em;
  color: var(--u01-ink);
  transition:
    border-color var(--u01-dur) var(--u01-ease),
    background var(--u01-dur) var(--u01-ease),
    box-shadow var(--u01-dur) var(--u01-ease);
}

.u01-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none'%3E%3Cpath d='M2 4.5 6 8.5 10 4.5' stroke='%23191918' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.u01-field textarea {
  min-height: 168px;
  line-height: 1.5;
  resize: vertical;
}

.u01-field input:not([type="range"]):not([type="hidden"])::placeholder,
.u01-field textarea::placeholder {
  color: var(--u01-ink-faint);
}

.u01-field input:not([type="range"]):not([type="hidden"]):-webkit-autofill,
.u01-field textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #f7f6f4 inset;
  -webkit-text-fill-color: var(--u01-ink);
}

.u01-field input:not([type="range"]):not([type="hidden"]):hover,
.u01-field select:hover,
.u01-field textarea:hover {
  border-color: var(--u01-line-strong);
  background: #fff;
}

.u01-field input:not([type="range"]):not([type="hidden"]):focus,
.u01-field select:focus,
.u01-field textarea:focus {
  outline: none;
  border-color: var(--u01-ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(25, 25, 24, 0.08);
}

.u01-field input:not([type="range"]):not([type="hidden"]):user-invalid,
.u01-field textarea:user-invalid {
  border-color: #8a2b2b;
  box-shadow: 0 0 0 3px rgba(138, 43, 43, 0.08);
}

.u01-field-hint {
  display: none;
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: #7a1f1f;
}

.u01-field input:not([type="range"]):not([type="hidden"]):user-invalid ~ .u01-field-hint,
.u01-field textarea:user-invalid ~ .u01-field-hint {
  display: block;
}

.u01-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

.u01-budget {
  gap: 8px;
}

.u01-budget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 20px;
}

.u01-budget-head label {
  justify-content: flex-start;
  line-height: 1;
}

.u01-budget-readout {
  margin: 0;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  color: var(--u01-ink);
  line-height: 1;
}

.u01-budget-well {
  position: relative;
  border: 1px solid var(--u01-line-strong);
  border-radius: 4px;
  background: #f7f6f4;
  padding: 13px 14px 10px;
  transition:
    border-color var(--u01-dur) var(--u01-ease),
    background var(--u01-dur) var(--u01-ease),
    box-shadow var(--u01-dur) var(--u01-ease);
}

.u01-budget-well:hover,
.u01-budget:focus-within .u01-budget-well {
  background: #fff;
}

.u01-budget:focus-within .u01-budget-well {
  border-color: var(--u01-ink);
  box-shadow: 0 0 0 3px rgba(25, 25, 24, 0.08);
}

.u01-budget-scale {
  position: relative;
}

.u01-budget-rail {
  height: 36px;
  padding-inline: 1px;
  pointer-events: none;
}

.u01-budget-track {
  position: relative;
  height: 100%;
}

.u01-budget-shade {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 16px;
  width: calc(var(--u01-budget-t) * 100%);
  background: linear-gradient(90deg, rgba(25, 25, 24, 0.035), rgba(25, 25, 24, 0.08));
  mask-image: linear-gradient(180deg, transparent, #000 80%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 80%);
}

.u01-budget-baseline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--u01-line-strong);
}

.u01-budget-baseline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(var(--u01-budget-t) * 100%);
  height: 1px;
  background: var(--u01-ink);
}

.u01-budget-ticks {
  position: relative;
  height: 100%;
}

.u01-budget-tick {
  position: absolute;
  left: calc(var(--u01-budget-i) * 100% / (var(--u01-budget-n) - 1));
  bottom: 0;
  width: 1px;
  height: calc(8px + var(--u01-budget-i) * 2px);
  background: rgba(25, 25, 24, 0.2);
  transform: translateX(-50%);
}

.u01-budget-tick.is-major {
  width: 2px;
  background: rgba(25, 25, 24, 0.34);
}

.u01-budget-tick.is-on {
  background: var(--u01-ink);
}

.u01-budget-needle {
  position: absolute;
  top: -5px;
  bottom: 0;
  left: calc(var(--u01-budget-t) * 100%);
  width: 2px;
  background: var(--u01-ink);
  transform: translateX(-50%);
  z-index: 1;
}

.u01-budget-needle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--u01-ink);
  transform: translateX(-50%);
}

.u01-budget.is-dragging .u01-budget-needle::before {
  transform: translateX(-50%) scale(1.15);
}

.u01-budget-input {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
  z-index: 2;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}

.u01-budget-input:focus {
  outline: none;
}

.u01-budget-input::-webkit-slider-runnable-track {
  appearance: none;
  -webkit-appearance: none;
  height: 36px;
  background: transparent;
  border: 0;
}

.u01-budget-input::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 44px;
  margin-top: -4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  /* iOS paints the default white thumb when background is transparent */
  opacity: 0;
  cursor: grab;
}

.u01-budget-input:active::-webkit-slider-thumb {
  cursor: grabbing;
}

.u01-budget-input::-moz-range-track {
  height: 36px;
  background: transparent;
  border: 0;
}

.u01-budget-input::-moz-range-thumb {
  width: 28px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  cursor: grab;
}

.u01-budget-input::-moz-range-progress {
  background: transparent;
}

.u01-budget-labels {
  position: relative;
  height: 14px;
  margin: 6px 1px 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--u01-ink-faint);
  line-height: 1;
}

.u01-budget-labels span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.u01-budget-labels span.is-first {
  transform: none;
}

.u01-budget-labels span.is-last {
  transform: translateX(-100%);
}

.u01-budget-labels span.is-hot {
  color: var(--u01-ink);
}

@media (max-width: 520px) {
  .u01-budget-well {
    padding: 12px 12px 9px;
  }

  .u01-budget-labels span:nth-child(2),
  .u01-budget-labels span:nth-child(4),
  .u01-budget-labels span:nth-child(6) {
    display: none;
  }
}

.u01-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
  padding-top: 4px;
}

.u01-form-actions .u01-btn {
  height: 44px;
  min-width: 168px;
  padding: 0 22px;
}

.u01-form-done,
.u01-form-fail {
  display: none;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 4px;
  font-size: 14.5px;
  line-height: 1.5;
}

.u01-form-done {
  margin-top: 0;
  padding: 28px 8px 12px;
  background: transparent;
  color: var(--u01-ink);
  min-height: 280px;
  align-content: center;
}

.u01-form-done .u01-kicker {
  margin-bottom: 10px;
}

.u01-form-status-title {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.u01-form-done p:last-child {
  margin: 0;
  color: var(--u01-ink-muted);
  max-width: 36ch;
}

.u01-form-fail {
  background: #fdeeee;
  color: #7a1f1f;
  border: 1px solid rgba(122, 31, 31, 0.12);
}

.u01-form.is-done .u01-form-grid,
.u01-form.is-done .u01-form-actions {
  display: none;
}

.u01-form.is-done .u01-form-done {
  display: grid;
}

.u01-form.is-fail .u01-form-fail {
  display: block;
}

.u01-legal {
  max-width: 72ch;
}

.u01-legal h2 {
  font-size: 22px;
  margin: 40px 0 12px;
  scroll-margin-top: calc(var(--u01-header-h) + 16px);
}

.u01-legal h3 {
  font-size: 16px;
  font-family: var(--font-header);
  font-weight: 400;
  margin: 24px 0 8px;
}

.u01-legal p,
.u01-legal li,
.u01-legal dd {
  color: var(--u01-ink-muted);
  font-size: 15.5px;
}

.u01-legal ul,
.u01-legal ol {
  padding-left: 1.2em;
}

.u01-legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.u01-legal-meta {
  color: var(--u01-ink-faint);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.u01-legal-toc {
  margin: 0 0 8px;
  padding-left: 1.2em;
}

.u01-legal-facts {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 16px;
  margin: 20px 0 28px;
  padding: 16px 0;
  border-top: 1px solid var(--u01-line);
  border-bottom: 1px solid var(--u01-line);
}

.u01-legal-facts dt {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--u01-ink-faint);
}

.u01-legal-facts dd {
  margin: 0;
}

/* Soft stage */
.u01-soft-stage {
  padding: 96px 0;
  background: linear-gradient(180deg, #f7f6f4 0%, var(--u01-bg) 100%);
}

.u01-soft-tray {
  margin-top: 40px;
  border-radius: 4px;
  background: #e6e4e2;
  border: 1px solid transparent;
  padding: 48px 32px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.u01-soft-orb-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.u01-soft-orb-card img {
  width: min(180px, 100%);
  margin: 0 auto 18px;
  filter: drop-shadow(0 18px 30px rgba(25, 25, 24, 0.12));
}

.u01-soft-orb-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.u01-soft-orb-card p {
  margin: 0 auto;
  max-width: 28ch;
  color: var(--u01-ink-muted);
  font-size: 14px;
}

/* Footer */
.u01-footer {
  background: #0e0e0d;
  color: #f4f3f1;
  padding: 88px 0 36px;
  position: relative;
  overflow: visible;
}

/* 404 — home hero photo on the stage only; header/footer stay themselves */
body.u01-site.u01-page-404 {
  background: var(--u01-bg);
}

body.u01-site.u01-page-404 #main {
  background: transparent;
}

.u01-404 {
  position: relative;
  overflow: hidden;
  min-height: calc(100dvh - var(--u01-header-h));
  background: #d8d4ce url("/images/hero-bg.webp") center / cover no-repeat;
  color: var(--u01-ink);
  display: grid;
  place-items: center;
  padding: 48px 0 64px;
}

.u01-404 .u01-swarm {
  z-index: 0;
}

.u01-404 > .u01-color-tile {
  z-index: 1;
}

.u01-404 > .u01-color-tile.is-tr {
  top: 0;
  right: 0;
  width: min(300px, 36vw);
  height: min(300px, 36vw);
}

.u01-404-inner {
  position: relative;
  z-index: 2;
  width: min(var(--u01-max), calc(100% - 56px));
  display: flex;
  justify-content: center;
}

.u01-404-copy {
  width: min(44rem, 100%);
  text-align: center;
}

.u01-404-kicker {
  color: var(--u01-ink-muted);
  margin-bottom: 18px;
}

.u01-404-mark {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(112px, 20vw, 200px);
  letter-spacing: -0.07em;
  line-height: 0.88;
  color: var(--u01-ink);
  animation: u01-404-mark 7.5s var(--u01-ease) infinite;
}

.u01-404-title {
  color: var(--u01-ink);
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(36px, 5.2vw, 56px);
  text-wrap: balance;
}

.u01-404-title strong {
  color: var(--u01-ink);
}

.u01-404-body {
  margin: 20px auto 0;
  max-width: 42ch;
  color: var(--u01-ink-muted);
  font-size: 18px;
  line-height: 1.5;
}

.u01-404-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  padding-inline: 48px;
}

body.u01-site .u01-404-actions .u01-btn-dark {
  border: 1px solid var(--u01-ink);
}

body.u01-site .u01-404-actions .u01-btn-ghost {
  border: 1px solid var(--u01-line-strong);
  background: rgba(247, 246, 244, 0.55);
}

@keyframes u01-404-mark {
  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  40% {
    opacity: 0.88;
    transform: translate3d(0, -4px, 0);
  }
  70% {
    opacity: 0.96;
    transform: translate3d(0, 2px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .u01-404-mark {
    animation: none;
  }
}

@media (max-width: 720px) {
  .u01-404 {
    min-height: calc(100dvh - var(--u01-header-h));
    padding: 48px 0 64px;
  }

  .u01-404-inner {
    width: min(var(--u01-max), calc(100% - 32px));
  }

  .u01-404 > .u01-color-tile.is-tr {
    width: min(168px, 42vw);
    height: min(168px, 42vw);
  }

  .u01-404-mark {
    font-size: clamp(88px, 30vw, 140px);
  }

  .u01-404-actions {
    width: 100%;
    gap: 20px;
    padding-inline: 28px;
  }

  .u01-404-actions .u01-btn {
    flex: 0 1 auto;
    min-width: 7.5rem;
    justify-content: center;
  }
}


.u01-footer-glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.u01-footer > .u01-wrap {
  position: relative;
  z-index: 1;
}

.u01-footer-glow::before,
.u01-footer-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.u01-footer-glow::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 212, 255, 0.2), transparent 70%);
  left: -80px;
  bottom: -100px;
}

.u01-footer-glow::after {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(240, 213, 200, 0.16), transparent 70%);
  right: 8%;
  top: -60px;
}

.u01-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 36px;
  position: relative;
}

.u01-footer-logo {
  margin-bottom: 14px;
}

.u01-footer-blurb {
  color: rgba(244, 243, 241, 0.62);
  font-size: 14px;
  max-width: 32ch;
  margin: 0;
}

.u01-footer h3 {
  font-family: var(--font-header);
  font-size: 13px;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-weight: 500;
}

.u01-footer a,
.u01-footer li {
  color: rgba(244, 243, 241, 0.58);
  font-size: 13.5px;
}

.u01-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.u01-footer a:hover {
  color: #fff;
}

.u01-footer-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(244, 243, 241, 0.4);
  position: relative;
}

.u01-flag {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.u01-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.u01-lang {
  position: relative;
  z-index: 2;
}

.u01-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 4px;
  border: 0;
  background: transparent;
  color: rgba(244, 243, 241, 0.78);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.u01-lang-btn:hover {
  color: #fff;
}

.u01-lang.is-header {
  z-index: 6;
}

.u01-lang.is-header .u01-lang-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  justify-content: center;
  border: 1px solid var(--u01-line-strong);
  border-radius: var(--u01-radius-cta);
  background: #fff;
  color: #111;
}

.u01-lang.is-header .u01-lang-btn:hover,
.u01-lang.is-header.is-open .u01-lang-btn {
  color: #111;
  background: var(--u01-bg-soft);
}

.u01-lang.is-header .u01-lang-btn:focus,
.u01-lang.is-header .u01-lang-btn:focus-visible {
  outline: none;
}

.u01-lang.is-header .u01-lang-panel {
  top: calc(100% + 8px);
  bottom: auto;
  left: auto;
  right: 0;
}

.u01-lang-translate {
  display: inline-flex;
  color: inherit;
}

.u01-lang-chevron {
  display: inline-flex;
  transition: transform 0.16s ease;
}

.u01-lang.is-open .u01-lang-chevron {
  transform: rotate(180deg);
}

.u01-lang-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  z-index: 8;
  min-width: 248px;
  padding: 8px;
  border-radius: var(--u01-radius-card);
  background: #fff;
  box-shadow: 0 18px 50px rgba(20, 18, 16, 0.22);
}

.u01-lang-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.u01-lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 6px 10px;
  border-radius: var(--u01-radius-sharp);
  color: #111 !important;
  font-size: 14px !important;
  text-decoration: none;
}

.u01-lang-item:hover,
.u01-lang-item:focus-visible {
  background: #f3f3f3;
  color: #111 !important;
}

.u01-lang-item.is-soon {
  opacity: 0.42;
  pointer-events: none;
}

.u01-lang-names {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.u01-lang-native {
  font-weight: 500;
}

.u01-lang-en {
  color: #8a8a8a;
  font-size: 12.5px;
}

.u01-lang-check {
  margin-left: auto;
  color: #111;
  display: inline-flex;
}

.u01-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--u01-dur-reveal) var(--u01-ease), transform var(--u01-dur-reveal) var(--u01-ease);
}

.u01-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* About products: stacked rows, not a catalog grid */
.u01-product-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--u01-line);
}

.u01-product-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px 48px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--u01-line);
  color: inherit;
  text-decoration: none;
}

.u01-product-row.is-rev {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.u01-product-row.is-rev .u01-product-copy {
  order: 2;
}

.u01-product-row.is-text {
  grid-template-columns: minmax(0, 36rem);
  padding: 28px 0;
}

.u01-product-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.u01-product-row .u01-block-head {
  min-height: 0;
}

.u01-product-row .u01-tile-title {
  margin: 14px 0 10px;
}

.u01-product-row .u01-tile-title:has(.u01-product-logo) {
  margin-top: 14px;
}

.u01-product-row p {
  margin: 0;
  max-width: 36ch;
  font-size: 15px;
  line-height: 1.45;
  color: var(--u01-ink-muted);
}

.u01-product-logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: min(100%, 220px);
  object-fit: contain;
  object-position: left center;
}

.u01-product-still {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--u01-line);
  background: #eceae6;
}

.u01-product-still img,
.u01-product-still video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

/* 1280×720 captures encode 64px black sides (1152×720 picture). */
.u01-product-row.has-video .u01-product-still img,
.u01-product-row.has-video .u01-product-still video {
  transform: scale(calc(10 / 9));
}

.u01-product-still video {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.u01-product-row.is-playing .u01-product-still video {
  opacity: 1;
}

.u01-product-go {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--u01-ink-faint);
}

a.u01-product-row:hover .u01-product-go,
a.u01-product-row:focus-visible .u01-product-go {
  color: var(--u01-ink);
}

@media (max-width: 1100px) {
  .u01-offer-grid,
  .u01-story-grid,
  .u01-proof {
    grid-template-columns: 1fr 1fr;
  }

  .u01-proof {
    grid-template-columns: 1fr 1fr;
  }

  .u01-split,
  .u01-form-shell {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }

  .u01-soft-tray {
    grid-template-columns: 1fr;
  }
}

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

  body.u01-site .u01-nav-toggle {
    display: inline-flex;
    align-items: center;
    color: var(--u01-ink);
    -webkit-text-fill-color: var(--u01-ink);
  }

  .u01-header-cta .u01-btn-header {
    display: none;
  }
}

@media (max-width: 800px) {
  .u01-wrap,
  .u01-header-inner,
  .u01-mobile-nav {
    width: min(var(--u01-max), calc(100% - 32px));
  }

  body.u01-site .rb-clone .engine-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .u01-footer-grid,
  .u01-offer-grid,
  .u01-story-grid,
  .u01-proof,
  .u01-form-row {
    grid-template-columns: 1fr;
  }

  .u01-section {
    padding: 64px 0;
  }

  .u01-product-row,
  .u01-product-row.is-rev {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .u01-product-row.is-rev .u01-product-copy {
    order: 0;
  }

  .u01-product-still {
    order: -1;
  }
}

/* Phone: keep every public section inside the viewport. */
@media (max-width: 720px) {
  body.u01-site {
    max-width: 100%;
    font-size: 16px;
  }

  body.u01-site .rb-clone .rdr-h2 br {
    display: unset;
  }

  body.u01-site .u01-wrap,
  body.u01-site .u01-header-inner,
  body.u01-site .u01-mobile-nav {
    width: calc(100% - 32px);
  }

  body.u01-site .u01-display {
    font-size: clamp(30px, 8.4vw, 40px);
    letter-spacing: -0.045em;
  }

  body.u01-site .u01-h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  body.u01-site .u01-h3 {
    font-size: clamp(20px, 5.6vw, 26px);
  }

  body.u01-site .u01-section {
    padding: 56px 0;
  }

  body.u01-site .u01-section-line {
    padding-top: 56px;
  }

  body.u01-site .u01-section-head {
    margin-bottom: 28px;
  }

  body.u01-site .u01-page-hero {
    padding: 48px 0 32px;
  }

  body.u01-site .u01-page-hero .u01-display {
    max-width: none;
  }

  body.u01-site .u01-page-hero .u01-body-muted,
  body.u01-site .u01-hero-short {
    max-width: none !important;
    font-size: 15.5px !important;
  }

  body.u01-site .u01-home-top,
  body.u01-site .u01-home-top .rb-clone,
  body.u01-site .u01-home-top .rb-hero,
  body.u01-site .u01-home-top .rb-hero-right {
    overflow: hidden;
    max-width: 100%;
  }

  body.u01-site .u01-home-top .rb-hero {
    min-height: 0;
  }

  body.u01-site .u01-home-top .rb-hero-right {
    display: none !important;
    height: 0 !important;
  }

  body.u01-site .u01-home-top .rb-hero-content {
    padding: 36px 16px 20px;
  }

  body.u01-site .u01-home-top .rb-hero-h1,
  .rb-clone .rb-hero-h1 {
    font-size: clamp(30px, 8.6vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.9px;
    max-width: 100%;
  }

  body.u01-site .u01-home-top .rb-hero-body {
    width: auto;
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.45;
  }

  body.u01-site .u01-home-top .rb-hero-mini {
    width: calc(100% - 32px);
    max-width: none;
    margin: 0 16px 24px;
    padding: 0;
  }

  body.u01-site .u01-site-trust {
    padding: 16px;
    gap: 12px;
  }

  body.u01-site .u01-site-trust .rb-trust-logos {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      #000 20px,
      #000 calc(100% - 20px),
      transparent
    );
    mask-image: linear-gradient(
      to right,
      transparent,
      #000 20px,
      #000 calc(100% - 20px),
      transparent
    );
  }

  body.u01-site .u01-site-trust .rb-trust-logo-pill {
    height: 40px;
    padding: 0 10px;
  }

  body.u01-site .rb-clone .gap-section,
  body.u01-site .rb-clone .engine-section,
  body.u01-site .rb-clone .rb-nav-light {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.u01-site .rb-clone .engine-section {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 8px;
  }

  body.u01-site .rb-clone .engine-cta {
    margin-top: 24px;
    padding-bottom: 32px;
  }

  body.u01-site .rb-clone .rdr-h2 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.04em;
  }

  body.u01-site .rb-clone .gap-text {
    font-size: 16px;
    line-height: 1.4;
  }

  body.u01-site .rb-clone .eng-card,
  body.u01-site .rb-clone .eng-card-rev,
  body.u01-site .rb-clone .eng-visual,
  body.u01-site .rb-clone .eng-visual-fit {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  body.u01-site .rb-clone .eng-text {
    padding: 22px 16px 12px;
  }

  body.u01-site .rb-clone .eng-visual,
  body.u01-site .rb-clone .eng-visual-fit {
    position: relative;
    display: block !important;
    container-type: normal !important;
    height: auto !important;
    aspect-ratio: auto !important;
    max-height: none !important;
    padding: 4px 16px 16px !important;
  }

  body.u01-site .rb-clone .eng-board,
  body.u01-site .rb-clone .eng-board-chat,
  body.u01-site .rb-clone .eng-board-slack,
  body.u01-site .rb-clone .mtd-board-orch,
  body.u01-site .rb-clone .mtd-board-swarm,
  body.u01-site .rb-clone .mtd-board-deliver {
    position: relative !important;
    top: auto;
    left: auto;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 1;
    transform: none !important;
    background: #fff !important;
    box-shadow: none;
    border: none;
    overflow: hidden;
  }

  body.u01-site .rb-clone .eng-board .u01-ls-simple {
    min-height: 0;
    height: auto;
  }

  body.u01-site .rb-clone .eng-board .u01-ls-simple-inner {
    height: auto;
    padding: 20px 18px 16px;
    justify-content: flex-start;
  }

  body.u01-site .rb-clone .eng-board .u01-ls-simple-title {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.03em;
  }

  body.u01-site .rb-clone .eng-board .u01-ls-simple-list {
    margin-top: 12px;
  }

  body.u01-site .rb-clone .eng-board .u01-ls-simple-list li {
    padding: 8px 0;
    gap: 10px;
  }

  body.u01-site .rb-clone .eng-board .u01-ls-simple-copy strong {
    font-size: 13px;
  }

  body.u01-site .rb-clone .eng-board .u01-ls-simple-copy span {
    font-size: 12px;
  }

  body.u01-site .rb-clone .mtd-board-orch > .u01-color-tile.is-tr,
  body.u01-site .rb-clone .mtd-board-swarm > .u01-color-tile.is-tr,
  body.u01-site .rb-clone .mtd-board-deliver > .u01-color-tile.is-tr {
    display: block;
    width: 72px;
    height: 72px;
    top: 0;
    right: 0;
  }

  body.u01-site .u01-page-hero > .u01-color-tile.is-br {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 96px;
    height: 96px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
  }

  body.u01-site .u01-contact {
    overflow: hidden;
  }

  body.u01-site .u01-contact > .u01-color-tile.is-tr,
  body.u01-site .u01-contact > .u01-color-tile.is-br {
    width: 72px;
    height: 72px;
  }

  body.u01-site .u01-contact-hero .u01-display {
    max-width: none;
  }

  body.u01-site .u01-contact-need li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
  }

  body.u01-site .u01-story-row,
  body.u01-site .u01-tile,
  body.u01-site .u01-compare-row,
  body.u01-site .u01-ls-simple,
  body.u01-site .u01-diff-card,
  body.u01-site .u01-product-still,
  body.u01-site .u01-product-row,
  body.u01-site .u01-offer-linkcard,
  body.u01-site .u01-case-rail,
  body.u01-site .u01-case-panel {
    overflow: hidden;
    max-width: 100%;
    min-width: 0;
  }

  body.u01-site .u01-offer-media {
    padding: 18px 16px 84px;
  }

  body.u01-site .u01-offer-media-body {
    padding-top: 12px;
    padding-right: 0;
  }

  body.u01-site .u01-offer-media-body .u01-h3,
  body.u01-site .u01-offer-media-body p {
    max-width: none;
  }

  body.u01-site .u01-offer-media-stamp {
    width: 108px;
    height: 72px;
  }

  body.u01-site .u01-offer-linkcard {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 20px 14px 20px 18px;
    min-height: 0;
  }

  body.u01-site .u01-cta-band-grid,
  body.u01-site .u01-cta-band-grid-solo {
    padding: 24px 16px 22px;
    gap: 20px;
  }

  body.u01-site .u01-cta-band-frame {
    inset: 8px;
  }

  body.u01-site .u01-cta-band-actions {
    width: 100%;
  }

  body.u01-site .u01-cta-band-actions .u01-btn {
    width: 100%;
  }

  body.u01-site .u01-form {
    padding: 18px 14px;
  }

  body.u01-site .u01-form input:not([type="range"]):not([type="hidden"]),
  body.u01-site .u01-form textarea,
  body.u01-site .u01-form select {
    font-size: 16px;
    max-width: 100%;
  }

  body.u01-site .u01-logo-img {
    height: 28px;
  }

  body.u01-site .u01-logo-img-lg {
    height: 44px;
  }

  body.u01-site .u01-footer {
    padding: 48px 0 24px;
  }

  body.u01-site .u01-footer-grid {
    gap: 28px;
  }

  body.u01-site .u01-footer-bottom {
    margin-top: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  body.u01-site .u01-compare-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  body.u01-site .u01-compare-them,
  body.u01-site .u01-compare-us {
    grid-template-columns: 1fr;
  }

  body.u01-site .u01-block-text,
  body.u01-site .u01-story-row,
  body.u01-site .u01-case-rail {
    padding: 20px 16px 18px;
  }

  body.u01-site .u01-block-title,
  body.u01-site .u01-case-title {
    max-width: none;
    font-size: clamp(24px, 6.4vw, 30px);
  }

  body.u01-site .u01-block-body {
    max-width: none;
  }

  body.u01-site .u01-gap {
    padding: 48px 0;
  }

  body.u01-site .u01-gap-item--icon,
  body.u01-site .u01-gap-item--icon:nth-child(2),
  body.u01-site .u01-gap-item--icon:nth-child(3) {
    padding-left: 0;
    padding-right: 0;
  }

  body.u01-site .u01-gap-item--icon .u01-gap-text {
    max-width: none;
  }

  body.u01-site .u01-color-tile.is-lg {
    width: 88px;
    height: 88px;
  }

  body.u01-site .u01-color-tile.is-md {
    width: 64px;
    height: 64px;
  }

  body.u01-site .u01-legal {
    overflow-wrap: anywhere;
  }

  body.u01-site .u01-legal h2 {
    font-size: 20px;
  }

  body.u01-site .u01-legal-facts {
    grid-template-columns: 1fr;
    gap: 2px 0;
  }

  body.u01-site .u01-legal-facts dt {
    margin-top: 8px;
  }

  body.u01-site .u01-legal-facts dt:first-child {
    margin-top: 0;
  }

  body.u01-site .u01-product-row,
  body.u01-site .u01-product-row.is-rev {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  body.u01-site .u01-product-row.is-rev .u01-product-copy {
    order: 0;
  }

  body.u01-site .u01-product-still {
    order: -1;
  }

  body.u01-site .u01-case-row,
  body.u01-site .u01-case-rail .u01-case-row {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
  }

  body.u01-site .u01-diff-card {
    padding: 16px 16px 40px;
  }

  body.u01-site .u01-proof-panel {
    padding: 18px 16px;
  }

  body.u01-site .u01-proof-actions .u01-btn {
    width: 100%;
  }

  body.u01-site .rb-clone .eng-title {
    font-size: 24px;
    line-height: 1.18;
    max-width: none;
  }

  body.u01-site .rb-clone .eng-body {
    max-width: none;
    font-size: 15px;
    padding-top: 12px;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  body.u01-site .u01-home-top .rb-hero-mini {
    flex-wrap: wrap;
    width: calc(100% - 32px);
    max-width: none;
    margin: 0 16px 24px;
    gap: 10px;
  }

  body.u01-site .u01-home-top .rb-hero-mini-reel {
    height: 36px;
  }

  body.u01-site .u01-home-top .rb-hero-mini-shot {
    width: 52px;
    height: 36px;
  }

  body.u01-site .u01-home-top .rb-hero-mini-text {
    min-height: 0;
    width: 100%;
  }

  body.u01-site .u01-hero-actions,
  body.u01-site .u01-page-hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  body.u01-site .u01-hero-actions .u01-btn,
  body.u01-site .u01-hero-actions .rb-btn-demo-light,
  body.u01-site .u01-page-hero-actions .u01-btn {
    width: 100%;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .u01-reveal,
  .u01-btn,
  .u01-offer-card,
  .u01-glitch-base,
  .u01-glitch-accent {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }

  .u01-reveal {
    opacity: 1;
  }

  .u01-product-still video {
    display: none;
  }

  .u01-product-row.is-playing .u01-product-still video {
    opacity: 0;
  }
}
