@font-face {
  font-family: "Manrope";
  src: url("/landing/assets/manrope-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/landing/assets/manrope-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/landing/assets/manrope-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --bg: #fcf9f6;
  --surface: #ffffff;
  --ink: #1f1b16;
  --muted: #6f6964;
  --soft: #fff2e8;
  --orange: #f97316;
  --orange-dark: #d85b08;
  --green: #eaf1e7;
  --green-ink: #4f6548;
  --cobalt: #2866d8;
  --cobalt-soft: #eaf1ff;
  --line: #e9e1d8;
  --danger: #a74035;
  --shadow: 0 18px 50px rgba(55, 38, 25, 0.08);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 280px;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.08), transparent 28rem),
    var(--bg);
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.rf-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 20px;
}

.rf-topbar {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.rf-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.rf-top-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.rf-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  padding:
    clamp(54px, 8vw, 105px)
    20px
    clamp(68px, 9vw, 118px);
}

.rf-kicker {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(43px, 6.2vw, 76px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.rf-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

.rf-form-card,
.rf-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.rf-form-card {
  padding: 24px;
}

.rf-form-card h2 {
  margin-bottom: 6px;
  font-size: 27px;
}

.rf-form-card > p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.45;
}

.rf-field {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
}

.rf-field label,
.rf-label {
  font-size: 13px;
  font-weight: 750;
}

.rf-field input,
.rf-field select,
.rf-input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #ddd2c7;
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.rf-field input:focus,
.rf-field select:focus,
.rf-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.13);
}

.rf-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 4px 0 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.rf-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.rf-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 0;
  border-radius: 13px;
  color: white;
  background: var(--orange);
  box-shadow: 0 9px 24px rgba(249, 115, 22, 0.2);
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.rf-button:focus-visible,
.rf-icon-button:focus-visible,
.rf-link-button:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.35);
  outline-offset: 3px;
}

.rf-button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.rf-button-block {
  width: 100%;
}

.rf-button-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: none;
}

.rf-button-soft {
  color: var(--orange-dark);
  background: var(--soft);
  box-shadow: none;
}

.rf-microcopy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.rf-status {
  display: none;
  margin: 13px 0 0;
  padding: 11px 13px;
  border-radius: 11px;
  color: var(--green-ink);
  background: var(--green);
  font-size: 14px;
  font-weight: 650;
}

.rf-status[data-state="error"] {
  color: var(--danger);
  background: #fff0ed;
}

.rf-status[data-visible="true"] {
  display: block;
}

.rf-section {
  padding: clamp(62px, 8vw, 105px) 0;
  border-top: 1px solid var(--line);
}

.rf-section-head {
  max-width: 690px;
  margin-bottom: 35px;
}

.rf-section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

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

.rf-step {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--surface);
}

.rf-step-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.rf-step p,
.rf-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.rf-sms-demo {
  position: relative;
  min-height: 465px;
  padding: 26px;
  overflow: hidden;
  border-radius: 34px;
  color: #1e1b18;
  background: #eee9e4;
  box-shadow: inset 0 0 0 8px #201d1a, var(--shadow);
}

.rf-sms-time {
  margin-bottom: 30px;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.rf-bubble {
  width: 88%;
  margin: 0 0 12px auto;
  padding: 13px 15px;
  border-radius: 18px 18px 4px 18px;
  color: white;
  background: #2386f2;
  font-size: 15px;
  line-height: 1.38;
}

.rf-bubble-in {
  margin: 0 auto 12px 0;
  border-radius: 18px 18px 18px 4px;
  color: var(--ink);
  background: white;
}

.rf-report-preview {
  margin-top: 26px;
  padding: 16px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 25px rgba(45, 35, 27, 0.08);
}

.rf-report-preview strong,
.rf-report-preview span {
  display: block;
}

.rf-report-preview span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.rf-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 10px 0;
}

.rf-price strong {
  font-size: 48px;
  letter-spacing: -0.05em;
}

.rf-price span {
  color: var(--muted);
}

.rf-footer {
  padding: 30px 0 50px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.rf-footer__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.ra-footer-login {
  color: #1f1b16;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 27, 22, 0.32);
}

.ra-footer-login:hover {
  border-bottom-color: rgba(31, 27, 22, 0.72);
}

.rf-app {
  width: min(100%, 760px);
  margin: 0 auto;
  padding:
    env(safe-area-inset-top)
    max(18px, env(safe-area-inset-right))
    max(64px, env(safe-area-inset-bottom))
    max(18px, env(safe-area-inset-left));
}

.rf-app .rf-topbar {
  min-height: 66px;
}

.rf-app-main {
  padding-top: 30px;
}

.rf-progress {
  display: flex;
  gap: 7px;
  margin: 0 0 28px;
}

.rf-progress span {
  height: 4px;
  flex: 1;
  border-radius: 99px;
  background: var(--line);
}

.rf-progress span[data-active="true"] {
  background: var(--orange);
}

.rf-app h1 {
  max-width: 620px;
  margin-bottom: 13px;
  font-size: clamp(36px, 9vw, 52px);
}

.rf-app-lead {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.rf-card {
  padding: 22px;
}

.rf-card + .rf-card {
  margin-top: 14px;
}

.rf-schedule-card {
  margin: 0 0 18px;
}

.rf-schedule-card h3 {
  margin-bottom: 4px;
}

.rf-schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.rf-schedule-row:first-of-type {
  margin-top: 12px;
}

.rf-schedule-row > div,
.rf-schedule-row strong,
.rf-schedule-row span,
.rf-schedule-row small {
  display: block;
}

.rf-schedule-row span,
.rf-schedule-row small {
  margin-top: 4px;
  color: var(--muted);
}

.rf-danger-action {
  flex: 0 0 auto;
  color: var(--danger);
}

.rf-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.rf-choice {
  min-height: 165px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: var(--surface);
  text-align: left;
  cursor: pointer;
}

.rf-choice[aria-pressed="true"] {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.rf-choice-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 11px;
  color: var(--orange);
  background: var(--soft);
  font-size: 19px;
}

.rf-choice strong,
.rf-choice span {
  display: block;
}

.rf-choice span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.rf-hidden {
  display: none !important;
}

.rf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.rf-actions .rf-button {
  flex: 1 1 145px;
}

.rf-share-link {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fffaf6;
}

.rf-share-link input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
}

.rf-day-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.rf-day {
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--muted);
  background: var(--surface);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.rf-day[aria-pressed="true"] {
  color: white;
  border-color: var(--orange);
  background: var(--orange);
}

.rf-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rf-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green-ink);
  background: var(--green);
  font-size: 12px;
  font-weight: 750;
}

.rf-usage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.rf-usage strong {
  font-size: 14px;
}

.rf-usage span {
  color: var(--muted);
  font-size: 13px;
}

.rf-identity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 18px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  font-size: 14px;
  font-weight: 700;
}

.rf-link-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 0;
  color: var(--orange-dark);
  background: none;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.rf-policy {
  width: min(100%, 860px);
}

.rf-policy .rf-card {
  margin-bottom: 40px;
}

.rf-policy .rf-card h2 {
  margin: 28px 0 8px;
  font-size: 24px;
}

.rf-policy .rf-card h2:first-child {
  margin-top: 0;
}

.rf-policy .rf-card p + p {
  margin-top: 12px;
}

.rf-feed {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.rf-post {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(45, 35, 27, 0.05);
}

.rf-post[data-new="true"] {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.rf-post-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 12px;
}

.rf-post-head strong {
  display: block;
  font-size: 16px;
}

.rf-post-head time {
  color: var(--muted);
  font-size: 12px;
}

.rf-post-state {
  align-self: flex-start;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--muted);
  background: #f3efeb;
  font-size: 11px;
  font-weight: 750;
}

.rf-post-body {
  padding: 0 18px 16px;
}

.rf-post-body p {
  margin-bottom: 0;
  color: #4e4843;
  line-height: 1.52;
}

.rf-carousel {
  display: grid;
  grid-auto-columns: minmax(76%, 360px);
  grid-auto-flow: column;
  gap: 8px;
  overflow-x: auto;
  padding: 0 18px 16px;
  scroll-padding-left: 18px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.rf-carousel::-webkit-scrollbar {
  display: none;
}

.rf-carousel button {
  min-height: 215px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #ede7e1;
  scroll-snap-align: start;
  cursor: zoom-in;
}

.rf-carousel img {
  width: 100%;
  height: 100%;
  min-height: 215px;
  display: block;
  object-fit: cover;
}

.rf-post-media {
  padding: 0 18px 16px;
}

.rf-post-media video,
.rf-post-media audio {
  width: 100%;
}
.rf-post-media video {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #ece7e1;
}

.rf-post-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
}

.rf-kudos {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-weight: 750;
  cursor: pointer;
}

.rf-kudos[data-active="true"] {
  color: var(--orange-dark);
  border-color: #ffbf91;
  background: var(--soft);
}

.rf-post-incentive {
  margin-left: auto;
  padding: 7px 10px;
  border-radius: 999px;
  color: #496342;
  background: #e9f3e6;
  font-size: 12px;
  font-weight: 850;
}

.rf-post-incentive[data-state="voided"] {
  color: var(--muted);
  background: #f1ede9;
}

.rf-empty {
  padding: 35px 24px;
  border: 1px dashed #d9cdc1;
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.rf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 0;
  background: rgba(25, 21, 18, 0.94);
  cursor: zoom-out;
}

.rf-lightbox[data-open="true"] {
  display: flex;
}

.rf-lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 14px;
}

.rf-spinner {
  width: 34px;
  height: 34px;
  margin: 36px auto;
  border: 3px solid var(--line);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: rf-spin 0.8s linear infinite;
}

@keyframes rf-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 760px) {
  .rf-shell {
    padding: 0 17px;
  }

  .rf-topbar {
    min-height: 64px;
  }

  .rf-top-note {
    display: none;
  }

  .rf-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 17px 70px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .rf-lead {
    font-size: 18px;
  }

  .rf-sms-demo {
    order: -1;
    width: min(100%, 420px);
    min-height: 420px;
    margin: 0 auto;
  }

  .rf-steps,
  .rf-choice-grid,
  .rf-grid-2 {
    grid-template-columns: 1fr;
  }

  .rf-step {
    min-height: 0;
  }

  .rf-day-grid {
    gap: 4px;
  }

  .rf-day {
    min-height: 44px;
    font-size: 11px;
  }

  .rf-actions {
    flex-direction: column;
  }

  .rf-actions .rf-button {
    flex-basis: auto;
    width: 100%;
  }

  .rf-schedule-row {
    align-items: stretch;
    flex-direction: column;
  }

  .rf-schedule-row .rf-link-button {
    width: 100%;
    min-height: 44px;
  }
}

@media (max-width: 380px) {
  .rf-app {
    padding-inline:
      max(14px, env(safe-area-inset-left))
      max(14px, env(safe-area-inset-right));
  }

  .rf-card,
  .rf-form-card {
    padding: 18px;
    border-radius: 19px;
  }

  .rf-brand {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

/* RenAmigo visual system -------------------------------------------------- */

.rf-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rf-brand {
  gap: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.rf-wordmark {
  position: relative;
  display: inline-block;
  padding-right: 13px;
}

.rf-wordmark::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.rf-button {
  transition:
    transform 160ms var(--ease-out),
    background-color 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.rf-button:active,
.rf-choice:active,
.rf-stepper button:active,
.rf-member-tabs button:active,
.rf-add-control:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .rf-button:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
  }

  .rf-button-secondary:hover {
    color: var(--ink);
    background: #fffaf5;
  }

  .rf-button-soft:hover {
    color: white;
  }

  .rf-choice:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
  }
}

/* Landing page */

.rf-landing-page {
  overflow-x: clip;
  background:
    radial-gradient(circle at 8% 6%, rgba(249, 115, 22, 0.09), transparent 24rem),
    var(--bg);
}

.rf-landing-page .rf-shell {
  width: min(100%, 1180px);
}

.rf-landing-nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(72, 55, 42, 0.1);
}

.rf-landing-nav__end {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* The only door back in for someone who already has a workspace. */
.ra-nav-login {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(31, 27, 22, 0.24);
  border-radius: 999px;
  color: #1f1b16;
  background: #fff;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), border-color 160ms ease;
}

.ra-nav-login:hover {
  border-color: rgba(31, 27, 22, 0.46);
}

.ra-nav-login:active {
  transform: scale(0.97);
}

.rf-language-chip {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(31, 27, 22, 0.18);
  border-radius: 999px;
  color: #534c45;
  background: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 650;
}

.rf-language-chip svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.rf-landing-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(56px, 9vw, 112px);
}

.rf-hero-message {
  position: relative;
  z-index: 3;
}

.rf-landing-page h1,
.rf-landing-page h2 {
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.rf-landing-page h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(53px, 6vw, 84px);
  line-height: 0.98;
}

.rf-hero-message > p {
  max-width: 29ch;
  margin-bottom: 26px;
  color: #5f574f;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

.rf-hero-cta {
  min-width: 220px;
  min-height: 56px;
  border-radius: 15px;
  font-size: 17px;
}

.rf-price-note {
  display: block;
  margin-top: 11px;
  color: #736c65;
  font-size: 12px;
  font-weight: 650;
}

.rf-product-theater {
  --stage-step: 0;
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(300px, 358px) minmax(260px, 1fr);
  gap: 18px;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.rf-product-theater[data-step="1"] {
  --stage-step: 1;
}

.rf-product-theater[data-step="2"] {
  --stage-step: 2;
}

.rf-product-theater[data-step="3"] {
  --stage-step: 3;
}

.rf-signal-path {
  position: absolute;
  inset: 5% 0 auto;
  z-index: -1;
  width: 100%;
  height: 72%;
  overflow: visible;
  fill: none;
  stroke-linecap: round;
  stroke-width: 3;
}

.rf-signal-track {
  stroke: rgba(249, 115, 22, 0.14);
  stroke-dasharray: 6 11;
}

.rf-signal-live {
  stroke: var(--orange);
  stroke-dasharray: 700;
  stroke-dashoffset: calc(700 - (var(--stage-step) + 1) * 175);
  transition: stroke-dashoffset 900ms var(--ease-in-out);
}

.rf-phone-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 358px);
  height: 680px;
  padding: 18px 12px 14px;
  overflow: hidden;
  border: 8px solid #211e1b;
  border-radius: 46px;
  color: #1f1b16;
  background: #f5f2ef;
  box-shadow: 0 34px 70px rgba(42, 31, 22, 0.2);
}

.rf-phone-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 5;
  width: 92px;
  height: 25px;
  border-radius: 18px;
  background: #171513;
  transform: translateX(-50%);
}

.rf-phone-status {
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
  font-size: 10px;
  font-weight: 800;
}

.rf-browser-bar {
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
  border-radius: 11px;
  color: #625b54;
  background: #e7e3df;
  font-size: 10px;
  font-weight: 650;
}

.rf-browser-bar svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.rf-phone-viewport {
  position: relative;
  height: 548px;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
}

.rf-demo-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  filter: blur(2px);
  pointer-events: none;
  transition:
    opacity 360ms var(--ease-out),
    transform 560ms var(--ease-out),
    filter 340ms ease;
}

.rf-demo-state.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.rf-message-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 38px 0 42px;
}

.rf-message-header > div,
.rf-message-header strong,
.rf-message-header small {
  display: block;
}

.rf-message-header strong {
  font-size: 15px;
}

.rf-message-header small {
  margin-top: 2px;
  color: #81786f;
  font-size: 10px;
}

.rf-mini-brand {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: var(--orange);
  font-size: 15px;
  font-weight: 800;
}

.rf-message-bubble {
  align-self: flex-start;
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 18px 18px 18px 5px;
  background: #eceae8;
  font-size: 13px;
  line-height: 1.45;
}

.rf-message-bubble span,
.rf-message-bubble a {
  display: block;
}

.rf-message-bubble a {
  margin-top: 3px;
  color: var(--cobalt);
  font-weight: 650;
}

.rf-rich-link {
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  padding: 11px;
  border-radius: 15px;
  background: #fff4ea;
  box-shadow: 0 13px 26px rgba(55, 37, 21, 0.1);
}

.rf-rich-link > span:nth-child(2),
.rf-rich-link strong,
.rf-rich-link small {
  display: block;
}

.rf-rich-link strong {
  font-size: 12px;
}

.rf-rich-link small {
  margin-top: 3px;
  color: #766c64;
  font-size: 9px;
}

.rf-link-signal {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: var(--orange);
}

.rf-link-signal svg,
.rf-rich-arrow {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.rf-rich-arrow {
  color: #756c65;
}

.rf-capture-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 9px;
}

.rf-capture-head strong {
  font-size: 12px;
  text-align: center;
}

.rf-live-dot {
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--green-ink);
  background: var(--green);
  font-weight: 750;
}

.rf-camera-field {
  position: relative;
  height: 286px;
  overflow: hidden;
  border-radius: 18px;
  background: #231f1b;
}

.rf-camera-field > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rf-camera-field::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 52%, rgba(24, 19, 15, 0.58));
  content: "";
}

.rf-camera-guide {
  position: absolute;
  inset: 25px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 11px;
}

.rf-camera-caption {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  z-index: 2;
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.rf-voice-row {
  display: grid;
  grid-template-columns: 43px 1fr 34px;
  gap: 8px;
  align-items: center;
  margin: 12px 0;
}

.rf-voice-row button {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--cobalt);
}

.rf-voice-row button span {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: white;
}

.rf-voice-row time {
  color: #6d655e;
  font-size: 10px;
}

.rf-waveform {
  display: flex;
  height: 35px;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
}

.rf-waveform i {
  width: 3px;
  height: 26%;
  border-radius: 99px;
  background: var(--cobalt);
  animation: rf-wave 780ms ease-in-out infinite alternate;
}

.rf-waveform i:nth-child(2n) {
  height: 70%;
  animation-delay: -220ms;
}

.rf-waveform i:nth-child(3n) {
  height: 42%;
  animation-delay: -420ms;
}

@keyframes rf-wave {
  to { transform: scaleY(1.55); }
}

.rf-photo-rail,
.rf-report-photos,
.rf-board-thumb-row {
  display: grid;
  grid-auto-flow: column;
  gap: 6px;
}

.rf-photo-rail {
  grid-auto-columns: 1fr;
}

.rf-photo-rail img,
.rf-photo-rail span {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}

.rf-photo-rail span {
  display: grid;
  place-items: center;
  color: #6c645c;
  background: #f1ede9;
  font-size: 9px;
  font-weight: 700;
}

.rf-processing-state {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rf-processing-state > strong {
  margin-top: 26px;
  font-size: 19px;
}

.rf-processing-state > span {
  margin-top: 5px;
  color: #746c65;
  font-size: 11px;
}

.rf-processing-orbit {
  position: relative;
  width: 126px;
  height: 126px;
}

.rf-processing-orbit > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--orange);
  stroke-dasharray: 22 11;
  stroke-linecap: round;
  stroke-width: 2.2;
  animation: rf-spin 1.2s linear infinite;
}

.rf-processing-photo {
  position: absolute;
  inset: 19px;
  overflow: hidden;
  border-radius: 22px;
}

.rf-processing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rf-processing-lines {
  width: 72%;
  margin-top: 32px;
}

.rf-processing-lines i {
  display: block;
  height: 7px;
  margin-top: 9px;
  border-radius: 99px;
  background: #efe9e3;
  animation: rf-processing-pulse 1.1s ease-in-out infinite alternate;
}

.rf-processing-lines i:nth-child(2) {
  width: 82%;
  animation-delay: -320ms;
}

.rf-processing-lines i:nth-child(3) {
  width: 58%;
  animation-delay: -640ms;
}

@keyframes rf-processing-pulse {
  to { opacity: 0.38; transform: scaleX(0.93); }
}

.rf-report-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.rf-report-head > span:last-child,
.rf-report-head strong,
.rf-report-head small {
  display: block;
}

.rf-report-head strong {
  font-size: 15px;
}

.rf-report-head small {
  margin-top: 3px;
  color: #776f68;
  font-size: 10px;
}

.rf-done-check {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-ink);
  background: var(--green);
}

.rf-done-check svg,
.rf-success-mark svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.rf-report-photos {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
}

.rf-report-photos img {
  width: 100%;
  height: 102px;
  border-radius: 11px;
  object-fit: cover;
}

.rf-report-summary {
  padding: 16px;
  border-radius: 14px;
  background: #f6f2ee;
}

.rf-report-summary strong {
  font-size: 12px;
}

.rf-report-summary p {
  margin: 7px 0 0;
  color: #5f5851;
  font-size: 11px;
  line-height: 1.5;
}

.rf-report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.rf-report-meta span {
  padding: 5px 7px;
  border-radius: 999px;
  color: #625a53;
  background: #f0ece8;
  font-size: 8px;
  font-weight: 750;
}

.rf-kudos-burst {
  position: absolute;
  right: 16px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  opacity: 0;
  transform: scale(0.9);
}

.is-active .rf-kudos-burst {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 240ms var(--ease-out) 380ms,
    transform 520ms var(--ease-out) 380ms;
}

.rf-kudos-burst span {
  position: absolute;
  inset: 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green-ink);
  font-weight: 800;
}

.rf-kudos-burst i {
  position: absolute;
  top: 0;
  left: 25px;
  width: 3px;
  height: 9px;
  border-radius: 99px;
  background: var(--orange);
  transform-origin: 2px 27px;
}

.rf-kudos-burst i:nth-child(2) { background: var(--cobalt); transform: rotate(90deg); }
.rf-kudos-burst i:nth-child(3) { background: #e5ad28; transform: rotate(180deg); }
.rf-kudos-burst i:nth-child(4) { background: var(--green-ink); transform: rotate(270deg); }

.rf-demo-progress {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 10px;
}

.rf-demo-progress span {
  width: 18px;
  height: 4px;
  border-radius: 99px;
  background: #d9d2cb;
  transform: scaleX(0.55);
  transition:
    transform 420ms var(--ease-out),
    background-color 240ms ease;
}

.rf-demo-progress span.is-active {
  background: var(--orange);
  transform: scaleX(1);
}

.rf-owner-board {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 26px 65px rgba(50, 37, 27, 0.14);
  transform: translateX(-22px);
}

.rf-owner-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.rf-owner-board-head span:first-child,
.rf-owner-board-head small,
.rf-owner-board-head strong {
  display: block;
}

.rf-owner-board-head small {
  color: #7a726b;
  font-size: 10px;
}

.rf-owner-board-head strong {
  margin-top: 3px;
  font-size: 18px;
}

.rf-board-ready {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--green-ink);
  background: var(--green);
  font-size: 10px;
  font-weight: 750;
}

.rf-owner-timeline {
  padding: 22px 0;
}

.rf-owner-timeline > div {
  position: relative;
  display: grid;
  grid-template-columns: 12px 60px 1fr;
  gap: 8px;
  min-height: 62px;
}

.rf-owner-timeline > div::after {
  position: absolute;
  top: 12px;
  bottom: -4px;
  left: 5px;
  width: 1px;
  background: #cfdcc9;
  content: "";
}

.rf-owner-timeline > div:last-child::after {
  display: none;
}

.rf-owner-timeline i {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  margin-top: 3px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--green-ink);
  box-shadow: 0 0 0 1px #aebea8;
}

.rf-owner-timeline time {
  color: #837a73;
  font-size: 9px;
}

.rf-owner-timeline span,
.rf-owner-timeline strong,
.rf-owner-timeline small {
  display: block;
}

.rf-owner-timeline strong {
  font-size: 11px;
}

.rf-owner-timeline small {
  margin-top: 3px;
  color: #7a726b;
  font-size: 9px;
}

.rf-board-thumb-row {
  grid-template-columns: repeat(3, 1fr);
}

.rf-board-thumb-row img {
  width: 100%;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
}

.rf-loop-caption {
  border-top: 1px solid rgba(71, 53, 39, 0.09);
  border-bottom: 1px solid rgba(71, 53, 39, 0.09);
  background: rgba(255, 255, 255, 0.54);
}

.rf-loop-caption .rf-shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 76px;
  align-items: center;
}

.rf-loop-caption span {
  position: relative;
  color: #4f4842;
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.rf-loop-caption span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 28px;
  background: var(--line);
  content: "";
  transform: translateY(-50%);
}

.rf-start-section {
  padding: clamp(76px, 10vw, 132px) 0;
  background: #f2ece5;
}

.rf-start-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(36px, 8vw, 100px);
  align-items: start;
}

.rf-start-layout h2 {
  max-width: 8ch;
  font-size: clamp(45px, 5vw, 72px);
  line-height: 0.98;
}

.rf-start-layout header p {
  color: #645c55;
  font-size: 16px;
  line-height: 1.55;
}

.rf-start-layout header p strong {
  color: var(--orange-dark);
  font-size: 24px;
}

.rf-landing-form {
  padding: clamp(22px, 4vw, 34px);
  border: 0;
  border-radius: 16px;
  background: white;
  box-shadow: 0 26px 60px rgba(48, 35, 24, 0.12);
}

.rf-landing-form .rf-field input {
  min-height: 58px;
  font-size: 18px;
}

#turnstileMount {
  width: 100%;
  min-width: 0;
  margin: 6px 0 14px;
  overflow: hidden;
}

.rf-final-call {
  padding: clamp(72px, 10vw, 128px) 0;
  color: white;
  background: var(--orange);
}

.rf-final-call .rf-shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.rf-final-call h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.9;
}

.rf-final-call .rf-button {
  flex: 0 0 auto;
  color: var(--ink);
  background: white;
  box-shadow: 0 14px 30px rgba(111, 50, 8, 0.16);
}

/* Setup and linked operating surfaces */

.rf-setup-page {
  background:
    radial-gradient(circle at 88% 2%, rgba(249, 115, 22, 0.08), transparent 20rem),
    var(--bg);
}

.rf-setup-app {
  width: min(100%, 920px);
}

.rf-setup-app .rf-app-main {
  padding-top: clamp(32px, 6vw, 58px);
}

.rf-setup-app .rf-app-main > section:not(#existingStep),
.rf-setup-app .rf-app-main > #loading {
  width: min(100%, 720px);
  margin-inline: auto;
}

.rf-setup-page h1 {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: clamp(40px, 7vw, 60px);
  letter-spacing: -0.04em;
  line-height: 1;
  text-wrap: balance;
}

.rf-setup-page .rf-app-lead {
  margin-bottom: 24px;
  font-size: 17px;
}

.rf-setup-page .rf-card {
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid #e2d8ce;
  border-radius: 16px;
  box-shadow: none;
}

.rf-setup-progress {
  display: flex;
  align-items: center;
  gap: 9px;
  width: min(100%, 270px);
  margin: 0 0 30px;
  color: #90877f;
  font-size: 11px;
  font-weight: 750;
}

.rf-setup-progress span {
  white-space: nowrap;
}

.rf-setup-progress span.is-active {
  color: var(--orange-dark);
}

.rf-setup-progress span.is-done {
  color: var(--green-ink);
}

.rf-setup-progress i {
  height: 2px;
  flex: 1;
  border-radius: 99px;
  background: #ddd5ce;
}

.rf-setup-progress i.is-done {
  background: var(--green-ink);
}

.rf-delivery-choices {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.rf-delivery-choices .rf-choice {
  display: flex;
  min-height: 268px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 16px;
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms ease,
    background-color 180ms ease;
}

.rf-choice-art {
  width: 100%;
  height: 122px;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.rf-link-art rect:first-child {
  fill: #fff4ea;
}

.rf-link-art rect:nth-child(2) {
  fill: var(--cobalt-soft);
  stroke: var(--cobalt);
}

.rf-message-art .rf-message-tile {
  fill: var(--cobalt);
  stroke: var(--cobalt);
}

.rf-message-art .rf-message-bubble-shape {
  fill: white;
  stroke: none;
}

.rf-message-art .rf-message-badge {
  fill: var(--orange);
  stroke: white;
}

.rf-message-art .rf-message-badge-mark {
  stroke: white;
}

.rf-choice-copy,
.rf-choice-copy strong,
.rf-choice-copy span {
  display: block;
}

.rf-choice-copy strong {
  font-size: 19px;
}

.rf-choice-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.rf-success-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: white;
  background: var(--green-ink);
}

.rf-result-card {
  margin-bottom: 14px;
}

.rf-result-card > .rf-button {
  margin-top: 12px;
}

.rf-share-actions {
  flex-direction: row;
}

.rf-share-actions .rf-button {
  flex: 1 1 0;
}

.rf-back-button {
  margin: -12px 0 24px;
  padding-left: 0;
}

.rf-member-card {
  overflow: hidden;
}

.rf-member-card > #contactPickerHelp {
  margin: 10px 0 18px;
}

#scheduleContactHelp {
  margin: 10px 0 16px;
}

.rf-member-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.rf-member-count > span,
.rf-member-count strong,
.rf-member-count small {
  display: block;
}

.rf-member-count strong {
  font-size: 15px;
}

.rf-member-count small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.rf-stepper {
  display: grid;
  grid-template-columns: 42px 46px 42px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dcd2c8;
  border-radius: 13px;
}

.rf-stepper button {
  min-height: 42px;
  border: 0;
  color: var(--orange-dark);
  background: #fff8f1;
  font-size: 20px;
  cursor: pointer;
  transition: transform 140ms var(--ease-out);
}

.rf-stepper output {
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.rf-member-tabs {
  display: flex;
  gap: 7px;
  margin: 18px -4px 22px;
  padding: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.rf-member-tabs::-webkit-scrollbar {
  display: none;
}

.rf-member-tabs button {
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: white;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition:
    transform 140ms var(--ease-out),
    background-color 160ms ease,
    color 160ms ease;
}

.rf-member-tabs button.is-active {
  color: white;
  border-color: var(--orange);
  background: var(--orange);
}

.rf-member-position {
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
}

.rf-field-help {
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.ra-interface-language-help {
  margin-top: -10px;
  margin-bottom: 12px;
  font-size: 12px;
}

.ra-language-assurance {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 16px;
  border-radius: 14px;
  color: var(--green-ink);
  background: var(--green);
}

.ra-language-assurance strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
}

.ra-language-assurance p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.ra-language-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ra-language-examples span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--green-ink);
  background: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
}

.ra-language-assurance--compact {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: baseline;
  margin-top: -4px;
}

.ra-language-assurance--compact p {
  font-size: 12px;
}

@media (max-width: 420px) {
  .ra-language-assurance--compact {
    grid-template-columns: 1fr;
  }
}

.rf-member-navigation {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.rf-member-navigation .rf-button {
  min-width: 132px;
}

.rf-timing-card .rf-field + .rf-field {
  margin-top: 23px;
}

.rf-time-list {
  display: grid;
  min-width: 0;
  gap: 9px;
}

.rf-time-row {
  display: grid;
  min-width: 0;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.rf-time-row input {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 52px;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #ddd2c7;
  border-radius: 13px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.rf-remove-time {
  display: grid;
  width: 48px;
  min-height: 48px;
  place-items: center;
  border: 0;
  border-radius: 13px;
  color: var(--danger);
  background: #fff0ed;
  cursor: pointer;
}

.rf-remove-time svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.rf-add-control {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  padding: 8px 0;
  border: 0;
  color: var(--orange-dark);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 140ms var(--ease-out);
}

.rf-add-control span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-size: 16px;
}

.rf-date-grid {
  min-width: 0;
  margin: 24px 0 8px;
}

.rf-timing-card,
.rf-timing-card .rf-field,
.rf-date-grid > *,
.rf-date-grid input[type="date"] {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.rf-consent-result {
  margin-bottom: 11px;
}

.rf-consent-result summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 800;
}

.rf-consent-result summary::-webkit-details-marker {
  display: none;
}

.rf-consent-result[open] summary {
  margin-bottom: 18px;
}

.rf-consent-result > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.rf-existing-jobs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.rf-existing-job {
  display: flex;
  min-height: 268px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.07), transparent 52%),
    #fff;
}

.rf-existing-job__head {
  display: grid;
  min-width: 0;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.rf-existing-job__head h3 {
  margin: 1px 0 5px;
  overflow-wrap: anywhere;
  font-size: clamp(21px, 2.6vw, 27px);
  line-height: 1.05;
}

.rf-existing-job__head p { margin: 0; }

.rf-existing-job__status {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 11px;
  background: #fff5e9;
}

.rf-existing-job__status::after {
  width: 9px;
  height: 9px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.24);
  content: "";
}

.rf-existing-job .rf-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 34px;
}

.rf-existing-job .rf-actions .rf-button {
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-inline: 12px;
  white-space: normal;
}

.rf-existing-job .rf-actions svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.rf-existing-job .rf-existing-job__primary {
  grid-column: 1 / -1;
}

.rf-existing-job__link {
  color: #1f63ad;
  border-color: #d7e6f8;
  background: #f4f8ff;
}

.rf-existing-job__copy {
  color: var(--green-ink);
  border-color: #d8e4d4;
  background: #f3f8f0;
}

.rf-existing-job__copy[data-copied="true"] {
  color: white;
  border-color: var(--green-ink);
  background: var(--green-ink);
}

@media (min-width: 900px) {
  .rf-landing-page .rf-footer {
    padding-bottom: 42px;
  }
}

@media (max-width: 899px) {
  .rf-landing-nav {
    min-height: 62px;
  }

  .rf-language-chip {
    min-height: 31px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .rf-landing-nav__end {
    gap: 7px;
  }

  .ra-nav-login {
    min-height: 34px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .rf-landing-hero {
    display: block;
    padding-top: 38px;
    padding-bottom: 62px;
  }

  .rf-landing-page h1 {
    max-width: 690px;
    font-size: clamp(45px, 12vw, 68px);
  }

  .rf-hero-message > p {
    max-width: 33ch;
    margin-bottom: 22px;
    font-size: 17px;
  }

  .rf-product-theater {
    display: block;
    min-height: 0;
    margin-top: 46px;
  }

  .rf-phone-shell {
    width: min(100%, 370px);
    margin: 0 auto;
  }

  .rf-owner-board {
    display: none;
  }

  .rf-signal-path {
    inset: 0 0 auto;
    width: 100%;
    height: 54%;
  }

  .rf-start-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rf-start-layout h2 {
    max-width: 10ch;
  }

  .rf-final-call .rf-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .rf-landing-page .rf-footer {
    padding-bottom: 42px;
  }
}

@media (max-width: 640px) {
  .rf-landing-page .rf-shell {
    padding-right: 16px;
    padding-left: 16px;
  }

  .rf-wordmark {
    font-size: 20px;
  }

  .rf-hero-cta {
    width: 100%;
  }

  .rf-phone-shell {
    height: 628px;
    border-width: 7px;
    border-radius: 40px;
  }

  .rf-phone-viewport {
    height: 498px;
  }

  .rf-camera-field {
    height: 240px;
  }

  .rf-report-photos img {
    height: 84px;
  }

  .rf-loop-caption .rf-shell {
    min-height: 66px;
  }

  .rf-loop-caption span {
    font-size: 11px;
  }

  .rf-loop-caption span + span::before {
    height: 22px;
  }

  .rf-start-section {
    padding: 70px 0;
  }

  .rf-start-layout h2 {
    font-size: 46px;
  }

  .rf-start-layout header p strong {
    font-size: 21px;
  }

  .rf-final-call h2 {
    font-size: 55px;
  }

  .rf-final-call .rf-button {
    width: 100%;
  }

  .rf-setup-page h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .rf-delivery-choices {
    grid-template-columns: 1fr;
  }

  .rf-delivery-choices .rf-choice {
    display: grid;
    min-height: 0;
    grid-template-columns: 132px 1fr;
    gap: 12px;
    align-items: center;
  }

  .rf-choice-art {
    height: 95px;
  }

  .rf-share-actions {
    flex-direction: column;
  }

  .rf-share-actions .rf-button {
    flex-basis: auto;
  }

  .rf-member-count {
    align-items: flex-start;
    flex-direction: column;
  }

  .rf-stepper {
    width: 100%;
    grid-template-columns: 1fr 54px 1fr;
  }

  .rf-member-navigation {
    flex-direction: column-reverse;
  }

  .rf-member-navigation .rf-button {
    width: 100%;
  }
}

@media (max-width: 370px) {
  .rf-language-chip svg {
    display: none;
  }

  .rf-language-chip {
    padding-inline: 8px;
  }

  /* Smallest phones: the login pill beats the bilingual badge for nav space. */
  .rf-landing-nav__end .rf-language-chip {
    display: none;
  }

  .rf-phone-shell {
    height: 600px;
    padding-inline: 9px;
    border-radius: 36px;
  }

  .rf-phone-viewport {
    height: 470px;
  }

  .rf-demo-state {
    padding-inline: 13px;
  }

  .rf-camera-field {
    height: 215px;
  }

  .rf-delivery-choices .rf-choice {
    grid-template-columns: 105px 1fr;
  }
}

/* RenAmigo delight pass -------------------------------------------------- */

.rf-landing-page .rf-landing-hero {
  grid-template-columns: minmax(320px, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(38px, 6vw, 82px);
  padding-top: clamp(46px, 7vw, 84px);
  padding-bottom: clamp(68px, 8vw, 104px);
}

.rf-landing-page .rf-hero-message {
  align-self: start;
  padding-top: clamp(84px, 9vw, 132px);
}

.rf-landing-page .rf-hero-message > p {
  max-width: none;
  color: #5c534a;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 600;
}

.rf-landing-page .rf-hero-message h1 {
  font-size: clamp(55px, 5vw, 72px);
}

.rf-landing-page .rf-product-theater {
  display: flex;
  min-height: 872px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.rf-relay-controls {
  position: relative;
  z-index: 5;
  display: grid;
  width: min(100%, 610px);
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.rf-relay-controls button {
  position: relative;
  display: inline-flex;
  min-width: 0;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border: 0;
  border-radius: 999px;
  color: #4c5d45;
  background: #edf3e9;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition:
    color 170ms ease,
    background-color 170ms ease,
    box-shadow 240ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.rf-relay-controls button::after {
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  opacity: 0.58;
  transform: scaleX(0);
  transform-origin: left;
}

.rf-product-theater[data-autoplay="running"][data-in-view="true"] .rf-relay-controls button[aria-selected="true"]::after {
  animation: rf-demo-control-progress var(--rf-demo-dwell, 2400ms) linear forwards;
}

.rf-product-theater[data-processing="true"] .rf-relay-controls button::after {
  animation: none;
}

@keyframes rf-demo-control-progress {
  to { transform: scaleX(1); }
}

.rf-relay-controls button:nth-child(2) {
  color: #2357a8;
  background: #eaf2ff;
}

.rf-relay-controls button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.rf-relay-controls button[aria-selected="true"] {
  color: white;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(178, 73, 4, 0.2);
  transform: translateY(-2px);
}

.rf-relay-controls button:focus-visible {
  outline: 3px solid rgba(40, 102, 216, 0.28);
  outline-offset: 3px;
}

.rf-relay-controls button:active {
  transform: scale(0.97);
}

.rf-demo-toggle {
  position: absolute;
  top: 60px;
  right: 4px;
  z-index: 7;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(53, 40, 30, 0.13);
  border-radius: 50%;
  color: #5a5149;
  background: rgba(255, 253, 250, 0.92);
  box-shadow: 0 12px 28px rgba(61, 40, 24, 0.12);
  cursor: pointer;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms var(--ease-out);
}

.rf-demo-toggle svg {
  width: 17px;
  height: 17px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.rf-demo-toggle__play {
  display: none;
}

.rf-demo-toggle[data-paused="true"] {
  color: white;
  background: var(--cobalt);
}

.rf-demo-toggle[data-paused="true"] .rf-demo-toggle__pause {
  display: none;
}

.rf-demo-toggle[data-paused="true"] .rf-demo-toggle__play {
  display: block;
}

.rf-demo-toggle:focus-visible {
  outline: 3px solid rgba(40, 102, 216, 0.28);
  outline-offset: 3px;
}

.rf-demo-toggle:active {
  transform: scale(0.94);
}

.rf-radio-relay {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(100%, 590px);
  height: 126px;
  grid-template-columns: 1fr 86px 1fr;
  align-items: center;
}

.rf-relay-line {
  height: 2px;
  background-image: linear-gradient(90deg, var(--orange) 48%, transparent 48%);
  background-size: 13px 2px;
  opacity: 0.9;
}

.rf-relay-line--left {
  border-radius: 50% 0 0 50%;
  transform: rotate(5deg) translateY(8px);
}

.rf-relay-line--right {
  border-radius: 0 50% 50% 0;
  transform: rotate(-5deg) translateY(8px);
}

.rf-walkie {
  width: 86px;
  height: 110px;
  overflow: visible;
  filter: drop-shadow(0 14px 12px rgba(96, 45, 9, 0.16));
  transform: rotate(-3deg);
  animation: rf-radio-float 2.8s var(--ease-in-out) infinite alternate;
}

.rf-walkie-body {
  fill: var(--orange);
  stroke: #bc4c05;
  stroke-width: 3;
}

.rf-walkie-antenna,
.rf-walkie-knob,
.rf-walkie-grill,
.rf-walkie-wave {
  fill: none;
  stroke: #322116;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.rf-walkie-knob {
  stroke-width: 4;
}

.rf-walkie-screen {
  fill: #2b251f;
}

.rf-walkie-button {
  fill: #ffd0af;
  stroke: #a94304;
  stroke-width: 2;
}

.rf-walkie-wave {
  stroke: var(--orange);
  stroke-width: 3;
  opacity: 0.75;
  animation: rf-radio-wave 1.45s ease-out infinite;
}

.rf-walkie-wave--two {
  animation-delay: 220ms;
}

@keyframes rf-radio-float {
  to { transform: translateY(-5px) rotate(2deg); }
}

@keyframes rf-radio-wave {
  0%, 18% { opacity: 0; transform: translateX(-4px); }
  50% { opacity: 0.85; }
  100% { opacity: 0; transform: translateX(5px); }
}

.rf-phone-stage {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 480px);
  height: 700px;
  place-items: start center;
  margin-top: -10px;
  overflow: hidden;
  isolation: isolate;
}

.rf-phone-stage::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
  height: 68px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  content: "";
  pointer-events: none;
}

.rf-phone-frame {
  position: relative;
  z-index: 3;
  width: min(100%, 350px);
  aspect-ratio: 9 / 19.5;
  filter: drop-shadow(0 34px 40px rgba(42, 31, 22, 0.19));
  transform: perspective(1200px) rotateY(-1.4deg) rotateZ(-0.35deg);
  transition: transform 520ms var(--ease-out);
}

.rf-phone-frame::before,
.rf-phone-frame::after {
  position: absolute;
  z-index: -1;
  width: 7px;
  border-radius: 5px;
  background: #2a2724;
  content: "";
}

.rf-phone-frame::before {
  top: 132px;
  left: -5px;
  height: 82px;
  box-shadow: 0 104px 0 #2a2724;
}

.rf-phone-frame::after {
  top: 178px;
  right: -5px;
  height: 116px;
}

.rf-landing-page .rf-phone-shell {
  width: 100%;
  height: 100%;
  margin: 0;
  border-color: #141312;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 8px 20px rgba(42, 31, 22, 0.1);
  transform: none;
}

.rf-landing-page .rf-phone-viewport {
  height: calc(100% - 85px);
}

.rf-product-theater[data-step="0"] .rf-browser-bar {
  display: none;
}

.rf-product-theater[data-step="0"] .rf-phone-viewport {
  height: calc(100% - 39px);
}

.rf-product-theater[data-step="0"] .rf-phone-frame {
  transform: perspective(1200px) rotateY(-1.4deg) rotateZ(-0.35deg);
}

.rf-product-theater[data-step="1"] .rf-phone-frame {
  transform: perspective(1200px) rotateY(1.2deg) rotateZ(0.35deg) translateY(-2px);
}

.rf-product-theater[data-step="2"] .rf-phone-frame {
  transform: perspective(1200px) rotateY(-0.6deg) rotateZ(-0.15deg) translateY(-3px);
}

.rf-phone-orbits {
  position: absolute;
  top: -8px;
  left: 50%;
  z-index: 1;
  width: 440px;
  height: 790px;
  max-width: 100%;
  overflow: visible;
  pointer-events: none;
  transform: translateX(-50%);
}

.rf-orbit-path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 3;
  stroke-dasharray: 7 11;
  opacity: 0.46;
  animation: rf-orbit-flow 7s linear infinite;
  transition: opacity 260ms ease, stroke-width 260ms ease;
}

.rf-orbit-path--orange { stroke: var(--orange); }
.rf-orbit-path--blue { stroke: var(--cobalt); animation-direction: reverse; }
.rf-orbit-path--green { stroke: #6e8d60; animation-delay: -2s; }

.rf-orbit-dot {
  opacity: 0.86;
  filter: drop-shadow(0 3px 4px rgba(44, 32, 24, 0.16));
}

.rf-orbit-dot--orange { fill: var(--orange); }
.rf-orbit-dot--blue { fill: var(--cobalt); }
.rf-orbit-dot--green { fill: #6e8d60; }

.rf-orbit-node {
  opacity: 0.45;
  filter: drop-shadow(0 8px 10px rgba(44, 32, 24, 0.08));
  transition: opacity 260ms ease, filter 260ms ease;
}

.rf-orbit-node circle {
  fill: #fffdf9;
  stroke-width: 3;
}

.rf-orbit-node__icon,
.rf-orbit-sparks {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.rf-orbit-node--text circle,
.rf-orbit-node--text .rf-orbit-node__icon,
.rf-orbit-node--text .rf-orbit-sparks {
  stroke: var(--orange);
}

.rf-orbit-node--capture circle,
.rf-orbit-node--capture .rf-orbit-node__icon,
.rf-orbit-node--capture .rf-orbit-sparks {
  stroke: var(--cobalt);
}

.rf-orbit-node--done circle,
.rf-orbit-node--done .rf-orbit-node__icon,
.rf-orbit-node--done .rf-orbit-sparks {
  stroke: #648255;
}

.rf-orbit-sparks {
  opacity: 0.48;
}

.rf-product-theater[data-step="0"] .rf-orbit-node--text,
.rf-product-theater[data-step="1"] .rf-orbit-node--capture,
.rf-product-theater[data-step="2"] .rf-orbit-node--done {
  opacity: 1;
  filter: drop-shadow(0 10px 14px rgba(44, 32, 24, 0.17));
}

.rf-product-theater[data-step="0"] .rf-orbit-path--orange,
.rf-product-theater[data-step="1"] .rf-orbit-path--blue,
.rf-product-theater[data-step="2"] .rf-orbit-path--green {
  opacity: 0.92;
  stroke-width: 4;
}

.rf-product-theater[data-step="0"] .rf-orbit-node--text .rf-orbit-sparks,
.rf-product-theater[data-step="1"] .rf-orbit-node--capture .rf-orbit-sparks,
.rf-product-theater[data-step="2"] .rf-orbit-node--done .rf-orbit-sparks {
  animation: rf-orbit-spark 1.2s var(--ease-in-out) infinite alternate;
}

@keyframes rf-orbit-flow {
  to { stroke-dashoffset: -72; }
}

@keyframes rf-orbit-spark {
  to { opacity: 1; }
}

.rf-demo-state[hidden] {
  display: none;
}

.rf-landing-page .rf-demo-state {
  filter: blur(6px);
  transform: translateY(22px) scale(0.965);
}

.rf-landing-page .rf-demo-state.is-active {
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.rf-landing-page .rf-message-header {
  margin-top: 46px;
}

.rf-message-compose {
  display: grid;
  grid-template-columns: 29px 1fr 30px;
  gap: 7px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}

.rf-message-compose span,
.rf-message-compose svg {
  width: 29px;
  height: 29px;
  box-sizing: border-box;
  padding: 6px;
  border-radius: 50%;
}

.rf-message-compose span {
  display: grid;
  place-items: center;
  padding: 0;
  color: #605950;
  background: #ece9e6;
  font-size: 19px;
}

.rf-message-compose i {
  padding: 8px 12px;
  border: 1px solid #ddd8d3;
  border-radius: 999px;
  color: #8a837c;
  font-size: 10px;
  font-style: normal;
}

.rf-message-compose svg {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  background: #35bd58;
}

.rf-landing-page .rf-rich-link {
  border: 1px solid rgba(249, 115, 22, 0.18);
}

.rf-landing-page .rf-camera-field {
  height: 292px;
}

.rf-report-processing {
  position: absolute;
  z-index: 12;
  top: 52%;
  left: 50%;
  display: flex;
  min-width: 214px;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 999px;
  opacity: 0;
  color: #6c390f;
  background: rgba(255, 250, 245, 0.96);
  box-shadow: 0 20px 50px rgba(54, 35, 22, 0.2);
  pointer-events: none;
  transform: translate(-50%, 18px) scale(0.92);
  transition:
    opacity 180ms ease,
    transform 420ms var(--ease-out);
}

.rf-product-theater[data-processing="true"] .rf-report-processing {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.rf-product-theater[data-processing="true"] .rf-phone-frame {
  filter: saturate(0.78) brightness(0.96);
  transform: perspective(1200px) rotateY(-0.6deg) scale(0.985);
  transition:
    filter 260ms ease,
    transform 460ms var(--ease-out);
}

.rf-processing-radio {
  position: relative;
  width: 28px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 7px;
  background: var(--orange);
}

.rf-processing-radio::before {
  position: absolute;
  top: -9px;
  right: 5px;
  width: 3px;
  height: 12px;
  border-radius: 99px;
  background: #33241a;
  content: "";
  transform: rotate(18deg);
  transform-origin: bottom;
}

.rf-processing-radio i {
  position: absolute;
  left: 7px;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: #4b2d18;
  animation: rf-radio-bars 620ms ease-in-out infinite alternate;
}

.rf-processing-radio i:nth-child(1) { top: 10px; }
.rf-processing-radio i:nth-child(2) { top: 16px; animation-delay: -180ms; }
.rf-processing-radio i:nth-child(3) { top: 22px; animation-delay: -360ms; }

@keyframes rf-radio-bars {
  to { transform: scaleX(0.55); opacity: 0.5; }
}

.rf-loop-caption {
  position: relative;
}

.rf-loop-caption::before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(88%, 820px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  content: "";
  transform: translateX(-50%);
}

.rf-crew-motion {
  padding: clamp(70px, 9vw, 116px) 0;
}

.rf-crew-motion__panel {
  display: grid;
  min-height: 410px;
  grid-template-columns: minmax(300px, 0.86fr) minmax(390px, 1.14fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  padding: clamp(34px, 5vw, 62px) !important;
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 12%, rgba(40, 102, 216, 0.11), transparent 13rem),
    #fff5e9;
  box-shadow: 0 28px 70px rgba(59, 41, 27, 0.09);
}

.rf-crew-motion__copy h2 {
  max-width: 9ch;
  margin-bottom: 34px;
  font-size: clamp(46px, 5vw, 70px);
  line-height: 0.98;
}

.rf-crew-motion__outcomes {
  display: grid;
  gap: 18px;
}

.rf-crew-motion__outcomes span,
.rf-crew-motion__outcomes b,
.rf-crew-motion__outcomes small {
  display: block;
}

.rf-crew-motion__outcomes span {
  position: relative;
  padding-left: 24px;
}

.rf-crew-motion__outcomes span::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.11);
  content: "";
}

.rf-crew-motion__outcomes span:nth-child(2)::before {
  background: var(--cobalt);
  box-shadow: 0 0 0 5px rgba(40, 102, 216, 0.11);
}

.rf-crew-motion__outcomes span:nth-child(3)::before {
  background: var(--green-ink);
  box-shadow: 0 0 0 5px rgba(79, 101, 72, 0.11);
}

.rf-crew-motion__outcomes b {
  font-size: 15px;
}

.rf-crew-motion__outcomes small {
  margin-top: 3px;
  color: #6f6257;
  font-size: 12px;
}

.rf-crew-motion__art {
  width: 100%;
  overflow: visible;
}

.rf-crew-motion__art path,
.rf-crew-motion__art rect,
.rf-crew-motion__art circle {
  fill: none;
  stroke: #3a3028;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.rf-crew-motion__art .rf-ground {
  stroke: rgba(79, 101, 72, 0.45);
  stroke-width: 3;
}

.rf-crew-motion__art .rf-cloud {
  fill: #ffe5c7;
  stroke: none;
}

.rf-crew-motion__art .rf-art-radio rect:first-of-type {
  fill: var(--orange);
  stroke: #b74a06;
}

.rf-crew-motion__art .rf-art-radio rect:nth-of-type(2) {
  fill: #302923;
}

.rf-crew-motion__art .rf-art-radio circle {
  fill: #ffe1ca;
  stroke: #b74a06;
}

.rf-crew-motion__art .rf-art-tower {
  stroke: var(--cobalt);
}

.rf-crew-motion__art .rf-art-site {
  stroke: var(--green-ink);
}

.rf-crew-motion__art .rf-art-wave {
  stroke-dasharray: 12 10;
  animation: rf-tower-signal 1.8s linear infinite;
}

.rf-crew-motion__art .rf-art-signal {
  stroke: var(--orange);
  stroke-dasharray: 0.08 0.05;
  stroke-width: 4;
  animation: rf-relay-dash 1.7s linear infinite;
}

@keyframes rf-tower-signal {
  to { stroke-dashoffset: -44; }
}

@keyframes rf-relay-dash {
  to { stroke-dashoffset: -1; }
}

/* Product-specific loading and compact app actions */

.rf-spinner {
  position: relative;
  width: 34px;
  height: 46px;
  margin: 38px auto;
  border: 2px solid #ba4c08;
  border-radius: 9px;
  background:
    linear-gradient(#33251c, #33251c) 8px 12px / 16px 3px no-repeat,
    linear-gradient(#33251c, #33251c) 8px 20px / 16px 3px no-repeat,
    linear-gradient(#33251c, #33251c) 8px 28px / 11px 3px no-repeat,
    var(--orange);
  box-shadow: 0 13px 24px rgba(93, 43, 8, 0.15);
  animation: rf-loader-radio 900ms var(--ease-in-out) infinite alternate;
}

.rf-spinner::before {
  position: absolute;
  top: -14px;
  right: 6px;
  width: 3px;
  height: 17px;
  border-radius: 99px;
  background: #33251c;
  content: "";
  transform: rotate(17deg);
  transform-origin: bottom;
}

.rf-spinner::after {
  position: absolute;
  top: 1px;
  right: -15px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--orange);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
  opacity: 0.5;
  transform: rotate(20deg);
}

@keyframes rf-loader-radio {
  to { transform: translateY(-5px) rotate(2deg); box-shadow: 0 19px 31px rgba(93, 43, 8, 0.2); }
}

.rf-capture-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 10px;
}

.rf-capture-actions.is-video-required {
  grid-template-columns: 1fr;
}

.rf-capture-action {
  display: grid;
  min-height: 104px;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  justify-content: start;
  padding: 14px;
  text-align: left;
}

.rf-capture-action svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.rf-capture-action__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--orange);
  background: white;
}

.rf-capture-action strong,
.rf-capture-action small {
  display: block;
}

.rf-capture-action small {
  margin-top: 3px;
  color: inherit;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.76;
}

.rf-identity-form {
  max-width: 560px;
}

.rf-identity-form .rf-button {
  width: auto;
  min-width: 150px;
}

.rf-setup-page #existingStep > .rf-actions {
  align-items: center;
  flex-direction: row;
}

.rf-setup-page #existingStep > .rf-actions .rf-button {
  width: auto;
  flex: 0 0 auto;
}

.rf-setup-page .rf-existing-job .rf-actions {
  align-items: center;
  flex-direction: row;
}

.rf-setup-page .rf-existing-job .rf-actions .rf-button {
  width: auto;
  flex: 0 0 auto;
}

@media (hover: hover) and (pointer: fine) {
  .rf-relay-controls button:hover {
    transform: translateY(-2px);
  }

  .rf-relay-controls button[aria-selected="true"]:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 899px) {
  .rf-landing-page .rf-landing-hero {
    padding-top: 34px;
  }

  .rf-landing-page .rf-hero-message {
    padding-top: 0;
    text-align: center;
  }

  .rf-landing-page .rf-hero-message > p {
    margin-right: auto;
    margin-left: auto;
  }

  .rf-landing-page .rf-price-note {
    text-align: center;
  }

  .rf-landing-page .rf-product-theater {
    width: min(100%, 650px);
    min-height: 842px;
    margin-right: auto;
    margin-left: auto;
  }

  .rf-crew-motion__panel {
    grid-template-columns: 1fr;
  }

  .rf-crew-motion__copy h2 {
    max-width: 10ch;
  }

  .rf-crew-motion__outcomes {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .rf-crew-motion__art {
    max-width: 620px;
    margin: -10px auto 0;
  }
}

@media (max-width: 640px) {
  .rf-landing-page .rf-landing-hero {
    padding-top: 28px;
    padding-bottom: 66px;
  }

  .rf-landing-page .rf-hero-message h1 {
    max-width: 9ch;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(47px, 13vw, 64px);
  }

  .rf-landing-page .rf-hero-message > p {
    margin-bottom: 20px;
    font-size: 19px;
  }

  .rf-landing-page .rf-product-theater {
    min-height: 778px;
    margin-top: 40px;
  }

  .rf-relay-controls {
    gap: 5px;
  }

  .rf-relay-controls button {
    min-height: 42px;
    gap: 5px;
    padding: 8px 7px;
    font-size: 10px;
  }

  .rf-relay-controls button svg {
    width: 15px;
    height: 15px;
  }

  .rf-radio-relay {
    height: 96px;
    grid-template-columns: 1fr 70px 1fr;
  }

  .rf-walkie {
    width: 70px;
    height: 94px;
  }

  .rf-demo-toggle {
    top: 52px;
    right: 2px;
    width: 36px;
    height: 36px;
  }

  .rf-phone-stage {
    width: calc(100% + 32px);
    height: clamp(500px, 160vw, 638px);
    margin-top: -6px;
    margin-left: -16px;
  }

  .rf-phone-frame {
    width: min(80vw, 326px);
  }

  .rf-landing-page .rf-phone-shell {
    width: 100%;
    height: 100%;
    margin: 0;
    transform: none;
  }

  .rf-landing-page .rf-phone-viewport {
    height: calc(100% - 85px);
  }

  .rf-product-theater[data-step="0"] .rf-phone-viewport {
    height: calc(100% - 39px);
  }

  .rf-landing-page .rf-camera-field {
    height: 270px;
  }

  .rf-report-processing {
    top: 53%;
  }

  .rf-crew-motion {
    padding: 66px 0;
  }

  .rf-crew-motion__panel {
    min-height: 0;
    padding: 32px 24px 20px !important;
    border-radius: 20px;
  }

  .rf-crew-motion__copy h2 {
    margin-bottom: 28px;
    font-size: 46px;
  }

  .rf-crew-motion__outcomes {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rf-crew-motion__art {
    margin-top: 2px;
  }

  .rf-capture-actions {
    grid-template-columns: 1fr 1fr;
  }

  .rf-capture-action {
    min-height: 116px;
    grid-template-columns: 1fr;
    gap: 8px;
    align-content: center;
    text-align: center;
  }

  .rf-capture-action__icon {
    margin: 0 auto;
  }

  .rf-identity-form .rf-button {
    width: 100%;
  }

  .rf-setup-page #existingStep > .rf-actions,
  .rf-setup-page .rf-existing-job .rf-actions {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .rf-setup-page #existingStep > .rf-actions .rf-button,
  .rf-setup-page .rf-existing-job .rf-actions .rf-button {
    width: auto;
  }

  .rf-existing-jobs {
    grid-template-columns: 1fr;
  }

  .rf-existing-job {
    min-height: 238px;
  }

  .rf-timing-card input[type="time"],
  .rf-timing-card input[type="date"] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 370px) {
  .rf-existing-job .rf-actions {
    grid-template-columns: 1fr;
  }

  .rf-existing-job .rf-existing-job__primary {
    grid-column: auto;
  }

  .rf-time-row {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .rf-landing-page .rf-product-theater {
    min-height: 0;
  }

  .rf-relay-controls button span {
    max-width: 64px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .rf-landing-page .rf-phone-shell {
    width: 100%;
    height: 100%;
  }

  .rf-phone-stage {
    height: clamp(500px, 165vw, 608px);
  }

  .rf-phone-frame {
    width: min(82vw, 306px);
  }

  .rf-landing-page .rf-phone-viewport {
    height: calc(100% - 85px);
  }

  .rf-product-theater[data-step="0"] .rf-phone-viewport {
    height: calc(100% - 39px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rf-relay-controls button::after {
    animation: none !important;
  }

  .rf-walkie,
  .rf-walkie-wave,
  .rf-orbit-path,
  .rf-orbit-sparks,
  .rf-crew-motion__art .rf-art-wave,
  .rf-crew-motion__art .rf-art-signal,
  .rf-spinner,
  .rf-processing-radio i {
    animation: none !important;
  }
}
