/* ==========================================================================
   UNICUS MARKETING — REVENUE CYCLE
   File: /assets/css/revenue-cycle.css
   Version: 2.0
   ========================================================================== 

   Page-specific presentation for revenue-cycle.php.
   Load after /assets/css/global.css.

   The shared header, footer, scheduler, resets, and reveal behavior remain
   controlled by global.css. All rules below are scoped to page-revenue-cycle.
   The hero image filename intentionally uses "backgound" to match the asset.
   ========================================================================== */


/* ==========================================================================
   01. PAGE FOUNDATION
   ========================================================================== */

.page-revenue-cycle .page {
  --rc-white: #f4f1ed;
  --rc-copy: #b9b4ae;
  --rc-muted: #7d7872;
  --rc-line: rgba(var(--white-rgb), .11);
  --rc-line-strong: rgba(var(--primary-rgb), .42);
  --rc-panel: #101010;
  --rc-panel-light: #151515;

  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.page-revenue-cycle .page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .13;
  background-image:
    linear-gradient(rgba(var(--white-rgb), .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--white-rgb), .018) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 96%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 96%);
}

.page-revenue-cycle .page > section {
  position: relative;
  z-index: 1;
}

.page-revenue-cycle .page h1,
.page-revenue-cycle .page h2,
.page-revenue-cycle .page h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

.page-revenue-cycle .wrap {
  width: 100%;
  max-width: var(--site-max);
  margin-inline: auto;
  padding-inline: var(--site-gutter);
}

.page-revenue-cycle .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 23px;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: var(--hero-eyebrow-size);
  font-weight: 700;
  letter-spacing: var(--hero-eyebrow-spacing);
  line-height: 1;
  text-transform: uppercase;
}

.page-revenue-cycle .eyebrow::before {
  content: "";
  flex: 0 0 42px;
  width: 42px;
  height: 1px;
  background: currentColor;
}

.page-revenue-cycle .section-lead {
  max-width: 720px;
  margin: 25px 0 0;
  color: var(--rc-copy);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
}

.page-revenue-cycle .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid var(--primary);
  border-radius: 0;
  background: var(--primary);
  color: var(--black-light);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background-color var(--transition-standard),
    border-color var(--transition-standard),
    color var(--transition-standard),
    transform var(--transition-standard);
}

.page-revenue-cycle .cta-button:hover,
.page-revenue-cycle .cta-button:focus-visible {
  border-color: var(--primary-light);
  background: var(--primary-light);
  color: var(--black-light);
  transform: translateY(-1px);
}


/* ==========================================================================
   02. HERO
   ========================================================================== */

.page-revenue-cycle .hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(var(--primary-rgb), .18);
  background: var(--black);
}

.page-revenue-cycle .hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image: url("../images/revenue-cycle-hero-backgound.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(.78) contrast(1.08);
  transform: scale(1.01);
}

.page-revenue-cycle .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(var(--black-rgb), .97) 0%, rgba(var(--black-rgb), .86) 49%, rgba(var(--black-rgb), .36) 100%),
    linear-gradient(0deg, var(--black) 0%, rgba(var(--black-rgb), .5) 30%, transparent 68%);
}

.page-revenue-cycle .hero::after {
  content: "REVENUE";
  position: absolute;
  right: -2vw;
  bottom: -7vw;
  z-index: -1;
  color: rgba(var(--white-rgb), .025);
  font: 400 clamp(210px, 26vw, 410px)/.8 var(--font-display);
  letter-spacing: -.035em;
  pointer-events: none;
  white-space: nowrap;
}

.page-revenue-cycle .hero-inner {
  width: 100%;
  padding-top: 170px;
  padding-bottom: 66px;
}

.page-revenue-cycle .hero-copy {
  max-width: 1240px;
}

.page-revenue-cycle .hero h1 {
  max-width: 1060px;
  margin: 0 0 33px;
  color: var(--white);
  font-size: var(--hero-heading-size);
  letter-spacing: var(--hero-heading-spacing);
  line-height: var(--hero-heading-line);
}

.page-revenue-cycle .hero h1 span {
  display: block;
  color: var(--primary);
}

.page-revenue-cycle .hero-foot {
  display: grid;
  grid-template-columns: minmax(0, 790px) auto;
  gap: 58px;
  align-items: end;
  max-width: 1240px;
  padding-top: 23px;
  border-top: 1px solid rgba(var(--primary-rgb), .45);
}

.page-revenue-cycle .hero-foot > p {
  margin: 0;
  color: var(--light-gray);
  font-family: var(--font-body);
  font-size: var(--hero-copy-size);
  line-height: var(--hero-copy-line);
}

.page-revenue-cycle .hero-action {
  display: flex;
  justify-content: flex-end;
}

.page-revenue-cycle .hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 35px;
  margin-top: 31px;
  color: rgba(var(--white-rgb), .56);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.page-revenue-cycle .hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.page-revenue-cycle .hero-proof span::before {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid var(--primary);
  transform: rotate(45deg);
}


/* ==========================================================================
   03. REVENUE CYCLE OVERVIEW
   ========================================================================== */

.page-revenue-cycle .system-intro {
  padding: 126px 0 82px;
  border-bottom: 1px solid var(--rc-line);
  background:
    radial-gradient(circle at 82% 24%, rgba(var(--primary-rgb), .08), transparent 26%),
    var(--black);
}

.page-revenue-cycle .system-intro-head {
  max-width: 980px;
}

.page-revenue-cycle .system-intro h2,
.page-revenue-cycle .channels h2,
.page-revenue-cycle .journey-head h2,
.page-revenue-cycle .return-title h2,
.page-revenue-cycle .accountability h2,
.page-revenue-cycle .closing h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(54px, 6vw, 88px);
  letter-spacing: -.015em;
  line-height: .92;
}

.page-revenue-cycle .system-intro h2 span,
.page-revenue-cycle .channels h2 span,
.page-revenue-cycle .journey-head h2 span,
.page-revenue-cycle .return-title h2 span,
.page-revenue-cycle .accountability h2 span,
.page-revenue-cycle .closing h2 span {
  display: block;
  color: var(--primary);
}


/* ==========================================================================
   04. ACQUISITION CHANNELS
   ========================================================================== */

.page-revenue-cycle .channels {
  padding: 112px 0 0;
  background: linear-gradient(180deg, #080808 0%, var(--black) 100%);
}

.page-revenue-cycle .channels-head,
.page-revenue-cycle .journey-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .65fr);
  column-gap: clamp(55px, 8vw, 125px);
  align-items: end;
  margin-bottom: 60px;
}

.page-revenue-cycle .channels-head .eyebrow,
.page-revenue-cycle .journey-head .eyebrow {
  grid-column: 1 / -1;
}

.page-revenue-cycle .channels-head .section-lead,
.page-revenue-cycle .journey-head .section-lead {
  margin: 0;
  padding-left: 25px;
  border-left: 1px solid rgba(var(--primary-rgb), .5);
}

.page-revenue-cycle .channel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.page-revenue-cycle .channel {
  position: relative;
  min-height: 190px;
  padding: 30px 25px;
  overflow: hidden;
  border: 1px solid rgba(var(--white-rgb), .1);
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--primary-rgb), .11), transparent 40%),
    linear-gradient(145deg, rgba(var(--white-rgb), .045), rgba(var(--white-rgb), .012));
  transition:
    border-color var(--transition-standard),
    background-color var(--transition-standard),
    transform var(--transition-standard);
}

.page-revenue-cycle .channel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-standard);
}

.page-revenue-cycle .channel:hover {
  border-color: rgba(var(--primary-rgb), .44);
  transform: translateY(-3px);
}

.page-revenue-cycle .channel:hover::before {
  transform: scaleY(1);
}

.page-revenue-cycle .channel-kicker {
  display: block;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.page-revenue-cycle .channel h3 {
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(25px, 2vw, 34px);
  letter-spacing: .005em;
  line-height: .98;
}

.page-revenue-cycle .channel p {
  margin: 16px 0 0;
  color: var(--rc-muted);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
}

.page-revenue-cycle .feed-line {
  position: relative;
  width: calc(80% + 3px);
  height: 76px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(var(--primary-rgb), .68);
}

.page-revenue-cycle .feed-line::before,
.page-revenue-cycle .feed-line::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 76px;
  background: linear-gradient(var(--primary), rgba(var(--primary-rgb), .12));
}

.page-revenue-cycle .feed-line::before {
  left: 0;
}

.page-revenue-cycle .feed-line::after {
  right: 0;
}

.page-revenue-cycle .feed-arrow {
  position: relative;
  width: 1px;
  height: 82px;
  margin: 0 auto;
  background: linear-gradient(var(--primary), rgba(var(--primary-rgb), .72));
}

.page-revenue-cycle .feed-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
  transform: rotate(45deg);
}


/* ==========================================================================
   05. COMPLETE REVENUE JOURNEY
   ========================================================================== */

.page-revenue-cycle .journey {
  padding: 36px 0 125px;
  background:
    radial-gradient(circle at 50% 42%, rgba(var(--primary-rgb), .07), transparent 28%),
    var(--black);
}

.page-revenue-cycle .journey-head {
  margin-bottom: 82px;
}

.page-revenue-cycle .journey-grid {
  position: relative;
  max-width: 1110px;
  margin-inline: auto;
}

.page-revenue-cycle .journey-heading {
  margin: 0 0 29px;
  color: var(--white);
  font-size: 32px;
  letter-spacing: .04em;
  line-height: 1;
  text-align: center;
}

.page-revenue-cycle .journey-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.page-revenue-cycle .funnel,
.page-revenue-cycle .post-funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.page-revenue-cycle .stage,
.page-revenue-cycle .post-stage {
  position: relative;
  border: 0;
  color: var(--rc-white);
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  transition:
    filter var(--transition-standard),
    transform var(--transition-standard),
    box-shadow var(--transition-standard);
}

.page-revenue-cycle .stage {
  --stage-width: 100%;
  width: var(--stage-width);
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(30px, 6vw, 80px);
  clip-path: polygon(0 0, 100% 0, calc(100% - 28px) 100%, 28px 100%);
  background:
    linear-gradient(90deg, rgba(var(--primary-rgb), .17), rgba(var(--white-rgb), .05) 48%, rgba(var(--primary-rgb), .09)),
    #111;
  box-shadow:
    inset 0 1px rgba(var(--primary-rgb), .72),
    inset 0 -1px rgba(var(--primary-rgb), .35);
}

.page-revenue-cycle .stage:hover,
.page-revenue-cycle .stage:focus-visible,
.page-revenue-cycle .stage.active,
.page-revenue-cycle .post-stage:hover,
.page-revenue-cycle .post-stage:focus-visible,
.page-revenue-cycle .post-stage.active {
  filter: brightness(1.2);
  outline: none;
  transform: scale(1.012);
}

.page-revenue-cycle .stage:focus-visible,
.page-revenue-cycle .post-stage:focus-visible {
  box-shadow:
    inset 0 0 0 2px var(--primary),
    0 0 0 3px rgba(var(--primary-rgb), .18);
}

.page-revenue-cycle .stage.active {
  background:
    linear-gradient(90deg, rgba(var(--primary-rgb), .38), rgba(var(--white-rgb), .08), rgba(var(--primary-rgb), .17)),
    #111;
}

.page-revenue-cycle .stage-main {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.page-revenue-cycle .stage-marker {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border: 1px solid var(--primary-light);
  box-shadow: 0 0 16px rgba(var(--primary-rgb), .58);
  transform: rotate(45deg);
}

.page-revenue-cycle .stage-label {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 31px);
  font-weight: 400;
  letter-spacing: .025em;
  line-height: 1;
  text-transform: uppercase;
}

.page-revenue-cycle .stage-detail {
  color: #aaa59f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-revenue-cycle .s1 { --stage-width: 100%; }
.page-revenue-cycle .s2 { --stage-width: 94%; }
.page-revenue-cycle .s3 { --stage-width: 88%; }
.page-revenue-cycle .s4 { --stage-width: 82%; }
.page-revenue-cycle .s5 { --stage-width: 76%; }
.page-revenue-cycle .s6 { --stage-width: 70%; }
.page-revenue-cycle .s7 { --stage-width: 64%; }
.page-revenue-cycle .s8 { --stage-width: 58%; }

.page-revenue-cycle .sale-transition {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
}

.page-revenue-cycle .sale-transition::before,
.page-revenue-cycle .sale-transition::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 98px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary));
}

.page-revenue-cycle .sale-transition::before {
  left: 0;
}

.page-revenue-cycle .sale-transition::after {
  right: 0;
  transform: rotate(180deg);
}

.page-revenue-cycle .sale-orbit {
  position: relative;
  width: 188px;
  height: 188px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--primary-rgb), .72);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), .18), #090909 68%);
  box-shadow:
    0 0 65px rgba(var(--primary-rgb), .17),
    inset 0 0 38px rgba(var(--primary-rgb), .12);
}

.page-revenue-cycle .sale-orbit::before,
.page-revenue-cycle .sale-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--primary-rgb), .28);
  border-radius: 50%;
}

.page-revenue-cycle .sale-orbit::before {
  inset: 13px;
}

.page-revenue-cycle .sale-orbit::after {
  inset: -15px;
  border-color: rgba(var(--primary-rgb), .1);
}

.page-revenue-cycle .sale-orbit div {
  position: relative;
  text-align: center;
}

.page-revenue-cycle .sale-orbit small {
  display: block;
  color: var(--primary-light);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.page-revenue-cycle .sale-orbit strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 37px;
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}

.page-revenue-cycle .sale-orbit span {
  display: block;
  margin-top: 8px;
  color: var(--rc-copy);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.page-revenue-cycle .post-stage {
  --post-width: 58%;
  width: var(--post-width);
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  align-items: center;
  padding: 18px clamp(30px, 6vw, 78px);
  clip-path: polygon(28px 0, calc(100% - 28px) 0, 100% 100%, 0 100%);
  background:
    linear-gradient(90deg, rgba(var(--white-rgb), .045), rgba(var(--primary-rgb), .12)),
    #111;
  box-shadow:
    inset 0 1px rgba(var(--primary-rgb), .35),
    inset 0 -1px rgba(var(--primary-rgb), .7);
}

.page-revenue-cycle .post-stage.active {
  background:
    linear-gradient(90deg, rgba(var(--white-rgb), .06), rgba(var(--primary-rgb), .34)),
    #111;
}

.page-revenue-cycle .post-stage .stage-copy small {
  display: block;
  margin-top: 6px;
  color: #918d87;
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.35;
}

.page-revenue-cycle .post-marker {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--primary-rgb), .72);
  border-radius: 50%;
  color: var(--primary-light);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
}

.page-revenue-cycle .p1 { --post-width: 58%; }
.page-revenue-cycle .p2 { --post-width: 65%; }
.page-revenue-cycle .p3 { --post-width: 72%; }
.page-revenue-cycle .p4 { --post-width: 79%; }
.page-revenue-cycle .p5 { --post-width: 86%; }
.page-revenue-cycle .p6 { --post-width: 93%; }

.page-revenue-cycle .stage-panel {
  position: sticky;
  bottom: 22px;
  z-index: 6;
  width: min(calc(100% - 24px), 920px);
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 21px;
  align-items: center;
  margin: 38px auto 0;
  padding: 18px 24px;
  border: 1px solid rgba(var(--primary-rgb), .44);
  background: rgba(11, 11, 11, .93);
  box-shadow: 0 18px 55px rgba(var(--black-rgb), .48);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.page-revenue-cycle .panel-index,
.page-revenue-cycle .panel-hint {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.page-revenue-cycle .panel-copy strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
}

.page-revenue-cycle .panel-copy span {
  display: block;
  margin-top: 5px;
  color: var(--rc-copy);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.48;
}

.page-revenue-cycle .panel-hint {
  color: var(--rc-muted);
  white-space: nowrap;
}


/* ==========================================================================
   06. CONTROLLED RETURN PATHS
   ========================================================================== */

.page-revenue-cycle .return-system {
  padding: 120px 0;
  border-top: 1px solid var(--rc-line);
  background:
    radial-gradient(circle at 20% 50%, rgba(var(--primary-rgb), .08), transparent 25%),
    linear-gradient(180deg, #090909, #060606);
}

.page-revenue-cycle .return-title {
  max-width: 900px;
  margin-bottom: 62px;
}

.page-revenue-cycle .return-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rc-line);
  border-left: 1px solid var(--rc-line);
}

.page-revenue-cycle .return-card {
  position: relative;
  min-height: 330px;
  padding: 38px 34px;
  overflow: hidden;
  border-right: 1px solid var(--rc-line);
  border-bottom: 1px solid var(--rc-line);
  background: rgba(var(--white-rgb), .015);
  transition: background-color var(--transition-standard);
}

.page-revenue-cycle .return-card:hover {
  background: rgba(var(--primary-rgb), .055);
}

.page-revenue-cycle .return-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(var(--primary-rgb), .23);
  border-radius: 50%;
}

.page-revenue-cycle .return-route {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.page-revenue-cycle .return-route::after {
  content: "\2192";
  font-size: 21px;
  font-weight: 400;
}

.page-revenue-cycle .return-card h3 {
  max-width: 310px;
  margin: 40px 0 0;
  color: var(--white);
  font-size: clamp(33px, 3vw, 45px);
  line-height: .95;
}

.page-revenue-cycle .return-card p {
  margin: 20px 0 0;
  color: var(--rc-copy);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
}

.page-revenue-cycle .return-target {
  display: inline-block;
  margin-top: 27px;
  padding: 9px 12px;
  border-left: 2px solid var(--primary);
  background: rgba(var(--primary-rgb), .09);
  color: #ddd8d1;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}


/* ==========================================================================
   07. MEASUREMENT AND ACCOUNTABILITY
   ========================================================================== */

.page-revenue-cycle .accountability {
  padding: 125px 0;
  border-top: 1px solid rgba(var(--primary-rgb), .16);
  background: #080808;
}

.page-revenue-cycle .accountability-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: end;
  margin-bottom: 64px;
}

.page-revenue-cycle .accountability-head .section-lead {
  margin: 0;
  padding-left: 25px;
  border-left: 1px solid rgba(var(--primary-rgb), .5);
}

.page-revenue-cycle .metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rc-line);
  border-left: 1px solid var(--rc-line);
}

.page-revenue-cycle .metric {
  min-height: 185px;
  padding: 31px 29px;
  border-right: 1px solid var(--rc-line);
  border-bottom: 1px solid var(--rc-line);
  background: rgba(var(--white-rgb), .012);
  transition: background-color var(--transition-standard);
}

.page-revenue-cycle .metric:hover {
  background: rgba(var(--primary-rgb), .06);
}

.page-revenue-cycle .metric small {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.page-revenue-cycle .metric h3 {
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(25px, 2vw, 32px);
  letter-spacing: .01em;
  line-height: 1;
}

.page-revenue-cycle .metric p {
  margin: 14px 0 0;
  color: var(--rc-muted);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.58;
}


/* ==========================================================================
   08. FINAL CTA
   ========================================================================== */

.page-revenue-cycle .closing {
  position: relative;
  padding: 155px 0;
  overflow: hidden;
  border-top: 1px solid var(--rc-line);
  text-align: center;
  background:
    linear-gradient(90deg, transparent, rgba(var(--primary-rgb), .06), transparent),
    #060606;
}

.page-revenue-cycle .closing::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(var(--primary-rgb), .08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), .12), transparent 66%);
  transform: translate(-50%, -50%);
}

.page-revenue-cycle .closing::after {
  content: "CONNECTED";
  position: absolute;
  right: 50%;
  bottom: -5vw;
  color: rgba(var(--white-rgb), .02);
  font: 400 clamp(170px, 22vw, 350px)/.8 var(--font-display);
  letter-spacing: -.035em;
  transform: translateX(50%);
  white-space: nowrap;
}

.page-revenue-cycle .closing-inner {
  position: relative;
  z-index: 1;
}

.page-revenue-cycle .closing .eyebrow {
  justify-content: center;
}

.page-revenue-cycle .closing h2 {
  max-width: 1050px;
  margin-inline: auto;
  font-size: clamp(62px, 7vw, 108px);
  line-height: .88;
}

.page-revenue-cycle .closing .section-lead {
  max-width: 710px;
  margin: 31px auto 0;
}

.page-revenue-cycle .closing .cta-button {
  margin-top: 38px;
}


/* ==========================================================================
   09. RESPONSIVE — TABLET / SMALL DESKTOP
   ========================================================================== */

@media (max-width: 1180px) {
  .page-revenue-cycle .wrap {
    padding-inline: var(--site-gutter-tablet);
  }

  .page-revenue-cycle .hero-foot {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .page-revenue-cycle .hero-action {
    justify-content: flex-start;
  }

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

  .page-revenue-cycle .channel:nth-child(4),
  .page-revenue-cycle .channel:nth-child(5) {
    grid-column: span 1;
  }

  .page-revenue-cycle .feed-line {
    display: none;
  }

  .page-revenue-cycle .feed-arrow {
    height: 74px;
  }
}

@media (max-width: 960px) {
  .page-revenue-cycle .channels-head,
  .page-revenue-cycle .journey-head,
  .page-revenue-cycle .accountability-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .page-revenue-cycle .channels-head .section-lead,
  .page-revenue-cycle .journey-head .section-lead,
  .page-revenue-cycle .accountability-head .section-lead {
    margin: 0;
    max-width: 720px;
  }

  .page-revenue-cycle .stage,
  .page-revenue-cycle .post-stage {
    padding-inline: 42px;
  }

  .page-revenue-cycle .stage-detail {
    display: none;
  }

  .page-revenue-cycle .return-grid {
    grid-template-columns: 1fr;
  }

  .page-revenue-cycle .return-card {
    min-height: 0;
  }

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


/* ==========================================================================
   10. RESPONSIVE — MOBILE
   ========================================================================== */

@media (max-width: 700px) {
  .page-revenue-cycle .wrap {
    padding-inline: var(--site-gutter-mobile);
  }

  .page-revenue-cycle .eyebrow {
    gap: 11px;
    font-size: 11px;
    letter-spacing: .16em;
  }

  .page-revenue-cycle .eyebrow::before {
    flex-basis: 28px;
    width: 28px;
  }

  .page-revenue-cycle .hero {
    min-height: 760px;
  }

  .page-revenue-cycle .hero-bg-image {
    background-position: 62% center;
  }

  .page-revenue-cycle .hero-inner {
    padding-top: 140px;
    padding-bottom: 58px;
  }

  .page-revenue-cycle .hero h1 {
    font-size: clamp(62px, 19vw, 90px);
  }

  .page-revenue-cycle .hero-foot {
    gap: 25px;
  }

  .page-revenue-cycle .hero-proof {
    display: grid;
    gap: 12px;
  }

  .page-revenue-cycle .cta-button {
    width: 100%;
    white-space: normal;
  }

  .page-revenue-cycle .system-intro,
  .page-revenue-cycle .channels,
  .page-revenue-cycle .return-system,
  .page-revenue-cycle .accountability {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .page-revenue-cycle .channels {
    padding-bottom: 0;
  }

  .page-revenue-cycle .system-intro h2,
  .page-revenue-cycle .channels h2,
  .page-revenue-cycle .journey-head h2,
  .page-revenue-cycle .return-title h2,
  .page-revenue-cycle .accountability h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .page-revenue-cycle .channel-grid {
    grid-template-columns: 1fr;
  }

  .page-revenue-cycle .channel {
    min-height: 0;
  }

  .page-revenue-cycle .feed-arrow {
    height: 60px;
  }

  .page-revenue-cycle .journey {
    padding: 28px 0 90px;
  }

  .page-revenue-cycle .journey-head {
    margin-bottom: 64px;
  }

  .page-revenue-cycle .journey-heading {
    margin-bottom: 20px;
    font-size: 27px;
  }

  .page-revenue-cycle .funnel,
  .page-revenue-cycle .post-funnel {
    gap: 6px;
  }

  .page-revenue-cycle .stage,
  .page-revenue-cycle .post-stage {
    width: 100%;
    min-height: 80px;
    padding: 15px 27px;
  }

  .page-revenue-cycle .stage {
    clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 14px 100%);
  }

  .page-revenue-cycle .post-stage {
    clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 100%, 0 100%);
  }

  .page-revenue-cycle .stage-main {
    gap: 14px;
  }

  .page-revenue-cycle .stage-marker {
    width: 8px;
    height: 8px;
  }

  .page-revenue-cycle .stage-label {
    font-size: 23px;
  }

  .page-revenue-cycle .sale-transition {
    min-height: 245px;
  }

  .page-revenue-cycle .sale-transition::before,
  .page-revenue-cycle .sale-transition::after {
    width: calc(50% - 78px);
  }

  .page-revenue-cycle .sale-orbit {
    width: 148px;
    height: 148px;
  }

  .page-revenue-cycle .sale-orbit strong {
    font-size: 31px;
  }

  .page-revenue-cycle .post-stage {
    gap: 15px;
  }

  .page-revenue-cycle .post-marker {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }

  .page-revenue-cycle .post-stage .stage-copy small {
    display: none;
  }

  .page-revenue-cycle .stage-panel {
    bottom: 10px;
    grid-template-columns: 1fr;
    gap: 7px;
    width: 100%;
    padding: 17px 18px;
  }

  .page-revenue-cycle .panel-hint {
    display: none;
  }

  .page-revenue-cycle .return-title {
    margin-bottom: 46px;
  }

  .page-revenue-cycle .return-card {
    padding: 32px 27px;
  }

  .page-revenue-cycle .metric-grid {
    grid-template-columns: 1fr;
  }

  .page-revenue-cycle .metric {
    min-height: 0;
  }

  .page-revenue-cycle .closing {
    padding: 112px 0;
  }

  .page-revenue-cycle .closing h2 {
    font-size: clamp(58px, 17vw, 82px);
  }
}

@media (max-width: 420px) {
  .page-revenue-cycle .hero {
    min-height: 725px;
  }

  .page-revenue-cycle .hero h1 {
    font-size: clamp(56px, 18vw, 76px);
  }

  .page-revenue-cycle .stage,
  .page-revenue-cycle .post-stage {
    padding-inline: 22px;
  }

  .page-revenue-cycle .stage-label {
    font-size: 21px;
  }

  .page-revenue-cycle .return-card h3 {
    font-size: 35px;
  }
}


/* ==========================================================================
   11. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .page-revenue-cycle .channel,
  .page-revenue-cycle .channel::before,
  .page-revenue-cycle .stage,
  .page-revenue-cycle .post-stage,
  .page-revenue-cycle .return-card,
  .page-revenue-cycle .metric,
  .page-revenue-cycle .cta-button {
    transition: none;
  }
}
