/* ============================================================
   HOMEFORCE · rr.css
   Rental Ready program page
   Accent: --sage / --emerald · Hero: light concrete
   ============================================================ */

/* Nav is forced dark immediately since hero is light */
.rr-page #nav {
  background: rgba(20,20,20,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(237,150,72,.18);
}

/* ── Hero ───────────────────────────────────────────────────── */
#rr-hero {
  min-height: 100vh;
  background: var(--concrete);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.rr-hero-texture {
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_cream.jpg') center/600px;
  opacity: .22;
}
.rr-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.rr-hero-heading { color: var(--ink); margin-bottom: 24px; }
.rr-hero-heading em { font-style: italic; color: var(--emerald); }
.rr-hero-sub { color: var(--smoke); max-width: 480px; margin-bottom: 36px; font-weight: 300; }
.rr-hero-stats {
  display: flex;
  gap: 28px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--mist);
  margin-top: 40px;
}
.rr-page .stat-num { color: var(--emerald); }
.rr-page .stat-label { color: var(--smoke); }
.rr-page .stat-divider { background: var(--mist); }

/* Eligibility card — right side of light hero */
.rr-elig-card {
  background: #fff;
  border: 1px solid var(--mist);
  border-top: 3px solid var(--sage);
  padding: 30px 28px 26px;
}
.rr-elig-label {
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 6px;
}
.rr-elig-intro { font-size: 13.5px; color: var(--smoke); margin-bottom: 18px; }
.rr-elig-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.rr-elig-list li {
  font-size: 13.5px;
  color: var(--steel);
  padding: 10px 0;
  border-bottom: 1px solid var(--mist);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.rr-elig-list li:last-child { border-bottom: none; }
.rr-elig-note {
  font-family: var(--fl);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--smoke);
  border-top: 1px solid var(--mist);
  padding-top: 14px;
  margin-top: 16px;
}

/* ── Modules — dark ink cards on concrete ────────────────────── */
.rr-modules-section { background: var(--concrete); }
.rr-modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--mist);
  border: 2px solid var(--mist);
  margin-top: 56px;
}
.rr-module-card {
  background: var(--ink);
  padding: 36px 26px 30px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.rr-module-card:hover { background: #1c1c1c; }
.rr-module-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
}
.rr-module-texture {
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_dark.jpg') center/300px;
  opacity: .06;
}
.rr-module-num {
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255,255,255,.14);
  display: block;
  margin-bottom: 20px;
}
.rr-module-title {
  font-family: var(--fd);
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.rr-module-body { color: rgba(255,255,255,.44); font-size: 13px; line-height: 1.7; margin-bottom: 22px; }
.rr-module-topics { border-top: 1px solid rgba(255,255,255,.07); padding-top: 18px; display: flex; flex-direction: column; gap: 7px; }
.rr-module-topic {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.rr-module-topic svg { color: var(--sage); flex-shrink: 0; }

/* ── Who it's for — steel bg ─────────────────────────────────── */
.rr-who-section { background: var(--steel); position: relative; overflow: hidden; }
.rr-who-texture {
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_dark.jpg') center/500px;
  opacity: .07;
}
.rr-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.rr-who-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 30px 26px;
  position: relative;
  transition: background var(--transition), transform var(--transition);
}
.rr-who-card:hover { background: rgba(255,255,255,.07); transform: translateY(-3px); }
.rr-who-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
}
.rr-who-icon {
  width: 38px; height: 38px;
  background: rgba(131,181,145,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-bottom: 16px;
}
.rr-who-title { font-family: var(--fd); font-size: 20px; color: #fff; margin-bottom: 10px; }
.rr-who-body { font-size: 13px; line-height: 1.72; color: rgba(255,255,255,.44); }

/* ── Process — concrete ──────────────────────────────────────── */
.rr-process-section { background: var(--concrete); }
.rr-steps { display: flex; flex-direction: column; gap: 0; max-width: 640px; }
.rr-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--mist);
}
.rr-step:last-child { border-bottom: none; }
.rr-step-num {
  width: 36px; height: 36px;
  background: rgba(131,181,145,.12);
  border: 1px solid rgba(131,181,145,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fl);
  font-size: 12px;
  font-weight: 700;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}
.rr-step-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.rr-step-body { font-size: 13px; color: var(--smoke); line-height: 1.65; }

/* ── HPN connection — ember strip ────────────────────────────── */
.rr-hpn-strip {
  background: var(--ember);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.rr-hpn-strip-texture {
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_ember.jpg') center/400px;
  opacity: .12;
  mix-blend-mode: multiply;
}
.rr-hpn-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.rr-hpn-strip-heading {
  font-family: var(--fd);
  font-size: clamp(26px, 2.8vw, 38px);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}
.rr-hpn-strip-heading em { font-style: italic; }
.rr-hpn-strip-body { color: rgba(20,20,20,.6); line-height: 1.7; margin-bottom: 24px; }
.rr-hpn-listings {
  background: rgba(20,20,20,.08);
  border: 1px solid rgba(20,20,20,.12);
  padding: 0;
  overflow: hidden;
}
.rr-listing-head {
  padding: 12px 16px;
  background: rgba(20,20,20,.1);
  font-family: var(--fl);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(20,20,20,.5);
}
.rr-listing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(20,20,20,.08);
  transition: background var(--transition);
}
.rr-listing-row:last-child { border-bottom: none; }
.rr-listing-row:hover { background: rgba(20,20,20,.06); }
.rr-listing-addr { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.rr-listing-tag {
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(20,20,20,.1);
  color: rgba(20,20,20,.6);
  padding: 3px 10px;
}
.rr-listing-note {
  padding: 12px 16px;
  font-family: var(--fl);
  font-size: 10px;
  letter-spacing: .05em;
  color: rgba(20,20,20,.4);
  background: rgba(20,20,20,.06);
}

/* ── Portal CTA — concrete ───────────────────────────────────── */
.rr-portal-section { background: var(--concrete); }
.rr-portal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rr-portal-left h2 { margin-bottom: 14px; }
.rr-portal-left h2 em { font-style: italic; color: var(--emerald); }
.rr-portal-left .body-lg { color: var(--smoke); margin-bottom: 28px; }
.rr-portal-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.rr-portal-preview {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.rr-portal-bar {
  background: rgba(255,255,255,.04);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.rr-portal-dots { display: flex; gap: 5px; }
.rr-portal-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.12); }
.rr-portal-url { font-family: var(--fl); font-size: 10px; color: rgba(255,255,255,.22); letter-spacing: .04em; }
.rr-portal-content { padding: 20px 18px; }
.rr-portal-welcome {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.rr-portal-avatar {
  width: 32px; height: 32px;
  background: rgba(131,181,145,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 700;
  color: var(--sage);
  flex-shrink: 0;
}
.rr-portal-stage-badge {
  margin-left: auto;
  font-family: var(--fl);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(131,181,145,.12);
  color: var(--sage);
  border: 1px solid rgba(131,181,145,.25);
  padding: 3px 8px;
}
.rr-portal-progress-label {
  font-family: var(--fl);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  margin-bottom: 8px;
}
.rr-portal-prog-bar { height: 4px; background: rgba(255,255,255,.08); margin-bottom: 16px; }
.rr-portal-prog-fill { height: 100%; background: var(--sage); width: 50%; }
.rr-portal-mod {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-family: var(--fl);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .04em;
}
.rr-portal-mod:last-child { border-bottom: none; }
.rr-mod-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.rr-mod-done { background: var(--sage); color: rgba(255,255,255,.3); text-decoration: line-through; }
.rr-mod-done .rr-mod-dot { background: var(--sage); }
.rr-mod-active { color: var(--ember); }
.rr-mod-active .rr-mod-dot { background: var(--ember); }
.rr-mod-todo { color: rgba(255,255,255,.22); }
.rr-mod-todo .rr-mod-dot { background: rgba(255,255,255,.12); }

/* ── Apply section — dark ink ────────────────────────────────── */
.rr-apply-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.rr-apply-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_dark.jpg') center/500px;
  opacity: .05;
}
.rr-apply-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.rr-apply-left h2 { color: #fff; margin-bottom: 16px; }
.rr-apply-left h2 em { font-style: italic; color: var(--sage); }
.rr-apply-sub { color: rgba(255,255,255,.4); margin-bottom: 32px; font-weight: 300; }
.rr-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(131,181,145,.1);
  border: 1px solid rgba(131,181,145,.25);
  padding: 10px 18px;
  font-family: var(--fl);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 32px;
}
.rr-form-section-label {
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(131,181,145,.2);
  margin-top: 8px;
  margin-bottom: 4px;
}
.rr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .rr-modules-grid { grid-template-columns: repeat(2, 1fr); }
  .rr-who-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .rr-hero-inner,
  .rr-hpn-strip-inner,
  .rr-portal-inner,
  .rr-apply-inner { grid-template-columns: 1fr; gap: 48px; }
  .rr-portal-preview { display: none; }
}
@media (max-width: 640px) {
  .rr-modules-grid,
  .rr-who-grid { grid-template-columns: 1fr; }
  .rr-form-row { grid-template-columns: 1fr; }
}
