/* ==========================================================
   Resume Review (service landing)
   Reuses the shared brand palette and the .tcv-free-review-split
   form from main.css. Bespoke pieces below: hero, rubric grid,
   review-screenshot placeholder, myth-busting cards, related
   tools/guides grid.
   ========================================================== */

:root {
  --rr-primary: #2563eb;
  --rr-primary-light: #3B82F6;
  --rr-primary-deep: #1d4ed8;
  --rr-primary-50: #eff6ff;
  --rr-primary-100: #dbeafe;
  --rr-primary-200: #bfdbfe;
  --rr-primary-700: #1d4ed8;
  --rr-ink: #0f172a;
  --rr-ink-soft: #334155;
  --rr-mute: #64748b;
  --rr-mute-soft: #94a3b8;
  --rr-surface: #ffffff;
  --rr-surface-2: #f8fafc;
  --rr-surface-3: #f1f5f9;
  --rr-border: #e2e8f0;
  --rr-border-soft: #f1f5f9;
  --rr-radius: 12px;
  --rr-radius-lg: 16px;
  --rr-radius-xl: 24px;

  --rr-good-bg: #ecfdf5;
  --rr-good-fg: #047857;
  --rr-good-bd: #a7f3d0;
  --rr-warn-bg: #fffbeb;
  --rr-warn-fg: #92400e;
  --rr-warn-bd: #fde68a;
  --rr-bad-bg: #fef2f2;
  --rr-bad-fg: #b91c1c;
  --rr-bad-bd: #fecaca;

  --rr-elev-1: 0 1px 2px rgba(15, 23, 42, .04), 0 2px 6px rgba(15, 23, 42, .06);
  --rr-elev-2: 0 2px 4px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .08);
  --rr-elev-3: 0 4px 8px rgba(15, 23, 42, .04), 0 18px 40px rgba(15, 23, 42, .10);
}

body.rr-page {
  background:
    radial-gradient(1100px 600px at 50% 0%, rgba(37, 99, 235, .14), transparent 70%),
    radial-gradient(900px 500px at 100% 30%, rgba(16, 185, 129, .07), transparent 65%),
    linear-gradient(180deg, #f0f5ff 0%, #f4f7fc 360px, #f8fafc 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Blue CTA styling now lives in main.css (.tcv-free-review-split--box). */


/* ==========================================================
   §1 BREADCRUMB
   ========================================================== */
.rr-breadcrumb { position: relative; background: transparent; padding: 16px 1.25rem 0; }
.rr-breadcrumb__inner {
  max-width: 1180px; margin: 0 auto;
  font-size: 13px; color: var(--rr-mute);
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.rr-breadcrumb a { color: var(--rr-primary-700); font-weight: 600; }
.rr-breadcrumb a:hover { text-decoration: underline; }
.rr-crumb-current { color: var(--rr-ink-soft); font-weight: 600; }


/* ==========================================================
   §2 HERO
   ========================================================== */
.rr-hero {
  position: relative;
  overflow: hidden;
  padding: 20px 1.25rem 28px;
  isolation: isolate;
  background:
    radial-gradient(900px 380px at 70% -10%, rgba(37, 99, 235, .12), transparent 60%),
    radial-gradient(700px 320px at 0% 110%, rgba(16, 185, 129, .06), transparent 65%),
    linear-gradient(180deg, #f4f7ff 0%, #eef2ff 100%);
}
.rr-hero__decor { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.rr-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.rr-hero__blob--a {
  width: 460px; height: 460px;
  top: -180px; right: -120px;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  opacity: .18;
}
.rr-hero__blob--b {
  width: 320px; height: 320px;
  bottom: -140px; left: -100px;
  background: linear-gradient(135deg, #23ce6b, #00a6fb);
  opacity: .12;
}
.rr-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(37, 99, 235, .06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 99, 235, .06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  opacity: .8;
}

.rr-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

/* Two-column hero: text left, illustration right.
   Stacks below 880px (text on top, illustration below). */
.rr-hero__layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 880px) {
  .rr-hero__layout { grid-template-columns: 1fr; gap: 16px; text-align: center; }
}

.rr-hero__copy { text-align: left; }
@media (max-width: 880px) {
  .rr-hero__copy { text-align: center; }
}

.rr-hero__eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rr-primary-700);
  margin: 0 0 10px;
}

.rr-hero__title {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--rr-ink);
  margin: 0 0 16px;
  text-align: inherit;
  background: none;
  -webkit-text-fill-color: var(--rr-ink);
}
.rr-hero__title-grad {
  background: linear-gradient(90deg, #3B82F6 0%, #2563EB 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.rr-hero__sub {
  max-width: 580px;
  margin: 0 0 22px;
  color: var(--rr-ink-soft);
  font-size: 1.02rem;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .rr-hero__sub { margin-left: auto; margin-right: auto; }
}

.rr-hero__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  justify-content: flex-start;
  padding: 0;
  margin: 0 0 22px;
}
@media (max-width: 880px) {
  .rr-hero__features { justify-content: center; gap: 12px 18px; }
}
.rr-hero__features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rr-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  letter-spacing: -0.005em;
}
.rr-hero__features li::before {
  content: "";
  width: 18px; height: 18px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #10b981;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3.5 8.5l2.6 2.6 6.4-6.4'/></svg>");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.rr-hero__features svg {
  display: none;
}

.rr-jump { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.rr-jump a {
  font-size: 12.5px; font-weight: 600;
  color: var(--rr-mute);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 4px 8px;
  transition: color .15s ease;
}
.rr-jump a:hover {
  color: var(--rr-primary-700);
  background: transparent;
}


/* Hero visual column wraps the mockup illustration */
.rr-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}


/* ==========================================================
   §2b TRUST STRIP — stat row with vertical separators
   Stripe/Linear-style credibility banner. Big number + small
   uppercase label, thin dividers between items. No card frame.
   ========================================================== */
.rr-trust {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 1.25rem 16px;
}
.rr-trust__stat {
  flex: 1 1 0;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px 22px;
  border-right: 1px solid var(--rr-border);
}
.rr-trust__stat:last-child { border-right: 0; }

.rr-trust__num {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--rr-ink);
  line-height: 1.05;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.rr-trust__num--star  { color: #f59e0b; font-weight: 800; }

/* Google wordmark — per-letter brand colors (G-blue, o-red, o-yellow,
   g-blue, l-green, e-red), matching the --g-* tokens in main.css. */
.rr-trust__google { display: inline-flex; }
.rr-trust__google .g-b { color: #4285F4; }
.rr-trust__google .g-r { color: #DB4437; }
.rr-trust__google .g-y { color: #F4B400; }
.rr-trust__google .g-g { color: #0F9D58; }

.rr-trust__caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rr-mute);
  margin-top: 8px;
  line-height: 1.35;
}

/* Mobile: 2 rows, dividers only between items in same row */
@media (max-width: 760px) {
  .rr-trust { padding: 24px 1.25rem 8px; }
  .rr-trust__stat {
    flex: 0 0 calc(50% - 0.5px);
    border-right: 1px solid var(--rr-border);
    border-bottom: 1px solid var(--rr-border);
    padding: 14px 12px;
  }
  .rr-trust__stat:nth-child(2n) { border-right: 0; }
  .rr-trust__stat:nth-last-child(-n+1) { border-bottom: 0; flex: 1 1 100%; border-right: 0; }
  .rr-trust__stat:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
}


/* ==========================================================
   §3 MAIN
   ========================================================== */
.rr-main { max-width: 1180px; margin: 0 auto; padding: 12px 1.25rem 40px; }


/* ==========================================================
   §3b PAS INTRO (text left, CTA card right)
   No surface, no blue band — sits on the page gradient.
   The blue CTA block lives further down the page.
   ========================================================== */
.rr-pas {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 0 24px;
}
@media (max-width: 880px) {
  .rr-pas { grid-template-columns: 1fr; gap: 28px; padding-top: 24px; }
}

.rr-pas__copy {
  color: var(--rr-ink-soft);
}
.rr-pas__copy p {
  color: var(--rr-ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 14px;
}
.rr-pas__copy p:last-child { margin-bottom: 0; }
.rr-pas__copy strong { color: var(--rr-ink); }
.rr-pas__copy a {
  color: var(--rr-primary-700);
  font-weight: 600;
}
.rr-pas__copy a:hover { text-decoration: underline; }
.rr-pas__copy em { color: var(--rr-ink); font-style: normal; font-weight: 600; }

/* The .fr-card in .rr-pas needs a little visible elevation since
   it's no longer sitting on a deep blue background. */
.rr-pas .fr-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: var(--rr-elev-2);
  border: 1px solid var(--rr-border);
}


/* ==========================================================
   §4 CONTENT BLOCKS
   Transparent sections — cards sit directly on the page gradient
   so we don't get a box-on-box layout.
   ========================================================== */
.rr-content {
  padding: 56px 0 16px;
  scroll-margin-top: 96px;
}
.rr-content--alt { padding: 56px 0 16px; }

.rr-content__head { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.rr-content__head--sub { margin-top: 36px; }
.rr-content__eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--rr-primary-700); margin: 0 0 8px;
}
.rr-content__head h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--rr-ink);
  margin: 0 0 12px;
  line-height: 1.2;
  text-align: center;
}
.rr-content__head p {
  color: var(--rr-ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 660px;
}

.rr-content__body {
  max-width: 720px;
  margin: 0 auto;
  color: var(--rr-ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.rr-content__body p { margin: 0 0 14px; color: var(--rr-ink-soft); font-size: 1rem; line-height: 1.65; }
.rr-content__body p:last-child { margin-bottom: 0; }
.rr-content__body a { color: var(--rr-primary-700); font-weight: 600; }
.rr-content__body a:hover { text-decoration: underline; }
.rr-content__body strong { color: var(--rr-ink); }
.rr-content__body ul { margin: 0 0 14px; padding-left: 1.25rem; }
.rr-content__body li { margin-bottom: 6px; line-height: 1.55; }


/* ==========================================================
   §5 RUBRIC (the 4 things I review)
   ========================================================== */
.rr-rubric {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .rr-rubric { grid-template-columns: 1fr; }
}

.rr-rubric__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius-lg);
  padding: 24px 22px 20px;
  box-shadow: var(--rr-elev-1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.rr-rubric__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--rr-elev-2);
  border-color: var(--rr-primary-100);
}

/* Per-tone accent rail along the top of each card */
.rr-rubric__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rr-rubric-accent, var(--rr-primary));
  opacity: .9;
}

.rr-rubric__head {
  display: flex; align-items: center; gap: 12px;
}

/* Numbered tile — per-tone gradient background, white number */
.rr-rubric__num {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--rr-rubric-grad, linear-gradient(135deg, var(--rr-primary-light), var(--rr-primary-deep)));
  color: #fff;
  font-weight: 800; font-size: 17px;
  letter-spacing: -0.01em;
  box-shadow: 0 6px 14px var(--rr-rubric-shadow, rgba(37, 99, 235, .25));
}

.rr-rubric__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--rr-ink);
  line-height: 1.25;
  text-align: left;
  letter-spacing: -0.005em;
}

/* Per-tone "Scored on /10" pill */
.rr-rubric__score {
  margin-left: auto;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rr-rubric-fg, var(--rr-primary-700));
  background: var(--rr-rubric-bg, var(--rr-primary-50));
  border: 1px solid var(--rr-rubric-bd, var(--rr-primary-100));
  border-radius: 999px;
  padding: 4px 11px;
}

.rr-rubric__card p {
  color: var(--rr-ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.rr-rubric__card strong { color: var(--rr-ink); }

/* Tone variants */
.rr-rubric__card--blue {
  --rr-rubric-accent: linear-gradient(90deg, #3B82F6, #2563EB);
  --rr-rubric-grad: linear-gradient(135deg, #60a5fa, #2563eb);
  --rr-rubric-shadow: rgba(37, 99, 235, .25);
  --rr-rubric-fg: #1d4ed8;
  --rr-rubric-bg: #eff6ff;
  --rr-rubric-bd: #bfdbfe;
}
.rr-rubric__card--green {
  --rr-rubric-accent: linear-gradient(90deg, #10b981, #059669);
  --rr-rubric-grad: linear-gradient(135deg, #34d399, #059669);
  --rr-rubric-shadow: rgba(16, 185, 129, .28);
  --rr-rubric-fg: #047857;
  --rr-rubric-bg: #ecfdf5;
  --rr-rubric-bd: #a7f3d0;
}
.rr-rubric__card--amber {
  --rr-rubric-accent: linear-gradient(90deg, #f59e0b, #d97706);
  --rr-rubric-grad: linear-gradient(135deg, #fbbf24, #d97706);
  --rr-rubric-shadow: rgba(245, 158, 11, .28);
  --rr-rubric-fg: #92400e;
  --rr-rubric-bg: #fffbeb;
  --rr-rubric-bd: #fde68a;
}
.rr-rubric__card--violet {
  --rr-rubric-accent: linear-gradient(90deg, #8b5cf6, #7c3aed);
  --rr-rubric-grad: linear-gradient(135deg, #a78bfa, #7c3aed);
  --rr-rubric-shadow: rgba(139, 92, 246, .28);
  --rr-rubric-fg: #6d28d9;
  --rr-rubric-bg: #f5f3ff;
  --rr-rubric-bd: #ddd6fe;
}


/* ==========================================================
   §5b PRODUCT ILLUSTRATION (hero visual)
   Stylized Google Doc + comment bubbles + rubric chips.
   Pure CSS, no images. Apple/Google product-page language:
   one large clean composition that breathes.
   ========================================================== */
.rr-visual {
  padding: 28px 0 16px;
  display: flex;
  justify-content: center;
}
.rr-mockup {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  isolation: isolate;
  padding: 64px 24px 84px;
}
.rr-mockup::before,
.rr-mockup::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.rr-mockup::before {
  width: 420px; height: 420px;
  top: -40px; left: 10%;
  background: radial-gradient(circle, rgba(59,130,246,.32), transparent 70%);
}
.rr-mockup::after {
  width: 360px; height: 360px;
  bottom: -20px; right: 8%;
  background: radial-gradient(circle, rgba(35,206,107,.22), transparent 70%);
}

/* Stage layers the doc + floating comments */
.rr-mockup__stage {
  position: relative;
  display: flex;
  justify-content: center;
}

/* The "document" — stylized resume page */
.rr-doc {
  position: relative;
  width: min(100%, 520px);
  background: #fff;
  border-radius: 14px;
  padding: 28px 30px 30px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, .04),
    0 12px 28px rgba(15, 23, 42, .10),
    0 30px 60px rgba(15, 23, 42, .08);
  border: 1px solid #eef2f7;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rr-doc__head { display: flex; flex-direction: column; gap: 8px; align-items: center; padding-bottom: 4px; border-bottom: 1px dashed #eef2f7; }
.rr-doc__name {
  height: 14px; width: 50%;
  border-radius: 4px;
  background: linear-gradient(90deg, #1e293b 0%, #334155 100%);
}
.rr-doc__sub {
  height: 8px; width: 35%;
  border-radius: 3px;
  background: #cbd5e1;
}

.rr-doc__section { display: flex; flex-direction: column; gap: 6px; }
.rr-doc__h {
  height: 9px; width: 28%;
  border-radius: 3px;
  background: var(--rr-primary);
  margin-bottom: 4px;
}
.rr-doc__line {
  height: 7px;
  border-radius: 3px;
  background: #e5e7eb;
}
.rr-doc__line--w95 { width: 95%; }
.rr-doc__line--w85 { width: 85%; }
.rr-doc__line--w75 { width: 75%; }
.rr-doc__line--w60 { width: 60%; }
.rr-doc__line--w45 { width: 45%; }

/* Highlighted lines (where a comment is anchored) */
.rr-doc__line--mark-warn {
  background: #fde68a;
  position: relative;
}
.rr-doc__line--mark-good {
  background: #a7f3d0;
}

/* Comment bubbles — overlap the doc on either side */
.rr-comment {
  position: absolute;
  width: 240px;
  padding: 12px 14px 13px;
  background: #fff;
  border: 1px solid var(--rr-border);
  border-radius: 12px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, .04),
    0 10px 24px rgba(15, 23, 42, .12);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rr-comment::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px; height: 1.5px;
  background: linear-gradient(90deg, var(--rr-primary-200), transparent);
  transform: translateY(-50%);
}
.rr-comment--top {
  top: 24px;
  left: 8%;
  transform: rotate(-1.5deg);
}
.rr-comment--top::before {
  right: -22px;
  background: linear-gradient(90deg, transparent, var(--rr-primary-200));
}
.rr-comment--bot {
  bottom: 28px;
  right: 6%;
  transform: rotate(1.2deg);
}
.rr-comment--bot::before {
  left: -22px;
}

.rr-comment__head { display: flex; align-items: center; gap: 8px; }
.rr-comment__avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rr-primary), var(--rr-primary-deep));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.rr-comment__name { font-size: 12.5px; font-weight: 700; color: var(--rr-ink); }
.rr-comment__time { font-size: 11px; color: var(--rr-mute); margin-left: auto; }
.rr-comment__text {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--rr-ink-soft);
  margin: 0;
}
.rr-comment__text strong { color: var(--rr-ink); }

/* Score chips strip (top of mockup) */
.rr-mockup__chips {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 2;
}
.rr-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.005em;
  background: #fff;
  border: 1px solid var(--rr-border);
  box-shadow: 0 4px 10px rgba(15,23,42,.06);
  color: var(--rr-ink-soft);
}
.rr-chip__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.rr-chip--good .rr-chip__dot { background: #10b981; }
.rr-chip--warn .rr-chip__dot { background: #f59e0b; }

/* Caption under the mockup */
.rr-mockup__caption {
  position: absolute;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  font-size: 12.5px;
  color: var(--rr-mute);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.06);
  white-space: nowrap;
}

/* Hero variant — tighter, sized to fit the right column of a split hero. */
.rr-mockup--hero {
  max-width: 520px;
  padding: 84px 12px 64px;
}
.rr-mockup--hero::before {
  width: 280px; height: 280px;
  top: -10px; left: 5%;
}
.rr-mockup--hero::after {
  width: 240px; height: 240px;
  bottom: 0; right: 5%;
}
.rr-mockup--hero .rr-doc {
  width: min(100%, 320px);
  padding: 22px 24px 24px;
  gap: 14px;
}
.rr-mockup--hero .rr-doc__line { height: 6px; }
.rr-mockup--hero .rr-doc__h { height: 8px; }
.rr-mockup--hero .rr-comment {
  width: 200px;
  padding: 10px 12px 11px;
}
.rr-mockup--hero .rr-comment__text { font-size: 11.5px; }
.rr-mockup--hero .rr-comment--top { top: 36px; left: -8px; }
.rr-mockup--hero .rr-comment--bot { bottom: 18px; right: -8px; }
.rr-mockup--hero .rr-mockup__chips { top: 14px; gap: 6px; }
.rr-mockup--hero .rr-chip { padding: 4px 9px; font-size: 11px; }
.rr-mockup--hero .rr-mockup__caption {
  bottom: 14px;
  font-size: 11.5px;
  padding: 5px 10px;
}

/* Mobile — keep the same composition as desktop (chips floating on
   top, doc in the middle, comments overlapping the doc on either
   side). Just scaled down so it fits the narrow viewport. */
@media (max-width: 720px) {
  .rr-mockup--hero {
    padding: 76px 4px 64px;
    max-width: 100%;
  }
  .rr-mockup--hero::before {
    width: 220px; height: 220px; top: 0; left: 4%;
  }
  .rr-mockup--hero::after {
    width: 200px; height: 200px; bottom: 0; right: 4%;
  }

  .rr-mockup--hero .rr-mockup__chips {
    top: 14px;
    gap: 5px;
    flex-wrap: wrap;
    max-width: 92%;
  }
  .rr-mockup--hero .rr-chip {
    font-size: 10px;
    padding: 3px 8px;
    gap: 4px;
  }
  .rr-mockup--hero .rr-chip__dot {
    width: 6px; height: 6px;
  }

  .rr-mockup--hero .rr-doc {
    width: min(100%, 220px);
    padding: 16px 16px 18px;
    gap: 10px;
  }
  .rr-mockup--hero .rr-doc__line { height: 5px; }
  .rr-mockup--hero .rr-doc__h { height: 7px; }

  .rr-mockup--hero .rr-comment {
    /* Keep absolute positioning so they overlap the doc */
    width: 162px;
    padding: 8px 10px 9px;
  }
  .rr-mockup--hero .rr-comment__head { gap: 6px; }
  .rr-mockup--hero .rr-comment__avatar { width: 18px; height: 18px; font-size: 10px; }
  .rr-mockup--hero .rr-comment__name { font-size: 11.5px; }
  .rr-mockup--hero .rr-comment__time { font-size: 10px; }
  .rr-mockup--hero .rr-comment__text { font-size: 10.5px; line-height: 1.4; }
  .rr-mockup--hero .rr-comment::before { display: none; }
  .rr-mockup--hero .rr-comment--top { top: 56px; left: 0; }
  .rr-mockup--hero .rr-comment--bot { bottom: 28px; right: 0; }

  .rr-mockup--hero .rr-mockup__caption {
    font-size: 10.5px;
    padding: 4px 9px;
    bottom: 14px;
  }
}


/* ==========================================================
   §5c RESUME-SCREEN STORY (2-step flow)
   Two visual cards (Read 1 / Read 2) connected by an arrow on
   desktop, stacked on mobile. Replaces the prose body of the
   "How the resume screen actually works" section.
   ========================================================== */
.rr-screen-flow {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .rr-screen-flow { grid-template-columns: 1fr; gap: 16px; }
}

.rr-screen-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius-lg);
  padding: 22px 22px 20px;
  box-shadow: var(--rr-elev-1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.rr-screen-step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rr-step-accent, var(--rr-primary));
}

.rr-screen-step__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rr-screen-step__icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--rr-step-bg, var(--rr-primary-50));
  color: var(--rr-step-fg, var(--rr-primary-700));
  flex: 0 0 auto;
}
.rr-screen-step__icon svg { width: 22px; height: 22px; }
.rr-screen-step__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rr-step-fg, var(--rr-primary-700));
}
.rr-screen-step__time {
  margin-left: auto;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--rr-step-fg, var(--rr-primary-700));
  background: var(--rr-step-bg, var(--rr-primary-50));
  border: 1px solid var(--rr-step-bd, var(--rr-primary-100));
  border-radius: 999px;
  padding: 3px 10px;
}
.rr-screen-step__title {
  font-size: 1.1rem; font-weight: 800;
  color: var(--rr-ink);
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin: 0;
  text-align: left;
}
.rr-screen-step__verdict {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rr-step-fg, var(--rr-primary-700));
  margin: -6px 0 0;
}
.rr-screen-step__lede {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--rr-ink-soft);
  margin: 0;
}
.rr-screen-step__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 7px;
}
.rr-screen-step__list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.92rem;
  color: var(--rr-ink-soft);
  line-height: 1.45;
}
.rr-screen-step__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 16px; height: 16px;
  margin-top: 2px;
  background: var(--rr-step-bg, var(--rr-primary-50));
  border: 1px solid var(--rr-step-bd, var(--rr-primary-100));
  border-radius: 6px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231d4ed8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M3.5 8.5l2.6 2.6 6.4-6.4'/></svg>");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Connector arrow between the two steps (desktop only) */
.rr-screen-arrow {
  display: flex; align-items: center; justify-content: center;
}
.rr-screen-arrow svg { width: 36px; height: 36px; color: var(--rr-mute-soft); }
@media (max-width: 760px) {
  .rr-screen-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .rr-screen-arrow svg { width: 28px; height: 28px; }
}

/* Step tones */
.rr-screen-step--scan {
  --rr-step-accent: linear-gradient(90deg, #f59e0b, #d97706);
  --rr-step-fg: #92400e;
  --rr-step-bg: #fffbeb;
  --rr-step-bd: #fde68a;
}
.rr-screen-step--scan .rr-screen-step__list li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2392400e' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M3.5 8.5l2.6 2.6 6.4-6.4'/></svg>");
}
.rr-screen-step--deep {
  --rr-step-accent: linear-gradient(90deg, #10b981, #059669);
  --rr-step-fg: #047857;
  --rr-step-bg: #ecfdf5;
  --rr-step-bd: #a7f3d0;
}
.rr-screen-step--deep .rr-screen-step__list li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23047857' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M3.5 8.5l2.6 2.6 6.4-6.4'/></svg>");
}

/* The "punchline" line that ties the two steps together */
.rr-screen-summary {
  max-width: 760px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--rr-ink-soft);
}
.rr-screen-summary strong { color: var(--rr-ink); }


/* ==========================================================
   §5d PROCESS FLOW (3 steps: submit → deliver → answer)
   Same visual language as the resume-screen flow but 3 cards
   with arrows between. Used to lower submission friction.
   ========================================================== */
.rr-process {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  gap: 12px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .rr-process { grid-template-columns: 1fr; gap: 12px; }
}

.rr-process__step {
  position: relative;
  background: #fff;
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius-lg);
  padding: 20px 20px 18px;
  box-shadow: var(--rr-elev-1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.rr-process__step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rr-step-accent, var(--rr-primary));
}
.rr-process__head { display: flex; align-items: center; gap: 12px; }
.rr-process__num {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--rr-step-grad, linear-gradient(135deg, var(--rr-primary-light), var(--rr-primary-deep)));
  color: #fff;
  font-weight: 800; font-size: 13px;
  flex: 0 0 auto;
}
.rr-process__icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--rr-step-fg, var(--rr-primary-700));
  background: var(--rr-step-bg, var(--rr-primary-50));
  border-radius: 8px;
  flex: 0 0 auto;
}
.rr-process__icon svg { width: 18px; height: 18px; }
.rr-process__title {
  margin: 0;
  font-size: 1rem; font-weight: 800;
  color: var(--rr-ink);
  letter-spacing: -0.005em;
  line-height: 1.25;
  text-align: left;
}
.rr-process__step p {
  color: var(--rr-ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
.rr-process__arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--rr-mute-soft);
}
.rr-process__arrow svg { width: 24px; height: 24px; }
@media (max-width: 800px) {
  .rr-process__arrow { transform: rotate(90deg); margin: 0 auto; }
}

/* Tones for the 3 steps */
.rr-process__step--blue {
  --rr-step-accent: linear-gradient(90deg, #3B82F6, #2563EB);
  --rr-step-grad: linear-gradient(135deg, #60a5fa, #2563eb);
  --rr-step-fg: #1d4ed8;
  --rr-step-bg: #eff6ff;
}
.rr-process__step--green {
  --rr-step-accent: linear-gradient(90deg, #10b981, #059669);
  --rr-step-grad: linear-gradient(135deg, #34d399, #059669);
  --rr-step-fg: #047857;
  --rr-step-bg: #ecfdf5;
}
.rr-process__step--violet {
  --rr-step-accent: linear-gradient(90deg, #8b5cf6, #7c3aed);
  --rr-step-grad: linear-gradient(135deg, #a78bfa, #7c3aed);
  --rr-step-fg: #6d28d9;
  --rr-step-bg: #f5f3ff;
}


/* ==========================================================
   §5e CASES / TESTIMONIALS (3 cards)
   Mirrors the .tcv-case look from the home page but scoped here.
   Used as social proof right before the first blue CTA.
   ========================================================== */
.rr-cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 880px) { .rr-cases { grid-template-columns: 1fr; } }

.rr-case {
  background: #fff;
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius-lg);
  padding: 28px 26px 22px;
  box-shadow: var(--rr-elev-1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rr-case__stars {
  display: inline-flex;
  gap: 1px;
  color: #f59e0b;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.5px;
}

.rr-case__quote {
  margin: 0;
  font: 400 15px/1.65 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--rr-ink);
  flex: 1 1 auto;
}

.rr-case__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--rr-border-soft);
}
.rr-case__avatar {
  width: 36px; height: 36px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 12px;
  color: #fff;
  background: linear-gradient(135deg, #94a3b8, #64748b);
  flex: 0 0 auto;
}
.rr-case__attribution {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.rr-case__name {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--rr-ink);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.rr-case__meta {
  font-size: 12px;
  color: var(--rr-mute);
  font-weight: 500;
  line-height: 1.3;
}


/* ==========================================================
   §5f COMPARISON TABLE (review vs. checker vs. grader)
   CSS-grid table-feel with highlighted "Resume Review" column.
   Mobile: collapses into 3 stacked cards, one per option.
   ========================================================== */
.rr-compare {
  max-width: 1080px;
  margin: 0 auto;
}

/* Desktop grid layout */
.rr-compare__grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1fr 1fr;
  background: #fff;
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius-lg);
  overflow: hidden;
  box-shadow: var(--rr-elev-2);
}

/* Cells */
.rr-compare__cell {
  padding: 14px 18px;
  border-bottom: 1px solid var(--rr-border-soft);
  font-size: 0.94rem;
  color: var(--rr-ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
}
.rr-compare__cell:nth-last-child(-n+4) { border-bottom: 0; }

/* Row label cells (first column) */
.rr-compare__cell--label {
  font-weight: 700;
  color: var(--rr-ink);
  background: var(--rr-surface-2);
  border-right: 1px solid var(--rr-border-soft);
}

/* Header row cells — flex-column, all aligned to bottom for consistent rhythm.
   Badge sits inline at the top of the mine cell (no absolute positioning,
   so the grid's overflow:hidden doesn't clip it). */
.rr-compare__cell--head {
  background: var(--rr-surface-2);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--rr-ink);
  letter-spacing: -0.01em;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 4px;
  min-height: 96px;
  padding: 14px 18px 14px;
  border-bottom: 2px solid var(--rr-border);
}
.rr-compare__cell--head .rr-compare__sub {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--rr-mute);
  letter-spacing: 0;
}

/* Highlighted "Resume Review" column (header + body rows) */
.rr-compare__col--mine {
  background: linear-gradient(180deg, #eff6ff 0%, rgba(239, 246, 255, .35) 100%);
}
.rr-compare__cell--head.rr-compare__col--mine {
  background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 100%);
  color: var(--rr-primary-700);
  border-bottom-color: var(--rr-primary);
  border-bottom-width: 3px;
}
.rr-compare__cell.rr-compare__col--mine { background: rgba(239, 246, 255, .55); }
.rr-compare__cell.rr-compare__col--mine strong { color: var(--rr-primary-700); }

/* "Recommended" badge — sits inline at the top of the mine header */
.rr-compare__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, .3);
  white-space: nowrap;
  margin-bottom: 2px;
}

/* Verdict icons */
.rr-compare__icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.rr-compare__icon svg { width: 14px; height: 14px; }
.rr-compare__icon--yes { background: #ecfdf5; color: #047857; }
.rr-compare__icon--no  { background: #fef2f2; color: #b91c1c; }
.rr-compare__icon--mid { background: #fffbeb; color: #b45309; }

/* Mobile card layout — stack a card per column */
@media (max-width: 760px) {
  .rr-compare__grid {
    display: block;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }
  .rr-compare__cell { display: none; }
  .rr-compare__mobile {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .rr-compare__mcard {
    background: #fff;
    border: 1px solid var(--rr-border);
    border-radius: var(--rr-radius-lg);
    padding: 18px 20px;
    box-shadow: var(--rr-elev-1);
  }
  .rr-compare__mcard--mine {
    border-color: var(--rr-primary-200);
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
    position: relative;
  }
  .rr-compare__mcard--mine .rr-compare__badge { position: static; transform: none; display: inline-block; margin-bottom: 8px; }
  .rr-compare__mcard h4 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--rr-ink);
    text-align: left;
  }
  .rr-compare__mcard__sub { font-size: 12.5px; color: var(--rr-mute); margin: 0 0 12px; font-weight: 600; }
  .rr-compare__mcard__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
  .rr-compare__mcard__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--rr-ink-soft); line-height: 1.45; }
}
@media (min-width: 761px) {
  .rr-compare__mobile { display: none; }
}


/* ==========================================================
   §6 EXAMPLE SCREENSHOT (real image, full container width)
   ========================================================== */
.rr-screenshot {
  margin: 4px auto 0;
  max-width: 980px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, .05),
    0 8px 24px -4px rgba(15, 23, 42, .12),
    0 30px 60px -16px rgba(15, 23, 42, .18);
}
.rr-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}


/* ==========================================================
   §7 STORY / ABOUT (full-height portrait + copy)
   Photo column stretches to match the height of the text on
   the right; object-fit: cover keeps the face anchored at the
   top of the frame so it stays visible at any text length.
   ========================================================== */
.rr-about {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .rr-about { grid-template-columns: 1fr; gap: 20px; text-align: left; }
}

.rr-about__photo {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  min-height: 100%;
}
@media (max-width: 760px) {
  .rr-about__photo {
    aspect-ratio: 4 / 5;
    max-height: 320px;
    margin: 0 auto;
    max-width: 240px;
  }
}
.rr-about__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
@media (max-width: 760px) {
  .rr-about__photo img { position: static; }
}

.rr-about__body {
  color: var(--rr-ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.rr-about__body p { margin: 0 0 14px; color: var(--rr-ink-soft); font-size: 1rem; line-height: 1.65; }
.rr-about__body p:last-child { margin-bottom: 0; }
.rr-about__body strong { color: var(--rr-ink); }
.rr-about__body a { color: var(--rr-primary-700); font-weight: 600; }


/* ==========================================================
   §8 MYTH-BUSTING (resume screen)
   ========================================================== */
.rr-myths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.rr-myth {
  background: #fff;
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius-lg);
  padding: 18px 20px;
  box-shadow: var(--rr-elev-1);
}
.rr-myth__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.rr-myth__tag {
  font-size: 10.5px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rr-bad-fg);
  background: var(--rr-bad-bg);
  border: 1px solid var(--rr-bad-bd);
  border-radius: 999px;
  padding: 3px 10px;
}
.rr-myth h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rr-ink);
  letter-spacing: -0.005em;
  text-align: left;
  line-height: 1.3;
}
.rr-myth__lead {
  color: var(--rr-ink-soft);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0 0 6px;
}
.rr-myth__lead strong { color: var(--rr-ink); }
.rr-myth__check {
  color: var(--rr-ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 6px 0 0;
  background: var(--rr-surface-2);
  border-left: 3px solid var(--rr-primary);
  border-radius: 6px;
  padding: 8px 12px;
}
.rr-myth__check strong { color: var(--rr-ink); }


/* ==========================================================
   §9 RELATED grid (guides + tools)
   ========================================================== */
.rr-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 880px) { .rr-related { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .rr-related { grid-template-columns: 1fr; } }

.rr-related__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius-lg);
  text-decoration: none;
  color: var(--rr-ink);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  box-shadow: var(--rr-elev-1);
}
.rr-related__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--rr-elev-2);
  border-color: var(--rr-primary-200);
}
.rr-related__tag {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rr-primary-700);
}
.rr-related__card h3 {
  margin: 0;
  font-size: 1rem; font-weight: 800;
  color: var(--rr-ink);
  letter-spacing: -0.005em;
  text-align: left;
  line-height: 1.3;
}
.rr-related__card p {
  color: var(--rr-ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
.rr-related__cta {
  margin-top: auto;
  font-size: 0.9rem; font-weight: 700;
  color: var(--rr-primary-700);
}


/* FAQ uses the shared #faq.tcv-faq component from main.css. */


/* ==========================================================
   §11 INLINE NOTE BOX
   ========================================================== */
.rr-note {
  max-width: 760px;
  margin: 18px auto 0;
  background: var(--rr-primary-50);
  border: 1px solid var(--rr-primary-100);
  border-radius: var(--rr-radius);
  padding: 14px 18px;
  color: var(--rr-ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
.rr-note strong { color: var(--rr-ink); }
.rr-note a { color: var(--rr-primary-700); font-weight: 600; }


/* ==========================================================
   §12 DISCLAIMER
   ========================================================== */
.rr-disclaimer {
  max-width: 900px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--rr-mute);
  line-height: 1.5;
}
