/* ============================================================
   HotCopy RLM Demo — static port of landing/src/styles/tokens.css + live-port.css
   ============================================================ */

:root {
  /* Surface colors */
  --hc-bg:        #0a0a0a;
  --hc-bg-2:      #131210;
  --hc-bg-3:      #1e1c18;
  --hc-fg:        #e8e8e8;
  --hc-fg-dim:    #8a867a;
  --hc-fg-faint:  #454238;

  /* Accent + supporting tones */
  --hc-red:        #e05030;
  --hc-red-dark:   #8a2a1c;
  --hc-red-soft:   rgba(224, 80, 48, 0.08);
  --hc-sand:       #d4bf8a;
  --hc-green:      #7eff8a;

  /* Live-port aliases (mirror landing/live-port.css) */
  --rc-bg:    #0b0a08;
  --rc-bg2:   #131210;
  --rc-bg3:   #1e1c18;
  --rc-hot:   #e04530;
  --rc-hotDark: #8a2a1c;
  --rc-text:  #eeebe2;
  --rc-text2: #8a867a;
  --rc-text3: #454238;
  --rc-sand:  #d4bf8a;
  --rc-green: #7eff8a;

  /* Typography */
  --hc-mono:  'IBM Plex Mono', ui-monospace, "SF Mono", Menlo, monospace;
  --hc-sans:  'Space Grotesk', system-ui, sans-serif;
  --rc-mono:  var(--hc-mono);
  --rc-sans:  var(--hc-sans);

  /* Layout */
  --hc-maxw: 1760px;
  --rc-pad:  20px;
  --pad-x:   20px;
}

@media (min-width: 768px) {
  :root { --rc-pad: 32px; --pad-x: 32px; }
}
@media (min-width: 1024px) {
  :root { --rc-pad: 40px; --pad-x: 40px; }
}

/* ── Reset ─────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd { margin: 0; padding: 0; }
html { color-scheme: dark; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
img, svg, picture, video, canvas { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--rc-hot); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }
[hidden] { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
::selection { background: var(--rc-hot); color: var(--rc-bg); }
h1, h2, h3, h4, h5, h6 { font-family: inherit; font-weight: 700; line-height: 1.05; }
main { display: block; width: 100%; }

html, body {
  background: var(--rc-bg);
  color: var(--rc-text);
  font-family: var(--rc-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Page wrapper ──────────────────────────────────── */

.rc {
  width: 100%;
  max-width: var(--hc-maxw);
  margin: 0 auto;
  background: var(--rc-bg);
  color: var(--rc-text);
  position: relative;
}

.rc section { padding: 64px var(--rc-pad); }
@media (min-width: 768px) { .rc section { padding: 80px 32px; } }
@media (min-width: 1024px) { .rc section { padding: 100px 40px; } }

/* ── Header / nav ──────────────────────────────────── */

.rc-nav {
  padding: 14px var(--rc-pad);
  border-bottom: 1px solid var(--rc-bg3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--rc-mono);
  font-size: 12px;
  gap: 16px;
  flex-wrap: wrap;
}
.rc-logo { font-size: 14px; font-weight: 700; letter-spacing: 2px; color: var(--rc-text); }
.rc-logo .dot { color: var(--rc-hot); }
.rc-nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 10px;
  letter-spacing: 2px;
}
.rc-nav-links a {
  color: var(--rc-text2);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .15s;
}
.rc-nav-links a:hover { color: var(--rc-hot); }
.rc-nav-cta {
  background: var(--rc-hot);
  color: #fff;
  padding: 8px 14px;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 11px;
}
@media (min-width: 768px) {
  .rc-nav-cta { padding: 8px 18px; font-size: 12px; }
  .rc-logo { font-size: 15px; }
}

/* ── Stamps & tape ─────────────────────────────────── */

.rc-tape {
  display: inline-block;
  background: var(--rc-hot);
  color: var(--rc-bg);
  padding: 4px 14px;
  font-family: var(--rc-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  transform: rotate(-1deg);
}
.rc-stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--rc-hot);
  padding: 6px 14px;
  font-family: var(--rc-mono);
  font-size: 10px;
  color: var(--rc-hot);
  letter-spacing: 3px;
  font-weight: 700;
  transform: rotate(-1deg);
}
.rc-stamp .dot {
  width: 6px; height: 6px;
  background: var(--rc-hot);
  border-radius: 50%;
  display: inline-block;
}

/* ── Hero ──────────────────────────────────────────── */

.rc-hero {
  border-bottom: 4px solid var(--rc-hot);
  padding-top: 40px !important;
  padding-bottom: 56px !important;
}
.rc-hero-badges {
  display: flex; gap: 14px;
  margin-bottom: 28px;
  align-items: center; flex-wrap: wrap;
}
.rc-hero-meta {
  font-family: var(--rc-mono);
  font-size: 9px;
  color: var(--rc-text3);
  letter-spacing: 2px;
}
.rc-hero-superhead {
  font-family: var(--rc-mono);
  font-size: 11px;
  color: var(--rc-text2);
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-transform: uppercase;
  line-height: 1.4;
}
.rc-hero-h1 {
  font-family: var(--rc-mono);
  font-weight: 700;
  line-height: 0.9;
  font-size: clamp(42px, 13vw, 168px);
  letter-spacing: clamp(-2px, -0.6vw, -8px);
  margin: 0 0 28px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.rc-hero-h1 .hot { color: var(--rc-hot); }

.rc-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .rc-hero-grid { grid-template-columns: 1fr 560px; gap: 40px; }
}
@media (min-width: 1280px) {
  .rc-hero-grid { grid-template-columns: 1fr 620px; gap: 48px; }
}

.rc-hero-label {
  font-family: var(--rc-mono);
  font-size: 10px;
  color: var(--rc-hot);
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.rc-hero-lede {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--rc-text);
  line-height: 1.45;
  margin: 0 0 16px;
  max-width: 560px;
}
.rc-hero-sub {
  font-size: clamp(14px, 1.7vw, 15px);
  color: var(--rc-text2);
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}

.rc-hero-ctas {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.rc-cta-primary,
.rc-cta-secondary {
  font-family: var(--rc-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 14px 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .12s, background .12s, color .12s;
  display: inline-block;
}
.rc-cta-primary {
  background: var(--rc-hot);
  color: #fff;
  border: 1px solid var(--rc-hot);
}
.rc-cta-primary:hover { background: var(--rc-hotDark); border-color: var(--rc-hotDark); transform: translateY(-1px); }
.rc-cta-secondary {
  background: transparent;
  color: var(--rc-text);
  border: 1px solid var(--rc-text3);
}
.rc-cta-secondary:hover { border-color: var(--rc-hot); color: var(--rc-hot); }

/* ── Panels ────────────────────────────────────────── */

.rc-panel {
  background: var(--rc-bg2);
  border: 1px solid var(--rc-bg3);
  padding: 16px 20px;
}
.rc-mini-panel { margin-top: 28px; max-width: 560px; }

.rc-cap {
  font-family: var(--rc-mono);
  font-size: 9px;
  color: var(--rc-text3);
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.rc-cap .rec { color: var(--rc-green); }
.rc-cap .active { color: var(--rc-green); }

/* ── Terminal ──────────────────────────────────────── */

.rc-term-panel { padding: 22px; position: relative; min-height: 380px; }
.rc-term-panel::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rc-hot), transparent);
}
.rc-term-path {
  font-size: 10px;
  color: var(--rc-text2);
  margin-bottom: 14px;
  font-family: var(--rc-mono);
  letter-spacing: 1px;
}
.rc-term { font-family: var(--rc-mono); font-size: 11.5px; line-height: 1.65; }
@media (min-width: 480px) { .rc-term { font-size: 12.5px; } }
.rc-term .prompt { color: var(--rc-hot); }
.rc-term .cmd { color: var(--rc-green); }
.rc-term .flag { color: var(--rc-sand); }
.rc-term .out { color: var(--rc-text2); padding-left: 4px; font-size: 10.5px; }
@media (min-width: 480px) { .rc-term .out { font-size: 11.5px; } }
.rc-term .success { color: var(--rc-green); padding-left: 4px; font-size: 10.5px; }
@media (min-width: 480px) { .rc-term .success { font-size: 11.5px; } }
.rc-term .cursor {
  display: inline-block;
  width: 7px; height: 13px;
  background: var(--rc-hot);
  margin-left: 3px;
  vertical-align: text-bottom;
  animation: rcblink 1s step-end infinite;
}
@keyframes rcblink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* Terminal typewriter — sequential reveal */
@keyframes rc-term-line-in {
  0%   { opacity: 0; transform: translateX(-4px); }
  100% { opacity: 1; transform: translateX(0); }
}
.rc-term > div { opacity: 0; animation: rc-term-line-in 0.18s ease-out forwards; }
.rc-term > div:nth-child(1)  { animation-delay: 0.10s; }
.rc-term > div:nth-child(2)  { animation-delay: 0.50s; }
.rc-term > div:nth-child(3)  { animation-delay: 0.85s; }
.rc-term > div:nth-child(4)  { animation-delay: 1.10s; }
.rc-term > div:nth-child(5)  { animation-delay: 1.45s; }
.rc-term > div:nth-child(6)  { animation-delay: 1.75s; }
.rc-term > div:nth-child(7)  { animation-delay: 2.05s; }
.rc-term > div:nth-child(8)  { animation-delay: 2.35s; }
.rc-term > div:nth-child(9)  { animation-delay: 2.65s; }
.rc-term > div:nth-child(10) { animation-delay: 2.95s; }
.rc-term > div:nth-child(11) { animation-delay: 3.25s; }
.rc-term > div:nth-child(12) { animation-delay: 3.55s; }
.rc-term > div:nth-child(13) { animation-delay: 3.95s; }
.rc-term > div:nth-child(14) { animation-delay: 4.25s; }
.rc-term .cursor { opacity: 1; }

/* ── Lanes ─────────────────────────────────────────── */

.rc-lanes { font-family: var(--rc-mono); font-size: 11px; }
.rc-lane {
  display: grid;
  grid-template-columns: 44px 1fr 60px 36px;
  gap: 8px;
  align-items: center;
  padding: 5px 0;
}
@media (min-width: 480px) {
  .rc-lane { grid-template-columns: 50px 110px 1fr 40px; gap: 10px; }
}
.rc-lane .cs { font-weight: 600; }
.rc-lane .task {
  color: var(--rc-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rc-lane .task-bar {
  position: relative;
  height: 8px;
  background: var(--rc-bg3);
}
.rc-lane .task-bar .fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  transition: width 0.12s linear;
}
.rc-lane .pct { color: var(--rc-green); font-size: 10px; text-align: right; }
@media (max-width: 479px) {
  .rc-lane .task { display: none; }
  .rc-lane { grid-template-columns: 44px 1fr 36px; }
}

/* Animated lane fills */
@keyframes rc-lane-1 { 0% { width: 0%; }   50% { width: 96%; } 100% { width: 12%; } }
@keyframes rc-lane-2 { 0% { width: 22%; }  50% { width: 84%; } 100% { width: 22%; } }
@keyframes rc-lane-3 { 0% { width: 6%; }   50% { width: 78%; } 100% { width: 35%; } }
@keyframes rc-lane-4 { 0% { width: 35%; }  50% { width: 92%; } 100% { width: 35%; } }
@keyframes rc-lane-5 { 0% { width: 18%; }  50% { width: 70%; } 100% { width: 50%; } }
@keyframes rc-lane-6 { 0% { width: 8%; }   50% { width: 88%; } 100% { width: 28%; } }
.rc-lane:nth-child(1) .fill { animation: rc-lane-1 4.0s linear infinite; }
.rc-lane:nth-child(2) .fill { animation: rc-lane-2 3.6s linear infinite -0.6s; }
.rc-lane:nth-child(3) .fill { animation: rc-lane-3 3.2s linear infinite -1.2s; }
.rc-lane:nth-child(4) .fill { animation: rc-lane-4 4.4s linear infinite -1.8s; }
.rc-lane:nth-child(5) .fill { animation: rc-lane-5 3.8s linear infinite -2.4s; }
.rc-lane:nth-child(6) .fill { animation: rc-lane-6 4.2s linear infinite -3.0s; }

/* ── Metrics row ───────────────────────────────────── */

.rc-metrics {
  border-top: 1px solid var(--rc-bg3);
  border-bottom: 1px solid var(--rc-bg3);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .rc-metrics { grid-template-columns: repeat(4, 1fr); } }
.rc-metric {
  padding: 24px 20px;
  border-left: 1px solid var(--rc-bg3);
  border-top: 1px solid var(--rc-bg3);
}
.rc-metric:first-child { border-left: none; }
.rc-metric:nth-child(-n+2) { border-top: none; }
@media (min-width: 768px) {
  .rc-metric { padding: 28px; border-top: none; }
}
@media (min-width: 1024px) { .rc-metric { padding: 32px 28px; } }
.rc-metric .k {
  font-family: var(--rc-mono);
  font-size: 9px;
  color: var(--rc-hot);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.rc-metric .n {
  font-family: var(--rc-mono);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  color: var(--rc-hot);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.rc-metric .l {
  font-family: var(--rc-mono);
  font-size: 11px;
  color: var(--rc-text);
  letter-spacing: 2px;
  font-weight: 600;
}
.rc-metric .s {
  font-size: 11px;
  color: var(--rc-text3);
  margin-top: 6px;
  font-style: italic;
}

/* ── Section heads ─────────────────────────────────── */

.rc-sec-head {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.rc-sec-meta {
  font-family: var(--rc-mono);
  font-size: 10px;
  color: var(--rc-text3);
  letter-spacing: 2px;
}
.rc-h2 {
  font-family: var(--rc-mono);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -2px;
  margin: 24px 0 20px;
  font-size: clamp(36px, 7vw, 88px);
  overflow-wrap: break-word;
  word-break: break-word;
}
.rc-h2 .hot { color: var(--rc-hot); }
.rc-lead {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--rc-text2);
  max-width: 720px;
  line-height: 1.55;
  margin: 0 0 48px;
}
.rc-lead .sand { color: var(--rc-sand); }

/* ── How RLM works (4-step) ────────────────────────── */

.rc-how {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .rc-how { grid-template-columns: repeat(4, 1fr); }
}
.rc-how-card {
  padding: 36px 0;
  border-top: 1px solid var(--rc-bg3);
}
.rc-how-card:first-child { border-top: none; padding-top: 0; }
@media (min-width: 768px) {
  .rc-how-card {
    padding: 40px 22px 40px 0;
    border-top: none;
    border-right: 1px solid var(--rc-bg3);
  }
  .rc-how-card + .rc-how-card { padding-left: 22px; }
  .rc-how-card:last-child { border-right: none; padding-right: 0; }
}
.rc-how-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 18px; }
.rc-how-num {
  font-family: var(--rc-mono);
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 700;
  color: var(--rc-hot);
  line-height: 0.85;
  letter-spacing: -3px;
}
.rc-how-rule { flex: 1; height: 2px; background: var(--rc-hot); }
.rc-how-title {
  font-family: var(--rc-mono);
  font-size: 13px;
  color: var(--rc-text);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.rc-how-body {
  font-size: 14px;
  color: var(--rc-text2);
  line-height: 1.6;
}

/* ── Architecture (LOCAL | CORE | MANAGED) ─────────── */

.rc-arch-sec {
  background: var(--rc-bg2);
  border-top: 1px solid var(--rc-bg3);
  border-bottom: 1px solid var(--rc-bg3);
}
.rc-arch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  background: var(--rc-bg);
  border: 1px solid var(--rc-bg3);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) {
  .rc-arch { grid-template-columns: 220px 1fr 220px; gap: 32px; padding: 40px; }
}
.rc-arch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rc-bg3) 1px, transparent 1px),
    linear-gradient(90deg, var(--rc-bg3) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
  pointer-events: none;
}
.rc-arch-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.rc-arch-col-head {
  font-family: var(--rc-mono);
  font-size: 9px;
  color: var(--rc-text3);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.rc-arch-col.managed .rc-arch-col-head { color: var(--rc-hot); }
@media (min-width: 900px) {
  .rc-arch-col.managed .rc-arch-col-head { text-align: right; }
}
.rc-arch-box {
  padding: 10px 14px;
  border: 1px solid var(--rc-bg3);
  font-family: var(--rc-mono);
  font-size: 12px;
  background: var(--rc-bg2);
  color: var(--rc-text);
  transition: 0.2s;
}
.rc-arch-box.active {
  border-color: var(--rc-hot);
  color: var(--rc-hot);
  box-shadow: 0 0 20px rgba(224, 69, 48, .25);
}
.rc-arch-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}
.rc-arch-arrows {
  font-family: var(--rc-mono);
  font-size: 10px;
  color: var(--rc-text3);
  letter-spacing: 2px;
  display: flex;
  gap: 24px;
}
.rc-arch-core {
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 2px solid var(--rc-hot);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: radial-gradient(circle, rgba(224, 69, 48, .1), transparent);
  position: relative;
}
@media (min-width: 900px) { .rc-arch-core { width: 200px; height: 200px; } }
.rc-arch-core .name {
  font-family: var(--rc-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--rc-hot);
  letter-spacing: -.5px;
}
.rc-arch-core .sub {
  font-family: var(--rc-mono);
  font-size: 9px;
  color: var(--rc-text3);
  letter-spacing: 2px;
}
.rc-arch-pulse {
  position: absolute;
  border: 1px solid var(--rc-hot);
  border-radius: 50%;
  pointer-events: none;
}
.rc-arch-pulse.p1 { inset: -12px; }
.rc-arch-pulse.p2 { inset: -28px; }

@keyframes rc-arch-pulse-1 {
  0%, 100% { opacity: .05; transform: scale(1); }
  50%      { opacity: .60; transform: scale(1.04); }
}
@keyframes rc-arch-pulse-2 {
  0%, 100% { opacity: .04; transform: scale(1); }
  50%      { opacity: .42; transform: scale(1.07); }
}
.rc-arch-pulse.p1 { animation: rc-arch-pulse-1 2.8s ease-in-out infinite; }
.rc-arch-pulse.p2 { animation: rc-arch-pulse-2 3.4s ease-in-out infinite -1.2s; }

@keyframes rc-arch-active-cycle {
  0%, 24%   { border-color: var(--rc-bg3); color: var(--rc-text); box-shadow: none; }
  25%, 49%  { border-color: var(--rc-hot); color: var(--rc-hot); box-shadow: 0 0 20px rgba(224,69,48,.25); }
  50%, 100% { border-color: var(--rc-bg3); color: var(--rc-text); box-shadow: none; }
}
.rc-arch-col.managed .rc-arch-box:nth-child(2) { animation: rc-arch-active-cycle 4s linear infinite 0s; }
.rc-arch-col.managed .rc-arch-box:nth-child(3) { animation: rc-arch-active-cycle 4s linear infinite -1s; }
.rc-arch-col.managed .rc-arch-box:nth-child(4) { animation: rc-arch-active-cycle 4s linear infinite -2s; }
.rc-arch-col.managed .rc-arch-box:nth-child(5) { animation: rc-arch-active-cycle 4s linear infinite -3s; }

/* ── Benchmarks card ───────────────────────────────── */

.rc-bench-sec {
  background: var(--rc-bg);
}
.rc-bench-card {
  border: 1px solid var(--rc-bg3);
  background: var(--rc-bg2);
  padding: 32px 24px;
  position: relative;
  overflow-x: auto;
}
@media (min-width: 768px) {
  .rc-bench-card { padding: 44px 36px; }
}
.rc-bench-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rc-hot);
}
.rc-bench {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--rc-mono);
  font-size: 13px;
  min-width: 600px;
}
.rc-bench thead tr { background: var(--rc-bg); }
.rc-bench th {
  padding: 14px 18px;
  text-align: left;
  color: var(--rc-sand);
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 700;
  border-bottom: 2px solid var(--rc-hot);
}
.rc-bench th.hotcol { color: var(--rc-hot); }
.rc-bench td {
  padding: 16px 18px;
  color: var(--rc-text);
  border-bottom: 1px solid var(--rc-bg3);
}
.rc-bench td:first-child { color: var(--rc-text); font-weight: 600; }
.rc-bench td.hc {
  color: var(--rc-hot);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.5px;
}
.rc-bench td.dim {
  color: var(--rc-text3);
  text-decoration: line-through;
  text-decoration-color: var(--rc-hotDark);
}
.rc-bench tr:last-child td { border-bottom: none; }
.rc-bench-attr {
  margin-top: 18px;
  font-family: var(--rc-mono);
  font-size: 10px;
  color: var(--rc-text3);
  letter-spacing: 2px;
}
.rc-bench-attr a { color: var(--rc-sand); text-decoration: underline; text-underline-offset: 3px; }
.rc-bench-attr a:hover { color: var(--rc-hot); }

/* ── Swarm topology ────────────────────────────────── */

.rc-swarm-sec {
  background: var(--rc-bg2);
  border-top: 1px solid var(--rc-bg3);
  border-bottom: 1px solid var(--rc-bg3);
}
.rc-swarm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .rc-swarm-grid { grid-template-columns: 1fr 1.6fr; gap: 48px; }
}
.rc-swarm-panel {
  border: 1px solid var(--rc-bg3);
  padding: 20px;
  background: var(--rc-bg);
}

/* SVG flicker (60 scout dots) */
@keyframes rc-swarm-flicker {
  0%, 65%, 100% { fill: #d4bf8a; r: 3.4; opacity: .42; }
  72%, 84%      { fill: #e04530; r: 5.2; opacity: .95; }
}
@keyframes rc-swarm-line-flicker {
  0%, 65%, 100% { stroke: #1e1c18; opacity: .08; }
  72%, 84%      { stroke: #e04530; opacity: .55; }
}
.rc-swarm-panel svg > g:nth-of-type(n+2) circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: rc-swarm-flicker 6s ease-in-out infinite;
}
.rc-swarm-panel svg > g:nth-of-type(n+2) line {
  animation: rc-swarm-line-flicker 6s ease-in-out infinite;
}
.rc-swarm-panel svg > g:nth-of-type(2n) circle      { animation-duration: 7.5s; }
.rc-swarm-panel svg > g:nth-of-type(2n) line        { animation-duration: 7.5s; }
.rc-swarm-panel svg > g:nth-of-type(3n+1) circle    { animation-duration: 5.5s; }
.rc-swarm-panel svg > g:nth-of-type(3n+1) line      { animation-duration: 5.5s; }
.rc-swarm-panel svg > g:nth-of-type(5n+2) circle    { animation-duration: 8.5s; }
.rc-swarm-panel svg > g:nth-of-type(5n+2) line      { animation-duration: 8.5s; }
.rc-swarm-panel svg > g:nth-of-type(7n+4) circle    { animation-duration: 9.5s; }
.rc-swarm-panel svg > g:nth-of-type(7n+4) line      { animation-duration: 9.5s; }
.rc-swarm-panel svg > g:nth-of-type(11n+1) circle    { animation-delay: -0.7s; }
.rc-swarm-panel svg > g:nth-of-type(11n+1) line      { animation-delay: -0.7s; }
.rc-swarm-panel svg > g:nth-of-type(11n+2) circle    { animation-delay: -1.4s; }
.rc-swarm-panel svg > g:nth-of-type(11n+2) line      { animation-delay: -1.4s; }
.rc-swarm-panel svg > g:nth-of-type(11n+3) circle    { animation-delay: -2.1s; }
.rc-swarm-panel svg > g:nth-of-type(11n+3) line      { animation-delay: -2.1s; }
.rc-swarm-panel svg > g:nth-of-type(11n+4) circle    { animation-delay: -2.8s; }
.rc-swarm-panel svg > g:nth-of-type(11n+4) line      { animation-delay: -2.8s; }
.rc-swarm-panel svg > g:nth-of-type(11n+5) circle    { animation-delay: -3.5s; }
.rc-swarm-panel svg > g:nth-of-type(11n+5) line      { animation-delay: -3.5s; }
.rc-swarm-panel svg > g:nth-of-type(11n+6) circle    { animation-delay: -4.2s; }
.rc-swarm-panel svg > g:nth-of-type(11n+6) line      { animation-delay: -4.2s; }
.rc-swarm-panel svg > g:nth-of-type(11n+7) circle    { animation-delay: -4.9s; }
.rc-swarm-panel svg > g:nth-of-type(11n+7) line      { animation-delay: -4.9s; }
.rc-swarm-panel svg > g:nth-of-type(11n+8) circle    { animation-delay: -5.6s; }
.rc-swarm-panel svg > g:nth-of-type(11n+8) line      { animation-delay: -5.6s; }
.rc-swarm-panel svg > g:nth-of-type(11n+9) circle    { animation-delay: -6.3s; }
.rc-swarm-panel svg > g:nth-of-type(11n+9) line      { animation-delay: -6.3s; }
.rc-swarm-panel svg > g:nth-of-type(11n+10) circle   { animation-delay: -7.0s; }
.rc-swarm-panel svg > g:nth-of-type(11n+10) line     { animation-delay: -7.0s; }

/* ── CTA strip ─────────────────────────────────────── */

.rc-final {
  text-align: center;
  background: var(--rc-bg2);
  border-top: 4px solid var(--rc-hot);
  padding: 96px 24px !important;
}
@media (min-width: 768px) { .rc-final { padding: 128px 40px !important; } }
@media (min-width: 1024px) { .rc-final { padding: 160px 40px !important; } }
.rc-final-h2 {
  font-family: var(--rc-mono);
  font-weight: 700;
  letter-spacing: clamp(-2px, -0.5vw, -6px);
  line-height: 0.9;
  margin: 24px 0 20px;
  font-size: clamp(52px, 11vw, 128px);
}
.rc-final-h2 .hot { color: var(--rc-hot); }
.rc-final p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--rc-text2);
  margin: 0 0 32px;
}
.rc-final .note {
  font-family: var(--rc-mono);
  font-size: 10px;
  color: var(--rc-text3);
  margin-top: 18px;
  letter-spacing: 3px;
}
.rc-final-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────────────── */

.rc-foot {
  padding: 32px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  border-top: 1px solid var(--rc-bg3);
  font-family: var(--rc-mono);
  font-size: 11px;
  color: var(--rc-text3);
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .rc-foot { grid-template-columns: repeat(3, 1fr); padding: 44px 40px; }
}
.rc-foot-col h4 {
  font-size: 9px;
  color: var(--rc-text3);
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-weight: 700;
}
.rc-foot-col ul { list-style: none; padding: 0; margin: 0; }
.rc-foot-col li { padding: 4px 0; }
.rc-foot-col a {
  color: var(--rc-text2);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  transition: color .15s;
}
.rc-foot-col a:hover { color: var(--rc-hot); }
.rc-foot-brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--rc-text);
  margin-bottom: 10px;
}
.rc-foot-brand .hot { color: var(--rc-hot); }
.rc-foot-disc {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--rc-text3);
  opacity: .8;
  line-height: 1.5;
}

/* ── Reduced motion ────────────────────────────────── */

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