/* ═══════════════════════════════════════════════════
   GEN-Z Laundry — Journey Page Styles
   ═══════════════════════════════════════════════════ */

/* ── Base ───────────────────────────────────────── */
.jrn-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.jrn-section {
  padding: 88px 0;
  position: relative;
}

/* Scroll reveal */
.jrn-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.jrn-reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger helper — applied via JS */
.jrn-reveal.delay-1 { transition-delay: 0.1s; }
.jrn-reveal.delay-2 { transition-delay: 0.2s; }
.jrn-reveal.delay-3 { transition-delay: 0.3s; }
.jrn-reveal.delay-4 { transition-delay: 0.4s; }

/* ── Section Header (reused) ────────────────────── */
.jrn-section-header { text-align: center; margin-bottom: 56px; }

.jrn-section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 800;
  color: #1E293B;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.jrn-section-header p {
  font-size: 1.05rem;
  color: #64748B;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.jrn-hero {
  min-height: 100vh;
  background: #0B1120;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 160px 24px 120px;
}

.jrn-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.jrn-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: jrnOrbFloat 22s ease-in-out infinite;
}
.jrn-orb1 { width:600px;height:600px;background:radial-gradient(circle,rgba(37,99,235,.45) 0%,transparent 70%);top:-15%;left:-10%; }
.jrn-orb2 { width:500px;height:500px;background:radial-gradient(circle,rgba(139,92,246,.3) 0%,transparent 70%);top:40%;right:-10%;animation-delay:-8s;animation-duration:28s; }
.jrn-orb3 { width:400px;height:400px;background:radial-gradient(circle,rgba(245,158,11,.18) 0%,transparent 70%);bottom:-5%;left:30%;animation-delay:-15s;animation-duration:25s; }

.jrn-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
  background-size: 60px 60px;
}

@keyframes jrnOrbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-50px) scale(1.05); }
  66% { transform: translate(-30px,25px) scale(.95); }
}

.jrn-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  width: 100%;
}

.jrn-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.3);
  color: #93C5FD;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 28px;
}

.jrn-pill-dot {
  width: 7px; height: 7px;
  background: #93C5FD;
  border-radius: 50%;
  animation: jrnBlink 2s ease infinite;
}

@keyframes jrnBlink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.jrn-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem,5.5vw,4.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.jrn-grad {
  background: linear-gradient(135deg,#F59E0B,#FDE68A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jrn-hero-sub {
  color: rgba(255,255,255,.68);
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 48px;
}

.jrn-hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.jrn-scroll-icon {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  animation: jrnBounce 2s ease-in-out infinite;
}

@keyframes jrnBounce {
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(6px); }
}

/* Chapter count badge */
.jrn-chapter-count {
  position: absolute;
  bottom: 40px; right: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  z-index: 2;
}

.jrn-cc-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #F59E0B;
  line-height: 1;
}

.jrn-cc-lbl {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════
   INTRO SECTION
══════════════════════════════════════════════════ */
.jrn-intro-section { background: #fff; padding: 80px 0; }

.jrn-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.jrn-intro-quote {
  position: relative;
  padding: 36px 32px;
  background: linear-gradient(135deg,#0B1120,#1E3A8A);
  border-radius: 24px;
  overflow: hidden;
}

.jrn-quote-mark {
  font-family: Georgia, serif;
  font-size: 10rem;
  color: rgba(255,255,255,.07);
  position: absolute;
  top: -20px; left: 10px;
  line-height: 1;
  pointer-events: none;
  font-weight: 900;
}

.jrn-intro-quote blockquote {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  font-style: normal;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.jrn-intro-quote cite {
  font-size: .88rem;
  color: #F59E0B;
  font-weight: 600;
  font-style: normal;
  position: relative;
  z-index: 1;
}

.jrn-lead {
  font-size: 1.08rem;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.7;
  margin-bottom: 16px;
}

.jrn-intro-text p {
  color: #64748B;
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.jrn-intro-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.jrn-intro-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(37,99,235,.07);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: #2563EB;
}

.jrn-intro-tags span i { font-size: .75rem; }

/* ══════════════════════════════════════════════════
   CHAPTER SHARED
══════════════════════════════════════════════════ */
.jrn-chapter { padding: 96px 0; position: relative; overflow: hidden; }

/* Light chapter backgrounds */
.jrn-ch-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.jrn-ch-bg-light  { background: #F8FAFC; }
.jrn-ch-bg-warm   { background: linear-gradient(135deg,#FFFBEB,#FFF7ED); }

/* Dark chapter */
.jrn-ch-dark {
  background: linear-gradient(180deg,#0B1120 0%,#111827 100%);
}

/* Chapter layout grid */
.jrn-ch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* L→R: media left, content right */
.jrn-ch-ltr .jrn-ch-media { order: 1; }
.jrn-ch-ltr .jrn-ch-content { order: 2; }

/* R→L: content left, media right */
.jrn-ch-rtl .jrn-ch-content { order: 1; }
.jrn-ch-rtl .jrn-ch-media { order: 2; }

/* Chapter tag */
.jrn-ch-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.18);
  color: #2563EB;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 14px;
}

.jrn-ch-tag-light {
  background: rgba(37,99,235,.15);
  border-color: rgba(37,99,235,.3);
  color: #93C5FD;
}

/* Chapter heading */
.jrn-ch-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem,3.2vw,2.4rem);
  font-weight: 800;
  color: #1E293B;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}

.jrn-ch-content p {
  color: #64748B;
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.jrn-ch-lead {
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: #1E293B !important;
}

/* Highlight quote bar */
.jrn-ch-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(37,99,235,.06);
  border-left: 4px solid #2563EB;
  border-radius: 0 10px 10px 0;
  margin-top: 20px;
}

.jrn-ch-highlight i { color: #2563EB; font-size: .9rem; flex-shrink: 0; }
.jrn-ch-highlight span { font-size: .92rem; font-weight: 600; color: #1E293B; }

.jrn-ch-highlight-dark {
  background: rgba(37,99,235,.12);
  border-color: #3B82F6;
}
.jrn-ch-highlight-dark span { color: rgba(255,255,255,.85); }
.jrn-ch-highlight-dark i { color: #60A5FA; }

/* ── Media panel ────────────────────────────────── */
.jrn-ch-media { position: relative; }

.jrn-ch-num-big {
  font-family: 'Outfit', sans-serif;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(37,99,235,.08);
  line-height: 1;
  position: absolute;
  top: -24px;
  left: -10px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.jrn-ch-num-light { color: rgba(255,255,255,.06); }

.jrn-ch-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  z-index: 1;
}

.jrn-ch-real-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 16px 56px rgba(0,0,0,.18);
}

/* Placeholder for images to be added later */
.jrn-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg,#1E3A8A,#1E293B);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed rgba(255,255,255,.1);
}

.jrn-img-placeholder i { font-size: 3rem; color: rgba(255,255,255,.3); }
.jrn-img-placeholder span { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.5); }
.jrn-img-placeholder small { font-size: .78rem; color: rgba(255,255,255,.3); }

/* Icon badge on image corner */
.jrn-ch-icon-badge {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 52px; height: 52px;
  background: #2563EB;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 6px 24px rgba(37,99,235,.45);
  border: 3px solid #fff;
  z-index: 3;
}

.jrn-badge-amber { background: #F59E0B; box-shadow: 0 6px 24px rgba(245,158,11,.4); }
.jrn-badge-green  { background: #10B981; box-shadow: 0 6px 24px rgba(16,185,129,.4); }

/* ══════════════════════════════════════════════════
   CH2 — Brand Pillars
══════════════════════════════════════════════════ */
.jrn-brand-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.jrn-pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  transition: background .3s ease, border-color .3s ease;
}

.jrn-pillar:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(37,99,235,.3);
}

.jrn-pillar-icon {
  width: 34px; height: 34px;
  background: rgba(37,99,235,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #93C5FD;
  font-size: .88rem;
  flex-shrink: 0;
}

.jrn-pillar span {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  line-height: 1.3;
}

/* ══════════════════════════════════════════════════
   CH3 — Operations list
══════════════════════════════════════════════════ */
.jrn-ops-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.jrn-op-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  font-weight: 500;
  color: #374151;
}

.jrn-op-item i { color: #10B981; font-size: .85rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   CH4 — Tech grid
══════════════════════════════════════════════════ */
.jrn-tech-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin: 24px 0;
}

.jrn-tech-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.jrn-tech-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(37,99,235,.3);
  transform: translateY(-3px);
}

.jrn-tech-card i {
  display: block;
  font-size: 1.4rem;
  color: #93C5FD;
  margin-bottom: 8px;
}

.jrn-tech-card span {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  line-height: 1.3;
  display: block;
}

.jrn-tech-coming {
  border-style: dashed;
  border-color: rgba(139,92,246,.3);
}

.jrn-tech-coming i { color: #A78BFA; }
.jrn-tech-coming em { display: block; font-size: .68rem; color: #A78BFA; margin-top: 2px; font-style: normal; font-weight: 700; }

/* ══════════════════════════════════════════════════
   CH5 — Growth stats + review snippet
══════════════════════════════════════════════════ */
.jrn-growth-stats {
  display: flex;
  align-items: center;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px 24px;
  margin: 22px 0;
  gap: 0;
}

.jrn-gs-item { flex: 1; text-align: center; }

.jrn-gs-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #2563EB;
  line-height: 1.1;
}

.jrn-gs-lbl {
  font-size: .75rem;
  color: #64748B;
  font-weight: 600;
  margin-top: 3px;
  display: block;
}

.jrn-gs-div { width: 1px; height: 36px; background: #E2E8F0; flex-shrink: 0; }

/* Review snippet card */
.jrn-review-snippet {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

.jrn-rs-stars { color: #F59E0B; font-size: .95rem; margin-bottom: 8px; }

.jrn-review-snippet p {
  font-size: .88rem;
  color: #374151;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 8px;
}

.jrn-review-snippet span {
  font-size: .75rem;
  color: #10B981;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════
   CH6 — Innovation list
══════════════════════════════════════════════════ */
.jrn-innov-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.jrn-innov-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  transition: background .3s ease, border-color .3s ease;
}

.jrn-innov-item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(37,99,235,.25);
}

.jrn-innov-icon {
  width: 42px; height: 42px;
  background: rgba(37,99,235,.15);
  color: #93C5FD;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.jrn-innov-item strong {
  display: block;
  font-size: .92rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 3px;
}

.jrn-innov-item span {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════
   CH7 — Challenges
══════════════════════════════════════════════════ */
.jrn-challenges-wrap { max-width: 960px; margin: 0 auto; }

.jrn-challenges-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.jrn-challenge-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}

.jrn-challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
}

.jrn-chal-icon {
  width: 52px; height: 52px;
  background: rgba(37,99,235,.08);
  color: #2563EB;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.jrn-challenge-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 8px;
}

.jrn-challenge-card p {
  font-size: .88rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 14px;
}

.jrn-chal-outcome {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 700;
  color: #10B981;
}

.jrn-chal-outcome i { font-size: .72rem; }

.jrn-challenges-quote {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg,rgba(37,99,235,.05),rgba(139,92,246,.04));
  border-radius: 16px;
  border: 1px solid rgba(37,99,235,.12);
}

.jrn-challenges-quote i {
  color: #2563EB;
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}

.jrn-challenges-quote p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════
   CH8 — Future Section
══════════════════════════════════════════════════ */
.jrn-future-section { position: relative; overflow: hidden; }

.jrn-future-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: jrnOrbFloat 22s ease-in-out infinite;
}

.jrn-future-orb1 { width:500px;height:500px;background:radial-gradient(circle,rgba(37,99,235,.2) 0%,transparent 70%);top:-10%;left:-5%; }
.jrn-future-orb2 { width:400px;height:400px;background:radial-gradient(circle,rgba(245,158,11,.12) 0%,transparent 70%);bottom:-10%;right:-5%;animation-delay:-11s; }

.jrn-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Today grid */
.jrn-today-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.jrn-today-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.jrn-today-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(37,99,235,.3);
  transform: translateY(-4px);
}

.jrn-today-icon {
  width: 52px; height: 52px;
  background: rgba(37,99,235,.15);
  color: #93C5FD;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 14px;
}

.jrn-today-card strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.jrn-today-card span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

/* Future divider */
.jrn-future-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.jrn-fd-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(37,99,235,.4),transparent);
}

.jrn-fd-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 999px;
  color: #F59E0B;
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Roadmap */
.jrn-roadmap {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}

.jrn-rm-item {
  display: grid;
  grid-template-columns: 52px 28px 1fr;
  align-items: flex-start;
  gap: 0;
}

.jrn-rm-dot {
  width: 48px; height: 48px;
  background: #2563EB;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(37,99,235,.4);
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}

.jrn-rm-line {
  width: 2px;
  background: linear-gradient(180deg,rgba(255,255,255,.1),rgba(255,255,255,.04));
  min-height: 70px;
  margin: 48px auto 0;
}

.jrn-rm-last { min-height: 0; }

.jrn-rm-content {
  padding: 10px 0 28px 20px;
}

.jrn-rm-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.jrn-rm-content span {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

/* Closing statement */
.jrn-closing {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.jrn-closing-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.05rem,2.2vw,1.3rem);
  font-weight: 500;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
}

.jrn-closing-text strong { color: #F59E0B; font-weight: 800; }

.jrn-closing-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.jrn-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #F59E0B;
  color: #0B1120;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(245,158,11,.4);
  transition: all .3s ease;
  text-decoration: none;
}

.jrn-btn-primary:hover {
  background: #D97706;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245,158,11,.5);
  color: #0B1120;
}

.jrn-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all .3s ease;
  text-decoration: none;
}

.jrn-btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
  color: #fff;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .jrn-today-grid { grid-template-columns: repeat(2,1fr); }
  .jrn-brand-pillars { grid-template-columns: 1fr; }
  .jrn-tech-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .jrn-hero { padding: 120px 20px 100px; min-height: auto; }
  .jrn-hero-title { font-size: 2.2rem; }
  .jrn-chapter-count { bottom: 20px; right: 20px; }

  .jrn-intro-grid   { grid-template-columns: 1fr; gap: 32px; }
  .jrn-ch-grid      { grid-template-columns: 1fr; gap: 36px; }
  .jrn-ch-ltr .jrn-ch-media,
  .jrn-ch-rtl .jrn-ch-media,
  .jrn-ch-ltr .jrn-ch-content,
  .jrn-ch-rtl .jrn-ch-content { order: unset; }
  .jrn-ch-rtl .jrn-ch-content { order: 1; }
  .jrn-ch-rtl .jrn-ch-media   { order: 2; }

  .jrn-ch-num-big { font-size: 4rem; }

  .jrn-brand-pillars  { grid-template-columns: 1fr 1fr; }
  .jrn-ops-list       { grid-template-columns: 1fr; }
  .jrn-tech-grid      { grid-template-columns: repeat(2,1fr); }
  .jrn-challenges-grid { grid-template-columns: 1fr; }
  .jrn-today-grid     { grid-template-columns: 1fr 1fr; }

  .jrn-rm-item { grid-template-columns: 44px 20px 1fr; }

  .jrn-closing-actions { flex-direction: column; align-items: center; }
  .jrn-btn-primary, .jrn-btn-outline { width: 100%; justify-content: center; }

  .jrn-growth-stats { flex-wrap: wrap; }
  .jrn-gs-div { display: none; }

  .jrn-chapter { padding: 60px 0; }
}

@media (max-width: 480px) {
  .jrn-hero-title { font-size: 1.9rem; }
  .jrn-brand-pillars { grid-template-columns: 1fr; }
  .jrn-tech-grid { grid-template-columns: 1fr 1fr; }
  .jrn-today-grid { grid-template-columns: 1fr; }
  .jrn-chapter-count { display: none; }
}
