/* =========================================================
   RefCase â€” styles.css
   GitHub Pages ready Â· no build tools required
   ========================================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  -webkit-font-smoothing: antialiased;
  font-family: 'Karla', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-body);
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: inherit; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* --- Design Tokens --- */
:root {
  --navy:        #0a1628;
  --navy-mid:    #142240;
  --navy-light:  #1e3a5f;
  --amber:       #e8a020;
  --amber-light: #f5c55a;
  --teal:        #c877e1;
  --cream:       #faf7f2;
  --cream-dark:  #f0ebe1;
  --slate:       #647491;
  --slate-light: #9aaabb;
  --white:       #ffffff;
  --text-dark:   #0a1628;
  --text-body:   #334155;
}

/* --- Animations --- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* =========================================================
   NAV
   ========================================================= */
.rc-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,22,40,0.08);
  padding:  16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.rc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.rc-logo-img {
  height: 32px; /* adjust as needed */
  width: auto;
  display: block;
}
.rc-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.rc-nav-links a {
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.rc-nav-links a:hover { color: var(--navy); }
.rc-nav-cta {
  background: var(--navy) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s !important;
}
.rc-nav-cta:hover {
  background: var(--navy-light) !important;
  transform: translateY(-1px);
}

/* =========================================================
   HERO
   ========================================================= */
.rc-hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  align-items: center;
}
.rc-hero-left {
  padding: 5rem 3rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.rc-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.3);
  color: #a06b00;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  width: fit-content;
  animation: fadeSlideUp 0.6s ease both;
}
.rc-hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.rc-hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.6s 0.1s ease both;
}
.rc-hero-h1 em { font-style: italic; color: var(--teal); }
.rc-hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--slate);
  max-width: 460px;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.6s 0.2s ease both;
}
.rc-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.6s 0.3s ease both;
}
.rc-btn-primary {
  background: var(--navy);
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Karla', sans-serif;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
}
.rc-btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.2);
}
.rc-btn-secondary {
  background: transparent;
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Karla', sans-serif;
  border: 1.5px solid rgba(10,22,40,0.2);
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.rc-btn-secondary:hover {
  border-color: var(--navy);
  background: rgba(10,22,40,0.04);
}
.rc-hero-social-proof {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeSlideUp 0.6s 0.4s ease both;
}
.rc-avatars { display: flex; }
.rc-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -8px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.rc-avatars .rc-avatar:first-child { margin-left: 0; }
.rc-social-text { font-size: 0.82rem; color: var(--slate); line-height: 1.4; }
.rc-social-text strong { color: var(--navy); font-weight: 600; }

/* Hero Right */
.rc-hero-right {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  align-self: stretch;        /* ← fills the full grid row */
  min-height: 90vh;           /* ← fallback to match hero height */
  background: radial-gradient(
      circle at 70% 30%,
      rgba(168, 85, 247, 0.25),
      transparent 40%
    ),
    linear-gradient(
      135deg,
      #0b1a3a 0%,
      #1b2a6b 50%,
      #3b1d5a 100%
    );
}
.rc-demo {
  width: 100%;
  max-width: 460px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1.25rem;
  position: relative;
  z-index: 2;
}
.rc-hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.rc-hero-bg-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.25) 0%, transparent 70%);
  top: -120px;
  right: -120px;
  pointer-events: none;
}
.rc-hero-bg-glow2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}

/* Dashboard Mockup */
.rc-mock-wrap {
  background: linear-gradient(135deg, #0b1a3a 0%, #1b2a6b 50%, #3b1d5a 100%);
  border-radius: 20px;
  padding: 3px;
  max-width: 440px;
  margin: 0 auto;
}
.rc-mock {
  background: #f8f7ff;
  border-radius: 18px;
  overflow: hidden;
  font-family: 'Karla', sans-serif;
}
.rc-mock-nav {
  background: white;
  border-bottom: 0.5px solid #e8e6f0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rc-mock-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #1a1040;
}
.rc-mock-brand-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rc-mock-nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
}
.rc-mock-nav-links span { font-size: 11px; color: #888; }
.rc-mock-nav-links span.active { color: #7c3aed; font-weight: 500; }
.rc-mock-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rc-mock-search-row { display: flex; gap: 6px; }
.rc-mock-input {
  flex: 1;
  border: 1px solid #e0ddf0;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 12px;
  color: #aaa;
  background: white;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rc-mock-magic {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: white;
  border-radius: 8px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.rc-mock-clear {
  border: 1px solid #e0ddf0;
  border-radius: 8px;
  padding: 7px 9px;
  font-size: 11px;
  color: #888;
  background: white;
}
.rc-mock-match-bar {
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #666;
}
.rc-mock-match-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e8a020;
  flex-shrink: 0;
}
.rc-mock-match-badge {
  margin-left: auto;
  background: rgba(232,160,32,0.15);
  color: #a06b00;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  border: 1px solid rgba(232,160,32,0.3);
}
.rc-mock-filters { display: flex; gap: 5px; flex-wrap: wrap; }
.rc-mock-filter {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid #e0ddf0;
  background: white;
  color: #888;
  display: flex;
  align-items: center;
  gap: 3px;
}
.rc-mock-filter.active {
  background: rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.3);
  color: #7c3aed;
}
.rc-mock-section-row { display: flex; justify-content: space-between; align-items: center; }
.rc-mock-section-label {
  font-size: 11px;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rc-mock-sort { font-size: 10px; color: #aaa; }
.rc-card {
  background: white;
  border: 1px solid #eeeaf8;
  border-radius: 12px;
  padding: 11px 13px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: border-color 0.15s;
}
.rc-card:hover { border-color: #c4b5fd; }
.rc-card-top { display: flex; align-items: center; gap: 9px; }
.rc-card-logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.rc-card-info { flex: 1; min-width: 0; }
.rc-card-name { font-size: 13px; font-weight: 500; color: #1a1040; }
.rc-card-sub { font-size: 11px; color: #999; margin-top: 1px; }
.rc-card-heart {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid #eeeaf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rc-card-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.rc-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 500;
}
.rc-tag.green { background: rgba(16,185,129,0.1); color: #065f46; border: 1px solid rgba(16,185,129,0.2); }
.rc-tag.pink  { background: rgba(236,72,153,0.1);  color: #9d174d; border: 1px solid rgba(236,72,153,0.2); }
.rc-tag.blue  { background: rgba(59,130,246,0.1);  color: #1e40af; border: 1px solid rgba(59,130,246,0.2); }
.rc-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
  border-top: 0.5px solid #f0edf8;
}
.rc-card-meta { font-size: 10px; color: #bbb; display: flex; gap: 10px; }
.rc-card-copy {
  width: 22px; height: 22px;
  border-radius: 5px;
  border: 1px solid #e8e4f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rc-card-score {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}
.rc-card-score.high { background: rgba(16,185,129,0.12); color: #065f46; }
.rc-card-score.mid  { background: rgba(232,160,32,0.12);  color: #92400e; }

/* SECTION HEADER */
.rc-db-section {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.6rem;
}

.rc-db-sort {
  opacity: 0.6;
}

/* CARDS */
.rc-db-cards {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rc-db-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.75rem;
}

/* CARD HEADER */
.rc-db-card-header {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.3rem;
}

.rc-db-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.rc-db-logo.lego {
  background: #ef4444;
}

/* TEXT */
.rc-db-card-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.rc-db-card-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
}

.rc-db-desc {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  margin: 0.4rem 0;
}

/* TAGS */
.rc-db-tags {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
}

.rc-db-tags span {
  font-size: 0.6rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.rc-db-tags .green {
  background: rgba(16,185,129,0.15);
  color: #6ee7b7;
}

.rc-db-tags .pink {
  background: rgba(236,72,153,0.15);
  color: #f9a8d4;
}

/* META */
.rc-db-meta {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  gap: 0.5rem;
}

.rc-dashboard {
  width: 100%;
  max-width: 520px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;

  overflow: hidden;
  position: relative;
  z-index: 2;

  box-shadow:
    0 40px 80px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.15);

  animation: fadeSlideUp 0.8s 0.3s ease both;
}
.rc-db-header {
  background: rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rc-db-dots { display: flex; gap: 6px; }
.rc-db-dot { width: 10px; height: 10px; border-radius: 50%; }
.rc-db-title { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.rc-db-body { padding: 1.25rem; }
.rc-db-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.rc-db-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.85rem;
}
.rc-db-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.rc-db-stat-num.amber { color: var(--amber-light); }
.rc-db-stat-num.teal  { color: #5eead4; }
.rc-db-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.rc-db-section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.rc-db-ref-row {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}
.rc-db-ref-row:hover { background: rgba(255,255,255,0.07); }
.rc-db-ref-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.rc-db-ref-info { flex: 1; min-width: 0; }
.rc-db-ref-name { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.88); margin-bottom: 1px; }
.rc-db-ref-role { font-size: 0.68rem; color: rgba(255,255,255,0.4); }
.rc-db-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.rc-db-badge.completed { background: rgba(13,148,136,0.2); color: #5eead4; border: 1px solid rgba(13,148,136,0.3); }
.rc-db-badge.pending   { background: rgba(232,160,32,0.15); color: var(--amber-light); border: 1px solid rgba(232,160,32,0.25); }
.rc-db-badge.sent      { background: rgba(100,116,145,0.2); color: rgba(255,255,255,0.5); border: 1px solid rgba(100,116,145,0.2); }

/* =========================================================
   TRUST BAR
   ========================================================= */
.rc-trust-bar {
  background: rgba(29, 42, 106, 1);
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.rc-trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  white-space: nowrap;
}
.rc-trust-companies { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.rc-trust-company {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.rc-trust-company:hover { color: rgba(255,255,255,0.65); }

/* =========================================================
   FEATURES
   ========================================================= */
.rc-features { padding: 7rem 4rem; max-width: 1200px; margin: 0 auto; }
.rc-section-tag {
  display: inline-block;
  font-size: 0.99rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.rc-section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.rc-section-sub { font-size: 1.05rem; color: var(--slate); line-height: 1.7; max-width: 520px; }
.rc-features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.rc-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(10,22,40,0.08);
  border-radius: 20px;
  overflow: hidden;
}
.rc-feature-card {
  background: var(--cream);
  padding: 2.5rem;
  transition: background 0.2s;
}
.rc-feature-card:hover { background: var(--cream-dark); }
.rc-feature-card:nth-child(1) { border-radius: 20px 0 0 0; }
.rc-feature-card:nth-child(2) { border-radius: 0 20px 0 0; }
.rc-feature-card:nth-child(3) { border-radius: 0 0 0 20px; }
.rc-feature-card:nth-child(4) { border-radius: 0 0 20px 0; }
.rc-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.rc-feature-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.rc-feature-p { font-size: 0.9rem; color: var(--slate); line-height: 1.65; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.rc-hiw { background: var(--navy); padding: 7rem 4rem; position: relative; overflow: hidden; }
.rc-hiw-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(13,148,136,0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(232,160,32,0.08) 0%, transparent 40%);
}
.rc-hiw-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.rc-hiw-header { text-align: center; margin-bottom: 5rem; }
.rc-hiw-header .rc-section-tag { color: var(--amber-light); }
.rc-hiw-header .rc-section-h2 { color: white; }
.rc-hiw-header .rc-section-sub { color: rgba(255,255,255,0.5); margin: 0 auto; }
.rc-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  position: relative;
}
.rc-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(232,160,32,0.4), rgba(13,148,136,0.4));
  z-index: 0;
}
.rc-step { position: relative; z-index: 1; }
.rc-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  position: relative;
}
.rc-step-num::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(232,160,32,0.2);
}
.rc-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.rc-step p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* =========================================================
   PRICING
   ========================================================= */
.rc-pricing { padding: 7rem 4rem; max-width: 1200px; margin: 0 auto; }
.rc-pricing-header { text-align: center; margin-bottom: 3.5rem; }
.rc-pricing-header .rc-section-sub { margin: 0 auto; }
.rc-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.rc-plan {
  border-radius: 16px;
  padding: 2.25rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rc-plan:hover { transform: translateY(-4px); }
.rc-plan-basic    { background: var(--cream-dark); border: 1px solid rgba(10,22,40,0.1); }
.rc-plan-pro      { background: var(--navy); border: 1px solid var(--navy-light); box-shadow: 0 24px 48px rgba(10,22,40,0.25); }
.rc-plan-enterprise { background: var(--cream-dark); border: 1px solid rgba(10,22,40,0.1); }
.rc-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
}
.rc-plan-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.rc-plan-basic .rc-plan-name, .rc-plan-enterprise .rc-plan-name { color: var(--slate); }
.rc-plan-pro .rc-plan-name { color: rgba(255,255,255,0.5); }
.rc-plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}
.rc-plan-basic .rc-plan-price, .rc-plan-enterprise .rc-plan-price { color: var(--navy); }
.rc-plan-pro .rc-plan-price { color: white; }
.rc-plan-period { font-size: 0.82rem; margin-bottom: 1.5rem; }
.rc-plan-basic .rc-plan-period, .rc-plan-enterprise .rc-plan-period { color: var(--slate); }
.rc-plan-pro .rc-plan-period { color: rgba(255,255,255,0.45); }
.rc-plan-divider { height: 1px; margin-bottom: 1.5rem; }
.rc-plan-basic .rc-plan-divider, .rc-plan-enterprise .rc-plan-divider { background: rgba(10,22,40,0.1); }
.rc-plan-pro .rc-plan-divider { background: rgba(255,255,255,0.1); }
.rc-plan-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.rc-plan-feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.87rem; }
.rc-plan-basic .rc-plan-feature, .rc-plan-enterprise .rc-plan-feature { color: var(--text-body); }
.rc-plan-pro .rc-plan-feature { color: rgba(255,255,255,0.75); }
.rc-check { width: 16px; height: 16px; flex-shrink: 0; }
.rc-plan-btn {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Karla', sans-serif;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.rc-plan-basic .rc-plan-btn, .rc-plan-enterprise .rc-plan-btn {
  background: transparent;
  border: 1.5px solid rgba(10,22,40,0.2);
  color: var(--navy);
}
.rc-plan-basic .rc-plan-btn:hover, .rc-plan-enterprise .rc-plan-btn:hover {
  border-color: var(--navy);
  background: rgba(10,22,40,0.04);
}
.rc-plan-pro .rc-plan-btn { background: var(--amber); color: var(--navy); }
.rc-plan-pro .rc-plan-btn:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,160,32,0.35);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.rc-testimonials { background: var(--cream-dark); padding: 7rem 4rem; }
.rc-testimonials-inner { max-width: 1200px; margin: 0 auto; }
.rc-testimonials-header { text-align: center; margin-bottom: 4rem; }
.rc-testimonials-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.rc-testimonial {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(10,22,40,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.rc-testimonial:hover { box-shadow: 0 12px 32px rgba(10,22,40,0.08); transform: translateY(-2px); }
.rc-testimonial:first-child { padding: 2.5rem; }
.rc-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 0.5;
  margin-bottom: 1rem;
  color: var(--teal);
  opacity: 0.5;
}
.rc-testimonial-text { font-size: 0.92rem; line-height: 1.7; color: var(--text-body); margin-bottom: 1.5rem; font-style: italic; }
.rc-testimonial:first-child .rc-testimonial-text { font-size: 1.05rem; }
.rc-testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.rc-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.rc-author-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.rc-author-title { font-size: 0.75rem; color: var(--slate); }
.rc-stars { display: flex; gap: 2px; margin-bottom: 0.85rem; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.rc-cta-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 50%, #0a2040 100%);
  padding: 6rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rc-cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(13,148,136,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(232,160,32,0.1) 0%, transparent 40%);
}
.rc-cta-banner-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.rc-cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.rc-cta-banner p { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.65; margin-bottom: 2.5rem; }
.rc-cta-banner-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.rc-btn-amber {
  background: var(--amber);
  color: var(--navy);
  padding: 0.9rem 2.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Karla', sans-serif;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
}
.rc-btn-amber:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.4);
}
.rc-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 0.9rem 2.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Karla', sans-serif;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.rc-btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: white; }
.rc-cta-note { margin-top: 1.25rem !important; margin-bottom: 0 !important; font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* =========================================================
   FOOTER
   ========================================================= */
.rc-footer { background: #06101f; padding: 3.5rem 4rem 2rem; }
.rc-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.rc-footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin-top: 0.85rem;
  max-width: 260px;
}
.rc-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rc-footer-logo-img {
  height: 20px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.rc-footer-logo-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rc-footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.rc-footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.rc-footer-col a { font-size: 0.87rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.rc-footer-col a:hover { color: rgba(255,255,255,0.85); }
.rc-footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.rc-footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.rc-footer-legal { display: flex; gap: 1.5rem; }
.rc-footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.rc-footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .rc-hero { grid-template-columns: 1fr; }
  .rc-hero-right { display: none; }
  .rc-hero-left { padding: 4rem 2rem; min-height: auto; }
  .rc-features { padding: 5rem 2rem; }
  .rc-features-header { grid-template-columns: 1fr; gap: 2rem; }
  .rc-features-grid { grid-template-columns: 1fr; }
  .rc-feature-card:nth-child(n) { border-radius: 0; }
  .rc-feature-card:first-child { border-radius: 20px 20px 0 0; }
  .rc-feature-card:last-child  { border-radius: 0 0 20px 20px; }
  .rc-steps { grid-template-columns: 1fr; }
  .rc-steps::before { display: none; }
  .rc-hiw, .rc-testimonials, .rc-cta-banner { padding: 5rem 2rem; }
  .rc-pricing { padding: 5rem 2rem; }
  .rc-pricing-grid { grid-template-columns: 1fr; }
  .rc-testimonials-grid { grid-template-columns: 1fr; }
  .rc-trust-bar { padding: 1.5rem 2rem; }
  .rc-footer { padding: 3rem 2rem 2rem; }
  .rc-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .rc-footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .rc-nav { padding: 0 1.25rem; }
  .rc-nav-links { gap: 1rem; }
}
@media (max-width: 600px) {
  .rc-nav-links li:not(:last-child) { display: none; }
  .rc-footer-top { grid-template-columns: 1fr; }
}

/* =========================================================
   HERO DASHBOARD â€” updated for match UI
   ========================================================= */
.rc-db-match-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}
.rc-db-match-bar strong { color: white; }
.rc-db-match-badge {
  margin-left: auto;
  background: rgba(232,160,32,0.2);
  color: var(--amber-light);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  border: 1px solid rgba(232,160,32,0.3);
}
.rc-db-filter-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.rc-db-filter {
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
}
.rc-db-filter.active {
  background: rgba(13,148,136,0.15);
  border-color: rgba(13,148,136,0.3);
  color: #5eead4;
}

/* =========================================================
   THE PROBLEM â€” MOMENT SECTION
   ========================================================= */
.rc-moment-section {
  padding: 7rem 4rem;
  background: var(--cream);
}
.rc-moment-inner { max-width: 900px; margin: 0 auto; }

.rc-moment-callout {
  background: var(--cream-dark);
  border-left: 3px solid var(--amber);
  border-radius: 12px;
  padding: 2.5rem 3rem;
  margin: 2rem auto 0;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.rc-moment-line  { font-size: 1rem; color: var(--slate); line-height: 1.5; }
.rc-moment-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
  line-height: 1.2;
}
.rc-moment-reply {
  font-size: 1rem;
  color: var(--slate);
  font-style: italic;
  opacity: 0.8;
}

/* Problem cards */
.rc-problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.rc-problem-card {
  background: white;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.rc-problem-card:hover { box-shadow: 0 12px 32px rgba(10,22,40,0.07); transform: translateY(-3px); }
.rc-problem-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(10,22,40,0.08);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.rc-problem-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.rc-problem-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.rc-problem-card p { font-size: 0.87rem; color: var(--slate); line-height: 1.65; }

/* Slack mess block */
.rc-mess-block { margin-top: 5rem; }
.rc-slack-mock {
  max-width: 620px;
  margin: 0 auto;
  background: #1a1d21;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.rc-slack-msg { display: flex; gap: 0.85rem; align-items: flex-start; }
.rc-slack-avatar {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: white;
}
.rc-slack-body { flex: 1; }
.rc-slack-name { font-size: 0.82rem; font-weight: 700; color: white; margin-bottom: 0.2rem; }
.rc-slack-time { font-size: 0.72rem; color: rgba(255,255,255,0.3); font-weight: 400; margin-left: 0.4rem; }
.rc-slack-text { font-size: 0.87rem; color: rgba(255,255,255,0.75); line-height: 1.55; }
.rc-slack-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* =========================================================
   FIX SECTION
   ========================================================= */
.rc-fix-section {
  background: var(--teal);
  padding: 4rem;
  text-align: center;
}
.rc-fix-inner { max-width: 700px; margin: 0 auto; }
.rc-fix-section .rc-section-h2 { color: white; }

/* =========================================================
   RESPONSIVE â€” new sections
   ========================================================= */
@media (max-width: 900px) {
  .rc-moment-section { padding: 5rem 2rem; }
  .rc-moment-callout { padding: 2rem; }
  .rc-problems-grid  { grid-template-columns: 1fr; }
  .rc-fix-section    { padding: 3rem 2rem; }
}

/* =========================================================
   GLASS HERO DASHBOARD
   ========================================================= */
.g-panel {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
  animation: fadeSlideUp 0.8s 0.3s ease both;
}
.g-nav {
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.g-brand { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: white; }
.g-brand-icon {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 12px rgba(168,85,247,0.5);
}
.g-nav-links { display: flex; gap: 16px; align-items: center; }
.g-nav-links span { font-size: 11px; color: rgba(255,255,255,0.4); }
.g-nav-links span.act { color: #a78bfa; font-weight: 600; }
.g-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.g-search-row { display: flex; gap: 7px; }
.g-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px 11px;
  font-size: 12px; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 7px;
}
.g-magic {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: white; border-radius: 10px; padding: 8px 12px;
  font-size: 11px; font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(139,92,246,0.45);
}
.g-clear {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 8px 10px;
  font-size: 11px; color: rgba(255,255,255,0.4);
}
.g-match-bar {
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.28);
  border-radius: 10px; padding: 8px 11px;
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; color: rgba(255,255,255,0.55);
}
.g-dot { width: 6px; height: 6px; border-radius: 50%; background: #e8a020; flex-shrink: 0; box-shadow: 0 0 6px #e8a020; }
.g-match-badge {
  margin-left: auto;
  background: rgba(232,160,32,0.18); color: #fbbf24;
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 100px;
  border: 1px solid rgba(232,160,32,0.35);
}
.g-filters { display: flex; gap: 5px; flex-wrap: wrap; }
.g-pill {
  font-size: 10px; padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 3px;
}
.g-pill.act { background: rgba(139,92,246,0.18); border-color: rgba(139,92,246,0.4); color: #c4b5fd; }
.g-section-row { display: flex; justify-content: space-between; align-items: center; }
.g-section-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; text-transform: uppercase; }
.g-sort { font-size: 10px; color: rgba(255,255,255,0.25); }
.g-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 12px 14px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.g-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(139,92,246,0.35); }
.g-card-top { display: flex; align-items: center; gap: 10px; }
.g-logo {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: white; flex-shrink: 0;
}
.g-card-info { flex: 1; min-width: 0; }
.g-card-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.92); }
.g-card-sub { font-size: 10px; color: rgba(255,255,255,0.38); margin-top: 2px; }
.g-heart {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.g-score { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 100px; }
.g-score.hi { background: rgba(16,185,129,0.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.25); }
.g-score.md { background: rgba(251,191,36,0.12); color: #fbbf24; border: 1px solid rgba(251,191,36,0.22); }
.g-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.g-tag { font-size: 10px; padding: 2px 9px; border-radius: 100px; font-weight: 500; }
.g-tag.gr { background: rgba(16,185,129,0.12); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.2); }
.g-tag.pk { background: rgba(236,72,153,0.12); color: #f9a8d4; border: 1px solid rgba(236,72,153,0.2); }
.g-tag.bl { background: rgba(99,102,241,0.15); color: #a5b4fc; border: 1px solid rgba(99,102,241,0.25); }
.g-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 6px; border-top: 1px solid rgba(255,255,255,0.06);
}
.g-meta { font-size: 10px; color: rgba(255,255,255,0.25); display: flex; gap: 10px; }
.g-copy {
  width: 22px; height: 22px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
}

/* =========================================================
   CONVERSATION CALLOUT
   ========================================================= */
.rc-convo-wrap {
  max-width: 680px;
  margin: 2rem auto 0;
  font-family: 'Karla', sans-serif;
}
.rc-convo-context {
  text-align: center;
  margin-bottom: 1.75rem;
}
.rc-convo-context span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-dark);
  border: 1px solid rgba(10,22,40,0.1);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}
.rc-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: rc-livepulse 1.5s ease-in-out infinite;
}
@keyframes rc-livepulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.rc-msg-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-end;
}
.rc-msg-right { flex-direction: row-reverse; }
.rc-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
  color: white;
}
.rc-avatar-prospect { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.rc-avatar-rep      { background: linear-gradient(135deg, #10b981, #059669); }
.rc-msg-col {
  display: flex; flex-direction: column; gap: 3px;
  max-width: 72%;
}
.rc-msg-right .rc-msg-col { align-items: flex-end; }
.rc-msg-name {
  font-size: 0.7rem;
  color: var(--slate-light);
  padding: 0 4px;
}
.rc-bubble {
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-body);
  background: white;
  border: 1px solid rgba(10,22,40,0.08);
  border-bottom-left-radius: 4px;
}
.rc-msg-right .rc-bubble {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  border: none;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 4px;
}
.rc-bubble-pain {
  background: #fffbeb !important;
  border-color: rgba(232,160,32,0.4) !important;
  color: #78350f !important;
  border-bottom-right-radius: 4px !important;
  border-bottom-left-radius: 16px !important;
}
.rc-bubble-bad {
  background: #fff5f5 !important;
  border-color: rgba(239,68,68,0.25) !important;
  color: #7f1d1d !important;
  font-style: italic;
}
.rc-typing {
  display: flex; gap: 4px;
  padding: 12px 16px;
  background: white;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.rc-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--slate-light);
  animation: rc-bounce 1.2s ease-in-out infinite;
}
.rc-typing span:nth-child(2) { animation-delay: 0.2s; }
.rc-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes rc-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30% { transform: translateY(-5px); opacity: 1; }
}
.rc-scramble-note {
  margin: 4px 0 6px 44px;
  font-size: 0.75rem;
  color: var(--slate-light);
  font-style: italic;
}
.rc-convo-divider {
  display: flex; align-items: center; gap: 10px;
  margin: 1.5rem 0;
}
.rc-divider-line { flex: 1; height: 1px; background: rgba(10,22,40,0.08); }
.rc-divider-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate-light);
  white-space: nowrap;
}
.rc-outcome-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 0.5rem;
}
.rc-outcome-card {
  background: #fff5f5;
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 12px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 5px;
}
.rc-outcome-icon { font-size: 1rem; color: #ef4444; }
.rc-outcome-label { font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.rc-outcome-desc { font-size: 0.78rem; color: var(--slate); line-height: 1.5; }

@media (max-width: 900px) {
  .rc-outcome-row { grid-template-columns: 1fr; }
  .rc-msg-col { max-width: 85%; }
}
