/* =============================================================
   Retail, Hospitality & Travel — page-specific styles
   ============================================================= */

.rh-page { background: #060912; color: #fff; }

/* ---------- HERO ---------- */
.rh-hero {
  position: relative; min-height: 720px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-bottom: 96px;
}
.rh-hero-stack { position: absolute; inset: 0; }
.rh-hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1400ms ease;
  transform: scale(1.06);
  animation: rhHeroDrift 18s ease-in-out infinite alternate;
}
.rh-hero-slide.on { opacity: 1; }
@keyframes rhHeroDrift {
  from { transform: scale(1.04) translate(0,0); }
  to   { transform: scale(1.10) translate(-20px,-10px); }
}
.rh-hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,9,18,0.55) 0%, rgba(6,9,18,0.25) 35%, rgba(6,9,18,0.85) 75%, rgba(6,9,18,1) 100%),
    linear-gradient(90deg, rgba(6,9,18,0.75) 0%, rgba(6,9,18,0.15) 60%);
}
.rh-hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 60%, transparent 0%, rgba(6,9,18,0.6) 90%);
}
.rh-hero-inner { position: relative; z-index: 2; max-width: 1280px; width: 100%; }

.rh-hero-tag { display: flex; gap: 14px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.rh-hero-pill {
  display: inline-block; padding: 6px 12px;
  border: 1px solid rgba(255,77,138,0.5);
  background: rgba(255,77,138,0.10);
  color: #FF4D8A;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  border-radius: 100px;
}
.rh-hero-mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: rgba(255,255,255,0.6); }

.rh-hero-h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(40px, 5.5vw, 76px); line-height: 1.04;
  color: #fff; margin: 0 0 22px; max-width: 920px;
  letter-spacing: -0.01em;
  animation: rhHeroH 700ms ease;
}
@keyframes rhHeroH { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.rh-hero-lede {
  font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.78);
  max-width: 640px; margin: 0 0 32px;
}
.rh-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }

.rh-hero-dots { display: flex; gap: 8px; }
.rh-hero-dot {
  width: 28px; height: 3px; border-radius: 2px;
  border: 0; padding: 0; background: rgba(255,255,255,0.2);
  cursor: pointer; transition: background 200ms, width 200ms;
}
.rh-hero-dot.on { background: #FF4D8A; width: 44px; }

/* ---------- SECTOR SWITCHER ---------- */
.rh-sect { padding: 120px 0 80px; }
.rh-sect-head { margin-bottom: 40px; max-width: 720px; }
.rh-sect-head .eyebrow { color: #FF4D8A; }
.rh-sect-head .eyebrow span { background: #FF4D8A; }
.rh-sect-head h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.1; color: #fff;
  margin: 12px 0 0;
}

.rh-sect-tabs {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
  margin-bottom: 24px;
}
.rh-sect-tab {
  position: relative; background: rgba(255,255,255,0.02);
  border: 1px solid var(--site-line); border-radius: 6px;
  padding: 12px 14px; display: flex; flex-direction: column; gap: 10px;
  cursor: pointer; transition: all 240ms;
  text-align: left; color: rgba(255,255,255,0.7);
  overflow: hidden;
}
.rh-sect-tab:hover { border-color: rgba(255,77,138,0.4); color: #fff; }
.rh-sect-tab.on {
  border-color: #FF4D8A; color: #fff;
  background: rgba(255,77,138,0.06);
}
.rh-sect-tab-thumb {
  height: 64px; border-radius: 4px;
  background-size: cover; background-position: center;
  filter: grayscale(0.4) brightness(0.7);
  transition: filter 240ms;
}
.rh-sect-tab.on .rh-sect-tab-thumb { filter: none; }
.rh-sect-tab-l { font-family: var(--font-display); font-weight: 300; font-size: 14px; }

@media (max-width: 1000px) {
  .rh-sect-tabs { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .rh-sect-tabs { grid-template-columns: repeat(2, 1fr); }
}

.rh-sect-stage {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--site-line);
  border-radius: 8px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  min-height: 460px;
}
@media (max-width: 900px) { .rh-sect-stage { grid-template-columns: 1fr; } }

.rh-sect-photo {
  position: relative;
  background-size: cover; background-position: center;
  min-height: 460px;
}
.rh-sect-photo-fade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(6,9,18,0.6) 100%),
              linear-gradient(180deg, transparent 60%, rgba(6,9,18,0.6) 100%);
}
.rh-sect-photo-tag {
  position: absolute; bottom: 20px; left: 20px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  color: #fff;
  background: rgba(255,77,138,0.9);
  padding: 6px 12px; border-radius: 3px;
}

.rh-sect-body { padding: 36px 40px; display: flex; flex-direction: column; gap: 20px; }
.rh-sect-tagline {
  font-family: var(--font-display); font-weight: 300;
  font-size: 26px; line-height: 1.2; color: #fff;
  text-wrap: balance;
}
.rh-sect-uses { display: flex; flex-direction: column; gap: 14px; }
.rh-sect-use {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start;
  padding-bottom: 14px; border-bottom: 1px dashed var(--site-line-2);
}
.rh-sect-use:last-child { border-bottom: 0; }
.rh-sect-use-n {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  color: #FF4D8A; padding-top: 2px;
}
.rh-sect-use-t { font-family: var(--font-display); font-weight: 300; font-size: 16px; color: #fff; margin-bottom: 2px; }
.rh-sect-use-d { font-size: 13px; line-height: 1.5; color: var(--site-text-2); }

.rh-sect-foot { margin-top: auto; display: flex; gap: 14px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.rh-sect-products { display: flex; gap: 6px; flex-wrap: wrap; }
.rh-sect-chip {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em;
  padding: 4px 8px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); text-transform: uppercase;
}
.rh-sect-deep {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  color: #FF4D8A; text-decoration: none; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 220ms;
}
.rh-sect-deep:hover { gap: 14px; }
.rh-sect-deep svg { width: 12px; height: 12px; }

/* ---------- AI IN ACTION ---------- */
.rh-aia { padding: 80px 0; background: #0a0d1a; }
.rh-aia-head { text-align: center; margin-bottom: 36px; max-width: 720px; margin-inline: auto; }
.rh-aia-head .eyebrow { color: #FF4D8A; justify-content: center; }
.rh-aia-head .eyebrow span { background: #FF4D8A; }
.rh-aia-head h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(32px, 4vw, 48px); line-height: 1.1; color: #fff;
  margin: 12px 0 12px;
}
.rh-aia-head p { color: var(--site-text-2); font-size: 16px; }
.rh-aia-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 24px; }
@media (max-width: 800px) { .rh-aia-tabs { grid-template-columns: repeat(2, 1fr); } }
.rh-aia-tab {
  background: rgba(255,255,255,0.02); border: 1px solid var(--site-line);
  border-radius: 6px; padding: 14px 16px; cursor: pointer;
  display: flex; flex-direction: column; gap: 4px; text-align: left;
  color: rgba(255,255,255,0.7); transition: all 240ms;
}
.rh-aia-tab:hover { color: #fff; border-color: rgba(255,77,138,0.4); }
.rh-aia-tab.on { border-color: #FF4D8A; background: rgba(255,77,138,0.06); color: #fff; }
.rh-aia-tab-l { font-family: var(--font-display); font-weight: 300; font-size: 16px; }
.rh-aia-tab-s { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; color: rgba(255,255,255,0.45); text-transform: uppercase; }

.rh-aia-stage {
  min-height: 460px;
  border: 1px solid var(--site-line); border-radius: 8px;
  background: #060912; padding: 24px;
  display: flex; align-items: stretch; justify-content: center;
}

/* WhatsApp chat */
.rh-wa { width: 100%; max-width: 520px; display: flex; flex-direction: column; }
.rh-wa-bar {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 10px; align-items: center;
  padding: 12px 16px; background: #1f2c34; border-radius: 8px 8px 0 0;
}
.rh-wa-avatar { width: 40px; height: 40px; border-radius: 50%; background-size: cover; background-position: center; }
.rh-wa-name { font-size: 14px; font-weight: 500; color: #fff; }
.rh-wa-sub { font-size: 11px; color: #5EFFA4; }
.rh-wa-wa { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; color: #5EFFA4; }
.rh-wa-body {
  flex: 1; padding: 18px 14px; background:
    linear-gradient(180deg, rgba(11,20,26,0.95), rgba(11,20,26,0.95)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='20' cy='20' r='1' fill='%23ffffff10'/></svg>");
  display: flex; flex-direction: column; gap: 10px;
  overflow-y: auto; max-height: 360px;
}
.rh-wa-msg {
  max-width: 80%; padding: 8px 12px; font-size: 13.5px; line-height: 1.45;
  border-radius: 8px; word-wrap: break-word;
  animation: rhWaIn 240ms ease;
}
@keyframes rhWaIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.rh-wa-msg.user { background: #005c4b; color: #fff; align-self: flex-end; border-bottom-right-radius: 2px; }
.rh-wa-msg.agent { background: #202c33; color: #fff; align-self: flex-start; border-bottom-left-radius: 2px; }
.rh-wa-typ { display: flex; gap: 4px; padding: 12px 14px; }
.rh-wa-typ span {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5);
  animation: rhWaDot 1.2s ease-in-out infinite;
}
.rh-wa-typ span:nth-child(2) { animation-delay: 0.15s; }
.rh-wa-typ span:nth-child(3) { animation-delay: 0.30s; }
@keyframes rhWaDot { 0%,80%,100% { opacity: 0.3; } 40% { opacity: 1; } }
.rh-wa-foot {
  padding: 10px 16px; background: #1f2c34; border-radius: 0 0 8px 8px;
  text-align: center;
}
.rh-wa-mono { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; color: rgba(255,255,255,0.45); text-transform: uppercase; }

/* CCTV */
.rh-cctv { width: 100%; display: flex; flex-direction: column; gap: 14px; }
.rh-cctv-frame {
  position: relative; aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  border: 1px solid rgba(79,200,255,0.3); border-radius: 6px; overflow: hidden;
  filter: brightness(0.85) contrast(1.1);
}
.rh-cctv-frame::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.rh-cctv-scan {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #4FC8FF, transparent);
  animation: rhCctvScan 4s linear infinite;
}
@keyframes rhCctvScan { from { top: 0; } to { top: 100%; } }
.rh-cctv-bbox {
  position: absolute; border: 1.5px solid #5EFFA4; border-radius: 2px;
  box-shadow: inset 0 0 14px rgba(94,255,164,0.08);
  animation: rhCctvBox 1.6s ease-in-out infinite;
}
.rh-cctv-bbox.q { border-color: #FFB36B; }
.rh-cctv-bbox.d { border-color: #4FC8FF; }
.rh-cctv-bbox.a { border-color: #FF5A5A; animation-duration: 0.8s; }
@keyframes rhCctvBox { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }
.rh-cctv-bbox > span {
  position: absolute; top: -19px; left: -1px;
  background: currentColor; color: #000;
  font-family: var(--font-mono); font-size: 9px; padding: 2px 6px;
  white-space: nowrap; letter-spacing: 0.06em;
}
.rh-cctv-bbox.q > span { background: #FFB36B; }
.rh-cctv-bbox.d > span { background: #4FC8FF; }
.rh-cctv-bbox.a > span { background: #FF5A5A; color: #fff; }
.rh-cctv-bbox > span::after {
  content: ''; position: absolute; left: 8px; bottom: -3px;
  border: 3px solid transparent; border-top-color: currentColor;
}
.rh-cctv-meta {
  position: absolute; top: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85); text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.rh-cctv-rec { display: inline-flex; align-items: center; gap: 6px; color: #FF5A5A; }
.rh-cctv-rec i { width: 8px; height: 8px; border-radius: 50%; background: #FF5A5A; box-shadow: 0 0 8px #FF5A5A; animation: rhCctvBlink 1.2s steps(2) infinite; }
@keyframes rhCctvBlink { 50% { opacity: 0.3; } }

.rh-cctv-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.rh-cctv-chip {
  padding: 12px 14px; border: 1px solid var(--site-line); border-radius: 6px;
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; gap: 4px;
}
.rh-cctv-chip span { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; color: rgba(255,255,255,0.45); text-transform: uppercase; }
.rh-cctv-chip b { font-family: var(--font-display); font-weight: 300; font-size: 22px; color: #fff; }
.rh-cctv-chip.alert { border-color: #FF5A5A; background: rgba(255,90,90,0.06); }
.rh-cctv-chip.alert b { color: #FF5A5A; }

/* Hotel console */
.rh-hotel { width: 100%; display: flex; flex-direction: column; gap: 14px; }
.rh-hotel-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px;
  border: 1px solid var(--site-line); border-radius: 6px;
  background: rgba(255,255,255,0.02);
}
.rh-hotel-dot { width: 8px; height: 8px; border-radius: 50%; background: #5EFFA4; box-shadow: 0 0 10px #5EFFA4; animation: rhCctvBlink 1.5s infinite; }
.rh-hotel-mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: #fff; text-transform: uppercase; }
.rh-hotel-mono.dim { color: rgba(255,255,255,0.4); margin-left: auto; }
.rh-hotel-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.rh-hotel-kpi {
  padding: 16px; border: 1px solid var(--site-line); border-radius: 6px;
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; gap: 6px;
}
.rh-hotel-kpi span { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; color: rgba(255,255,255,0.45); text-transform: uppercase; }
.rh-hotel-kpi b { font-family: var(--font-display); font-weight: 300; font-size: 30px; color: #fff; }
.rh-hotel-kpi i { font-style: normal; font-family: var(--font-mono); font-size: 11px; color: #5EFFA4; }
.rh-hotel-alerts { display: flex; flex-direction: column; gap: 6px; }
.rh-hotel-alert {
  display: grid; grid-template-columns: 60px 1fr 50px; gap: 14px; align-items: center;
  padding: 12px 16px; border: 1px solid var(--site-line); border-left-width: 3px;
  background: rgba(255,255,255,0.02); border-radius: 4px;
}
.rh-hotel-alert.high { border-left-color: #FF5A5A; }
.rh-hotel-alert.med  { border-left-color: #FFB36B; }
.rh-hotel-alert.low  { border-left-color: #4FC8FF; }
.rh-hotel-sev { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; }
.rh-hotel-alert.high .rh-hotel-sev { color: #FF5A5A; }
.rh-hotel-alert.med  .rh-hotel-sev { color: #FFB36B; }
.rh-hotel-alert.low  .rh-hotel-sev { color: #4FC8FF; }
.rh-hotel-msg { font-size: 14px; color: #fff; }
.rh-hotel-age { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.4); text-align: right; }

/* Creative studio */
.rh-cre { width: 100%; display: flex; flex-direction: column; gap: 14px; }
.rh-cre-brief { padding: 14px 16px; border: 1px solid var(--site-line); border-radius: 6px; background: rgba(255,255,255,0.02); display: flex; flex-direction: column; gap: 4px; }
.rh-cre-mono { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; }
.rh-cre-mono.dim { color: rgba(255,255,255,0.4); }
.rh-cre-brief-text { font-family: var(--font-display); font-size: 15px; color: #fff; }
.rh-cre-progress { position: relative; height: 28px; border: 1px solid var(--site-line); border-radius: 4px; overflow: hidden; background: rgba(255,255,255,0.02); }
.rh-cre-progress > span:first-child {
  display: block; height: 100%;
  background: linear-gradient(90deg, #FF4D8A, #FFB36B);
  transition: width 90ms linear;
}
.rh-cre-progress-l {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: #fff; text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.rh-cre-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
@media (max-width: 600px) { .rh-cre-grid { grid-template-columns: repeat(3, 1fr); } }
.rh-cre-tile {
  position: relative; aspect-ratio: 1/1; border-radius: 4px;
  opacity: 0.15; filter: blur(2px); transform: scale(0.92);
  transition: all 380ms cubic-bezier(.2,.8,.2,1);
}
.rh-cre-tile.on { opacity: 1; filter: none; transform: scale(1); }
.rh-cre-tile-l {
  position: absolute; bottom: 6px; left: 8px;
  font-family: var(--font-mono); font-size: 10px; color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.rh-cre-rerun {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  padding: 8px 14px; background: transparent;
  border: 1px solid var(--site-line); color: #fff;
  border-radius: 100px; cursor: pointer; transition: all 220ms;
  text-transform: uppercase;
}
.rh-cre-rerun:hover { border-color: #FF4D8A; color: #FF4D8A; }

/* ---------- USE CASES ---------- */
.rh-uc { padding: 80px 0; }
.rh-uc-head { margin-bottom: 36px; max-width: 720px; }
.rh-uc-head .eyebrow { color: #FF4D8A; }
.rh-uc-head .eyebrow span { background: #FF4D8A; }
.rh-uc-head h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; color: #fff; margin: 12px 0 0; }
.rh-uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .rh-uc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rh-uc-grid { grid-template-columns: 1fr; } }
.rh-uc-card {
  border: 1px solid var(--site-line); border-radius: 8px;
  background: rgba(255,255,255,0.02); overflow: hidden;
  transition: transform 280ms, border-color 280ms;
}
.rh-uc-card:hover { transform: translateY(-3px); border-color: rgba(255,77,138,0.4); }
.rh-uc-img {
  aspect-ratio: 16/10; background-size: cover; background-position: center;
  position: relative;
}
.rh-uc-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
}
.rh-uc-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em;
  color: #fff; padding: 4px 8px; border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 1;
}
.rh-uc-body { padding: 18px 20px 20px; }
.rh-uc-t { font-family: var(--font-display); font-weight: 300; font-size: 18px; color: #fff; margin-bottom: 6px; }
.rh-uc-d { font-size: 13px; line-height: 1.5; color: var(--site-text-2); }

/* ---------- PRODUCTS ---------- */
.rh-prod { padding: 80px 0; background: #0a0d1a; }
.rh-prod-head { text-align: center; margin-bottom: 40px; max-width: 740px; margin-inline: auto; }
.rh-prod-head .eyebrow { color: #FF4D8A; justify-content: center; }
.rh-prod-head .eyebrow span { background: #FF4D8A; }
.rh-prod-head h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(28px, 3.4vw, 42px); color: #fff; margin: 12px 0 12px; line-height: 1.15; }
.rh-prod-head p { color: var(--site-text-2); font-size: 15px; }
.rh-prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
@media (max-width: 900px) { .rh-prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rh-prod-grid { grid-template-columns: 1fr; } }
.rh-prod-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--site-line); border-radius: 8px; overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: transform 280ms, border-color 280ms;
}
.rh-prod-card:hover { transform: translateY(-3px); border-color: rgba(255,77,138,0.5); }
.rh-prod-img {
  aspect-ratio: 16/9; background-size: cover; background-position: center;
  position: relative;
}
.rh-prod-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,13,26,0.95) 100%);
}
.rh-prod-body { padding: 18px 20px 20px; }
.rh-prod-t { font-family: var(--font-display); font-weight: 300; font-size: 19px; color: #fff; margin-bottom: 6px; }
.rh-prod-d { font-size: 13px; line-height: 1.5; color: var(--site-text-2); margin-bottom: 14px; }
.rh-prod-foot { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: #FF4D8A; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; transition: gap 220ms; }
.rh-prod-foot svg { width: 12px; height: 12px; }
.rh-prod-card:hover .rh-prod-foot { gap: 14px; }

.rh-prod-custom {
  display: grid; grid-template-columns: 1.2fr 1fr;
  border: 1px solid var(--site-line); border-radius: 8px; overflow: hidden;
}
@media (max-width: 900px) { .rh-prod-custom { grid-template-columns: 1fr; } }
.rh-prod-custom-l { padding: 40px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.rh-prod-custom-l .eyebrow { color: #FF4D8A; }
.rh-prod-custom-l .eyebrow span { background: #FF4D8A; }
.rh-prod-custom-l h3 { font-family: var(--font-display); font-weight: 300; font-size: 28px; color: #fff; margin: 0; line-height: 1.15; }
.rh-prod-custom-l p { color: var(--site-text-2); font-size: 14px; line-height: 1.6; margin: 0; }
.rh-prod-custom-r {
  min-height: 280px; background-size: cover; background-position: center;
  position: relative;
}
.rh-prod-custom-r span {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,13,26,0.6) 0%, transparent 50%);
}

/* ---------- DAY IN LIFE ---------- */
.rh-dl { padding: 80px 0; }
.rh-dl-head { margin-bottom: 36px; max-width: 720px; }
.rh-dl-head .eyebrow { color: #FF4D8A; }
.rh-dl-head .eyebrow span { background: #FF4D8A; }
.rh-dl-head h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(28px, 3.4vw, 44px); color: #fff; margin: 12px 0 8px; line-height: 1.15; }
.rh-dl-head p { color: var(--site-text-2); font-size: 15px; }

.rh-dl-stage {
  display: grid; grid-template-columns: 1fr 320px; gap: 18px;
  border: 1px solid var(--site-line); border-radius: 8px;
  background: rgba(255,255,255,0.02); padding: 18px;
}
@media (max-width: 900px) { .rh-dl-stage { grid-template-columns: 1fr; } }

.rh-dl-photo {
  position: relative; min-height: 440px;
  background-size: cover; background-position: center;
  border-radius: 6px; overflow: hidden;
}
.rh-dl-photo-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.rh-dl-card {
  position: absolute; left: 28px; right: 28px; bottom: 28px;
  background: rgba(10,13,26,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,77,138,0.3); border-radius: 6px;
  padding: 22px 26px;
}
.rh-dl-time { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; color: #FF4D8A; margin-bottom: 8px; }
.rh-dl-l { font-family: var(--font-display); font-weight: 300; font-size: 24px; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.rh-dl-d { font-size: 14px; line-height: 1.55; color: var(--site-text-2); }

.rh-dl-rail {
  position: relative;
  padding: 12px 0 12px 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.rh-dl-track { position: absolute; left: 6px; top: 18px; bottom: 18px; width: 1px; background: var(--site-line); }
.rh-dl-fill { position: absolute; left: 6px; top: 18px; width: 1px; background: linear-gradient(180deg, #FF4D8A, #FFB36B); transition: height 400ms ease; }
.rh-dl-step {
  position: relative;
  background: transparent; border: 0; cursor: pointer; text-align: left;
  padding: 10px 0 10px 16px; display: flex; flex-direction: column; gap: 2px;
  color: rgba(255,255,255,0.5); transition: color 200ms;
}
.rh-dl-step::before {
  content: ''; position: absolute; left: -22px; top: 16px;
  width: 13px; height: 13px; border-radius: 50%;
  border: 2px solid var(--site-line); background: #0a0d1a; transition: all 200ms;
}
.rh-dl-step.past::before { border-color: #FF4D8A; }
.rh-dl-step.on::before { border-color: #FF4D8A; background: #FF4D8A; box-shadow: 0 0 14px rgba(255,77,138,0.6); }
.rh-dl-step.on, .rh-dl-step:hover { color: #fff; }
.rh-dl-step-t { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; }
.rh-dl-step-l { font-family: var(--font-display); font-size: 14px; }

/* ---------- OUTCOMES ---------- */
.rh-out { padding: 60px 0; border-top: 1px solid var(--site-line); border-bottom: 1px solid var(--site-line); }
.rh-out-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
@media (max-width: 700px) { .rh-out-grid { grid-template-columns: repeat(2, 1fr); } }
.rh-out-n { font-family: var(--font-display); font-weight: 300; font-size: clamp(36px, 5vw, 60px); color: #FF4D8A; line-height: 1; margin-bottom: 8px; }
.rh-out-l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: rgba(255,255,255,0.6); text-transform: uppercase; }
