/* RCA / guide extras ported from beta — do not replace live mobile CSS */
.hero__lead--tight {
  margin-top: -1.15rem;
  margin-bottom: 1.75rem;
}

.loader-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0;
}
.n-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.n-icon--process { margin-bottom: 0.7rem; }
.pillar .n-icon { margin-bottom: 0.65rem; }
.adjacent__item .n-icon { margin-bottom: 0.45rem; }

.loader-blocks {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 22px;
  margin-top: 0.15rem;
}
.loader-blocks span {
  display: block;
  width: 8px;
  background: var(--accent);
  animation: loader-stack 1.15s var(--ease) infinite;
}
.loader-blocks span:nth-child(1) { height: 8px; animation-delay: 0s; }
.loader-blocks span:nth-child(2) { height: 12px; animation-delay: 0.08s; }
.loader-blocks span:nth-child(3) { height: 18px; animation-delay: 0.16s; }
.loader-blocks span:nth-child(4) { height: 13px; animation-delay: 0.24s; }
.loader-blocks span:nth-child(5) { height: 9px; animation-delay: 0.32s; }
@keyframes loader-stack {
  0%, 100% { transform: scaleY(0.45); opacity: 0.4; transform-origin: bottom; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
}

.build {
  position: absolute;
  z-index: 2;
  right: 1.15rem;
  bottom: 5.75rem;
  pointer-events: none;
}
@media (min-width: 640px) {
  .build { right: 2rem; bottom: 5.25rem; }
}
@media (min-width: 900px) {
  .build {
    right: clamp(1.5rem, 5vw, 4.5rem);
    bottom: 4.25rem;
  }
}
.build__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  margin-bottom: 0.65rem;
}
.build__kicker {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 235, 0.88);
}
.build__caption {
  font-size: 0.7rem;
  color: rgba(244, 241, 235, 0.62);
  letter-spacing: 0.02em;
}
.build__grid {
  display: grid;
  grid-template-columns: repeat(10, 11px);
  grid-auto-rows: 11px;
  gap: 3px;
  justify-content: end;
}
.build__brick {
  background: rgba(244, 241, 235, 0.88);
  border-radius: 1px;
  transform-origin: bottom center;
  box-shadow: 0 1px 0 rgba(26, 29, 33, 0.08);
}
.build__brick.is-accent { background: var(--accent); }
.build__brick.is-soft { background: rgba(244, 241, 235, 0.42); }
.build__brick.is-copper { background: var(--copper); }
@media (max-width: 639px) {
  .build { display: none; }
}

.marquee {
  overflow: hidden;
  background: var(--accent);
  color: #f4f1eb;
  border-block: 1px solid rgba(255,255,255,0.08);
  padding: 0.85rem 0;
}
.marquee__track {
  display: flex;
  gap: 2.75rem;
  width: max-content;
  will-change: transform;
}
.marquee__track span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.92;
}

.rca { background: var(--bg); }
.rca__intro {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.rca-hero {
  display: grid;
  gap: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 900px) {
  .rca-hero {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 520px;
  }
}
.rca-hero__copy {
  padding: 2rem 1.6rem 1.85rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) {
  .rca-hero__copy { padding: 2.5rem 2.35rem 2.25rem; }
}
.rca-hero__badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 0.32rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 1.15rem;
}
.rca-hero__copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.rca-hero__copy > p {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 36rem;
}
.rca-hero__points {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.75rem;
}
.rca-hero__points li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.rca-hero__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 7px; height: 1px;
  background: var(--accent);
}
.rca-hero__copy .btn { align-self: flex-start; margin-top: auto; }
.rca-hero__visual {
  position: relative;
  min-height: 280px;
}
.rca-hero__photo {
  margin: 0;
  height: 100%;
  overflow: hidden;
}
.rca-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
.rca-hero__float {
  position: absolute;
  left: 1.15rem;
  bottom: 1.15rem;
  background: rgba(246, 243, 237, 0.94);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.rca-hero__float span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.25rem;
}
.rca-hero__float strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.rca-pillars {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}
@media (min-width: 720px) {
  .rca-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .rca-pillars { grid-template-columns: repeat(4, 1fr); }
}
.pillar {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.2rem 1.3rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 79, 140, 0.28);
}
.pillar__index {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  margin-bottom: 0.65rem;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}
.pillar p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
}

.why-points,
.how-points {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .why-points { grid-template-columns: repeat(2, 1fr); }
  .how-points { grid-template-columns: repeat(3, 1fr); }
}
.why-point,
.how-point {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.why-point h3,
.how-point h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  margin: 0.55rem 0 0.4rem;
}
.why-point p,
.how-point p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
}
.how-point__num {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--text-faint);
}
.section-link {
  margin-top: 1.75rem;
}
.section-link a {
  color: var(--accent);
  font-weight: 500;
  font-size: 1.02rem;
}
.section-link a:hover { color: var(--accent-soft); }

.cycle { background: var(--bg-soft); border-block: 1px solid var(--line); }
.cycle__grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 800px) {
  .cycle__grid { grid-template-columns: 1fr 1fr; }
}
.cycle-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.cycle-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 79, 140, 0.28);
}
.cycle-card--primary {
  background:
    linear-gradient(165deg, var(--accent-muted), transparent 55%),
    var(--bg-elevated);
}
.cycle-card--alert {
  border-color: rgba(176, 137, 104, 0.35);
}
.cycle-card__kicker {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0.7rem 0 0.4rem;
}
.cycle-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}
.cycle-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
}
.cycle-card p strong { color: var(--ink); font-weight: 600; }

.guide-page {
  padding: calc(var(--nav-h) + 2.5rem) 0 var(--section-y);
  font-family: "Outfit", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
.guide-wrap { max-width: 46rem; }
.guide-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
}
.guide-page h1 {
  font-family: "Outfit", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 4.4vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.guide-lede {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2.25rem;
}
.guide-page h2 {
  font-family: "Outfit", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 2.35rem 0 0.75rem;
}
.guide-page p,
.guide-page li {
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 0.85rem;
}
.guide-page ul { padding-left: 1.2rem; margin-bottom: 1rem; list-style: disc; }
.guide-note {
  font-size: 0.95rem;
  padding: 1rem 1.15rem;
  background: var(--accent-muted);
  border-left: 3px solid var(--accent);
  margin: 1.15rem 0 1.5rem;
}
.avg-calc {
  --avg-font: "Outfit", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-family: var(--avg-font);
  margin: 1.35rem 0 1.75rem;
  padding: 1.4rem 1.2rem 1.25rem;
  background:
    linear-gradient(165deg, var(--accent-muted), transparent 42%),
    var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) {
  .avg-calc { padding: 1.75rem 1.6rem 1.45rem; }
}
.avg-calc__kicker {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.avg-calc__head h3 {
  font-family: var(--avg-font);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.avg-calc__head p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1rem;
}
.avg-calc__presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
}
.avg-calc__chip {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.avg-calc__chip:hover { border-color: var(--accent); color: var(--accent); }
.avg-calc__chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #f7f4ee;
}
.avg-field { display: block; margin-bottom: 1.15rem; }
.avg-field__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 0.45rem;
}
.avg-field__pair {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.avg-field__pair strong {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.avg-field__money {
  width: 8.4rem;
  text-align: right;
  font-family: var(--avg-font);
  font-weight: 600;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
}
.avg-field__money:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}
.avg-calc input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: var(--surface);
  outline: none;
}
.avg-calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(26, 79, 140, 0.35);
  cursor: pointer;
}
.avg-calc input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(26, 79, 140, 0.35);
  cursor: pointer;
}
.avg-track {
  display: block;
  height: 4px;
  margin-top: 0.45rem;
  border-radius: 99px;
  background: var(--surface-2);
  overflow: hidden;
}
.avg-track__fill {
  display: block;
  height: 100%;
  width: 60%;
  background: var(--accent);
  transition: width 0.2s var(--ease);
}
.avg-split {
  display: flex;
  height: 14px;
  border-radius: 99px;
  overflow: hidden;
  background: var(--surface);
}
.avg-split__paid {
  background: var(--accent);
  width: 60%;
  transition: width 0.25s var(--ease);
}
.avg-split__gap {
  background: var(--copper);
  width: 40%;
  transition: width 0.25s var(--ease);
}
.avg-split__legend {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
}
.avg-calc__results {
  display: grid;
  gap: 0.75rem;
  margin: 1.15rem 0 0.85rem;
}
@media (min-width: 560px) {
  .avg-calc__results { grid-template-columns: 1fr 1fr; }
}
.avg-stat {
  padding: 1rem 1.05rem 0.95rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
}
.avg-stat span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.25rem;
}
.avg-stat strong {
  font-family: var(--avg-font);
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.avg-stat--pay strong { color: var(--accent); }
.avg-stat--find strong { color: #8a5a38; }
.avg-calc__disclaimer {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--copper);
  padding: 0.85rem 1rem;
  margin: 0 0 1.15rem;
}
.avg-calc__formula {
  font-family: var(--avg-font);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  color: var(--ink);
  background: var(--bg-soft);
  padding: 0.7rem 0.85rem;
  margin: 0.9rem 0 0.65rem;
  border-radius: var(--radius);
}
.avg-calc__story {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
}
.avg-calc__fine {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin: 0.35rem 0 0;
}
.guide-legal {
  font-size: 0.85rem;
  color: var(--text-faint);
  line-height: 1.6;
  margin: 2rem 0 0;
}
.guide-cta {
  margin-top: 2.75rem;
  padding: 1.75rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.guide-cta h2 { margin-top: 0; }
.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0 0 2rem;
  font-size: 0.88rem;
}
.page-nav a { color: var(--accent); }
.page-nav a:hover { color: var(--accent-soft); }

.adjacent { padding-block: 0 0; }
.adjacent__bar {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem 1.4rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: var(--section-y);
}
@media (min-width: 800px) {
  .adjacent__bar {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 1.85rem 2rem;
  }
}
.adjacent__kicker {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.4rem;
}
.adjacent__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.adjacent__lead {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 32rem;
}
.adjacent__items {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 520px) {
  .adjacent__items { grid-template-columns: 1fr 1fr; }
}
.adjacent__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.adjacent__item:hover {
  border-color: var(--accent);
  background: var(--accent-muted);
  transform: translateY(-2px);
}
.adjacent__item span {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.adjacent__item em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-faint);
}

.js-clip { overflow: hidden; }
.js-clip img { transform-origin: center; will-change: transform; }
.hero__photo { will-change: transform; }
.section__title { will-change: clip-path, transform; }

@media (max-width: 767px) {
  .rca-hero__visual { min-height: 240px; }
  .rca-pillars { gap: 0.75rem; }
  .why-points,
  .how-points { grid-template-columns: 1fr !important; }
  .avg-calc { padding: 1.15rem 1rem 1.1rem; }
  .avg-field__money { width: 7.4rem; font-size: 0.9rem; }
  .hero__lead--tight { margin-top: -0.55rem; }
  .build { display: none !important; }
  .guide-page { padding-top: calc(var(--nav-h) + 1.5rem); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { transform: none !important; }
  .loader-blocks span { animation: none !important; opacity: 1; transform: none; }
}
