/* === Exit Journey === */
.journey-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0c0a06 0%, #1a1005 40%, #0e0c06 100%);
  border-bottom: 1px solid var(--line);
  padding: 90px 24px 60px;
  text-align: center;
}
.journey-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(201,168,76,.09), transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(120,60,10,.12), transparent 60%);
  pointer-events: none;
}
.journey-hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px,5vw,62px); font-weight: 600; line-height: 1.1;
  margin-bottom: 16px; position: relative; z-index: 2;
}
.journey-hero h1 em { color: var(--gold); font-style: italic }
.journey-hero-sub {
  font-size: 17px; color: var(--text2); max-width: 580px; margin: 0 auto 14px;
  line-height: 1.65; position: relative; z-index: 2;
}
.journey-manifesto {
  display: inline-block;
  font-family: var(--serif); font-size: 22px; font-style: italic;
  color: var(--gold2);
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.04));
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 8px; padding: 14px 28px; margin-top: 8px;
  position: relative; z-index: 2;
}

/* Diagram */
.journey-diagram { max-width: 1100px; margin: 0 auto; padding: 60px 24px 20px }
.journey-trunk-wrap { position: relative; display: flex; flex-direction: column; align-items: center }

/* Intake */
.jd-intake { display: flex; flex-direction: column; align-items: center; gap: 0; width: 100%; max-width: 480px }
.jd-intake-box {
  background: linear-gradient(135deg, rgba(35,28,18,.95), rgba(25,20,12,.95));
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 12px; padding: 24px 28px; text-align: center; width: 100%;
  box-shadow: 0 0 40px rgba(201,168,76,.08);
}
.jd-intake-box .jd-step-num {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,.3);
  border-radius: 4px; padding: 3px 9px; margin-bottom: 10px;
}
.jd-intake-box h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 6px }
.jd-intake-box p { font-size: 13px; color: var(--text2); line-height: 1.55 }

/* Pipes */
.jd-pipe {
  width: 2px; height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,.5), rgba(201,168,76,.2));
  position: relative;
}
.jd-pipe::after {
  content: '\25BC'; position: absolute; bottom: -14px; left: 50%;
  transform: translateX(-50%); font-size: 10px; color: rgba(201,168,76,.5);
}
.jd-pipe-wide { width: 2px; height: 40px; background: linear-gradient(to bottom, rgba(201,168,76,.4), transparent) }
.jd-split-label {
  background: var(--dark2); border: 1px solid var(--line);
  border-radius: 20px; padding: 8px 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text3); margin: 4px 0;
}

/* Three paths */
.jd-paths { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; width: 100%; margin-top: 0 }
@media (max-width: 780px) { .jd-paths { grid-template-columns: 1fr } }
.jd-path { display: flex; flex-direction: column; align-items: center; gap: 0; position: relative }
.jd-path-line { width: 2px; height: 32px }
.jd-path-line.gold { background: linear-gradient(to bottom, rgba(201,168,76,.5), rgba(201,168,76,.3)) }
.jd-path-line.amber { background: linear-gradient(to bottom, rgba(212,135,58,.5), rgba(212,135,58,.3)) }
.jd-path-line.earth { background: linear-gradient(to bottom, rgba(120,100,60,.6), rgba(120,100,60,.3)) }

.jd-path-card { border-radius: 12px; padding: 24px 20px; width: 100%; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s }
.jd-path-card:hover { transform: translateY(-3px) }
.jd-path-card.gold { background: linear-gradient(150deg, rgba(30,24,12,.98), rgba(20,16,8,.98)); border: 1px solid rgba(201,168,76,.35); box-shadow: 0 8px 32px rgba(201,168,76,.1) }
.jd-path-card.amber { background: linear-gradient(150deg, rgba(28,20,10,.98), rgba(18,14,8,.98)); border: 1px solid rgba(212,135,58,.3); box-shadow: 0 8px 32px rgba(212,135,58,.08) }
.jd-path-card.earth { background: linear-gradient(150deg, rgba(22,18,12,.98), rgba(14,12,8,.98)); border: 1px solid rgba(120,100,60,.3); box-shadow: 0 8px 32px rgba(0,0,0,.3) }

.jd-path-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 4px; padding: 3px 9px; margin-bottom: 12px }
.badge-gold { background: rgba(201,168,76,.15); color: var(--gold); border: 1px solid rgba(201,168,76,.3) }
.badge-amber { background: rgba(212,135,58,.12); color: #d4873a; border: 1px solid rgba(212,135,58,.25) }
.badge-earth { background: rgba(120,100,60,.15); color: #a08858; border: 1px solid rgba(120,100,60,.25) }

.jd-path-icon { font-size: 30px; margin-bottom: 10px; display: block }
.jd-path-title { font-family: var(--serif); font-size: 19px; font-weight: 600; margin-bottom: 8px; color: var(--text) }
.jd-path-desc { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 14px }
.jd-path-steps { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 6px }
.jd-path-steps li { font-size: 12px; color: var(--text2); display: flex; align-items: flex-start; gap: 7px; padding: 6px 10px; background: rgba(255,255,255,.03); border-radius: 5px }
.jd-path-steps li::before { content: '\2192'; font-size: 11px; flex-shrink: 0; margin-top: 1px }
.step-gold li::before { color: var(--gold) }
.step-amber li::before { color: #d4873a }
.step-earth li::before { color: #a08858 }

.jd-path-fee { font-size: 11px; font-weight: 600; letter-spacing: .5px; padding: 5px 10px; border-radius: 4px; display: inline-block }
.fee-gold { background: rgba(201,168,76,.1); color: var(--gold2) }
.fee-amber { background: rgba(212,135,58,.1); color: #d4873a }
.fee-earth { background: rgba(120,100,60,.1); color: #a08858 }

/* Valuation tick */
.jd-valuation-tick { background: rgba(201,168,76,.06); border: 1px solid rgba(201,168,76,.15); border-radius: 6px; padding: 8px 12px; margin-top: 10px; display: flex; align-items: center; gap: 8px }
.jd-val-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); animation: pulse-dot 2s ease-in-out infinite }
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1) } 50% { opacity: .4; transform: scale(.7) } }
.jd-val-text { font-size: 11px; color: var(--text2) }
.jd-val-text strong { color: var(--text); font-weight: 600 }

/* Convergence */
.jd-converge { display: flex; flex-direction: column; align-items: center; margin-top: 32px; width: 100% }
.jd-converge-lines { display: grid; grid-template-columns: repeat(3,1fr); width: 100%; height: 40px; position: relative }
.jd-converge-lines::before {
  content: ''; position: absolute; bottom: 0; left: 16.666%; right: 16.666%;
  height: 2px; background: linear-gradient(90deg, transparent, rgba(201,168,76,.3) 20%, rgba(201,168,76,.5) 50%, rgba(201,168,76,.3) 80%, transparent);
}
.jd-converge-line-left, .jd-converge-line-mid, .jd-converge-line-right { display: flex; justify-content: center }
.jd-converge-line-left::after, .jd-converge-line-right::after {
  content: ''; display: block; width: 2px; height: 100%;
  background: linear-gradient(to bottom, rgba(201,168,76,.3), rgba(201,168,76,.5));
  align-self: flex-start;
}
.jd-converge-line-mid::after {
  content: ''; display: block; width: 2px; height: 50%;
  background: linear-gradient(to bottom, rgba(201,168,76,.3), rgba(201,168,76,.5));
}

/* Destination */
.jd-destination {
  background: linear-gradient(135deg, rgba(40,30,10,.98), rgba(20,15,5,.98));
  border: 1px solid rgba(201,168,76,.5);
  border-radius: 14px; padding: 30px 36px; text-align: center;
  box-shadow: 0 0 60px rgba(201,168,76,.15), 0 20px 60px rgba(0,0,0,.5);
  max-width: 520px; width: 100%;
}
.jd-destination-icon { font-size: 44px; margin-bottom: 12px; display: block }
.jd-destination h2 { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--gold); margin-bottom: 8px }
.jd-destination p { font-size: 14px; color: var(--text2); line-height: 1.6; max-width: 380px; margin: 0 auto 16px }
.jd-destination-quote { font-family: var(--serif); font-size: 17px; font-style: italic; color: var(--gold2); border-top: 1px solid var(--line); padding-top: 14px; margin-top: 2px }

/* Connector tree — desktop */
@media (min-width: 781px) {
  .jd-paths-wrap { position: relative }
  .jd-paths-wrap::before {
    content: ''; position: absolute; top: 0; left: 50%;
    transform: translateX(-50%); width: 66.666%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,.3) 20%, rgba(201,168,76,.4) 50%, rgba(201,168,76,.3) 80%, transparent);
  }
}

/* Mobile: stack paths and fix convergence */
@media (max-width: 780px) {
  .jd-paths { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; gap: 0 }
  .jd-path { padding-bottom: 0 }
  .jd-path + .jd-path { margin-top: 8px }
  .jd-path-line { height: 24px !important }
  .jd-intake { max-width: 100% }
  .jd-intake-box { padding: 20px 18px }
  .jd-split-label { font-size: 11px; padding: 6px 16px }
  .jd-split-arrows { display: none }
  /* Hide convergence lines on mobile — single column doesn't need 3-way merge */
  .jd-converge-lines { display: none }
  .jd-converge { margin-top: 16px }
  /* Add a simple pipe before destination on mobile */
  .jd-converge::before {
    content: ''; display: block;
    width: 2px; height: 36px;
    background: linear-gradient(to bottom, rgba(201,168,76,.4), rgba(201,168,76,.6));
  }
  .jd-destination { padding: 24px 20px }
  .jd-destination h2 { font-size: 22px }
  .jd-destination p { font-size: 13px }
  .jd-destination-quote { font-size: 15px }
  .jd-path-card { padding: 20px 16px }
}

/* === Mini Bottle Demand Engine === */
.mbd-section {
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 50%, var(--dark2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mbd-inner {
  max-width: 1000px; margin: 0 auto;
  padding: 70px 24px;
}
.mbd-intro {
  text-align: center; font-size: 15px; color: var(--text2);
  line-height: 1.7; max-width: 640px; margin: 0 auto 48px;
}

/* Pipeline visual */
.mbd-pipeline {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 52px; padding: 28px 24px;
  background: linear-gradient(135deg, rgba(35,28,18,.4), rgba(20,16,10,.4));
  border: 1px solid var(--line); border-radius: 12px;
}
.mbd-pipeline-start,
.mbd-pipeline-mid,
.mbd-pipeline-end {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; flex: 0 0 auto; min-width: 100px;
}
.mbd-pipeline-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(35,28,18,.95), rgba(20,16,10,.95));
  border: 2px solid rgba(201,168,76,.3);
  display: grid; place-items: center; margin-bottom: 8px;
  color: var(--gold);
}
.mbd-pipeline-icon--mini {
  border-color: rgba(212,135,58,.5);
  background: linear-gradient(135deg, rgba(40,24,10,.95), rgba(20,14,6,.95));
  color: #d4873a;
}
.mbd-pipeline-icon--demand {
  border-color: var(--good);
  background: linear-gradient(135deg, rgba(20,40,28,.95), rgba(10,20,14,.95));
  color: var(--good);
}
.mbd-pipeline-label {
  font-family: var(--serif); font-size: 14px; font-weight: 600;
  color: var(--text);
}
.mbd-pipeline-sub {
  font-size: 11px; color: var(--text3); margin-top: 2px;
}
.mbd-pipeline-arrow {
  display: flex; align-items: center; padding: 0 10px; margin-bottom: 20px;
}
.mbd-arrow-svg { width: 50px; height: 12px; color: rgba(201,168,76,.6) }

/* Three channel cards */
.mbd-channels {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 36px;
}
.mbd-channel {
  background: linear-gradient(160deg, rgba(35,28,18,.6), rgba(20,16,10,.6));
  border: 1px solid var(--line);
  border-radius: 12px; padding: 28px 24px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.mbd-channel:hover {
  border-color: rgba(201,168,76,.3);
  transform: translateY(-2px);
}
.mbd-channel-icon {
  width: 40px; height: 40px; border-radius: var(--r);
  background: var(--gold-dim); border: 1px solid rgba(201,168,76,.2);
  display: grid; place-items: center; margin-bottom: 14px;
  color: var(--gold);
}
.mbd-channel-num {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold); opacity: .5; margin-bottom: 8px;
}
.mbd-channel h3 {
  font-family: var(--serif); font-size: 17px; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.mbd-channel p {
  font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 14px;
}
.mbd-channel-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: .3px;
  color: var(--good); background: rgba(90,170,122,.08);
  border: 1px solid rgba(90,170,122,.18);
  border-radius: 4px; padding: 5px 10px;
}

/* Differentiator callout */
.mbd-differentiator {
  display: flex; gap: 18px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(201,168,76,.06), rgba(201,168,76,.02));
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 12px; padding: 24px 28px;
}
.mbd-diff-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25);
  display: grid; place-items: center; flex-shrink: 0;
  color: var(--gold);
}
.mbd-diff-title {
  font-family: var(--serif); font-size: 16px; font-weight: 600;
  color: var(--gold); margin-bottom: 6px;
}
.mbd-diff-body {
  font-size: 13px; color: var(--text2); line-height: 1.65; margin: 0;
}

@media (max-width: 780px) {
  .mbd-pipeline { flex-direction: column; gap: 0; padding: 24px 16px }
  .mbd-pipeline-arrow {
    transform: rotate(90deg); padding: 6px 0;
    margin-bottom: 0;
  }
  .mbd-channels { grid-template-columns: 1fr }
  .mbd-inner { padding: 50px 20px }
  .mbd-differentiator { flex-direction: column; gap: 12px; padding: 20px }
}
