/* CWP Experience Layer — Vòng Wellbeing · editorial motion · cross-page narrative */

:root {
  --ease-cwp: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-breath: cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* Film grain — subtle editorial texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ── JOURNEY RIBBON — deprecated, hidden ── */
.journey-ribbon { display: none !important; }

/* ── IMMERSIVE HERO SESSION ── */
.hero--immersive { min-height: 92vh; }
.hero--immersive .hero-inner {
  grid-template-columns: 1fr minmax(300px, 420px);
  align-items: stretch;
}
.hero--immersive .hero-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-session {
  position: relative;
  flex: 1;
  min-height: 420px;
}
.hero-session-shell {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rl);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}
.hero-session-top {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
}
.session-live {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.85rem;
}
.session-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: sessionPulse 2s ease infinite;
}
@keyframes sessionPulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.session-live-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: opacity 0.4s;
}
.session-live-text.is-fading { opacity: 0; }
.session-pips {
  display: flex;
  gap: 4px;
}
.session-pip {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px 4px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  transition: all 0.3s var(--ease-cwp);
}
.session-pip:hover { color: rgba(255, 255, 255, 0.55); background: rgba(255,255,255,0.04); }
.pip-dot {
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.pip-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-cwp);
}
.session-pip.is-done .pip-dot::after { transform: scaleX(1); background: rgba(255,255,255,0.35); }
.session-pip.is-active { color: var(--light2); }
.session-pip.is-active .pip-dot::after {
  transform: scaleX(1);
  background: var(--accent);
  animation: pipGlow 2s ease infinite;
}
@keyframes pipGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-session-body {
  flex: 1;
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hsb-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* Wellness day — services simulation */
.wellness-day-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wd-block {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  opacity: 0.4;
  transform: translateX(8px);
  transition: all 0.55s var(--ease-cwp);
}
.wd-block.is-active {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}
.wd-block.is-done { opacity: 0.65; transform: translateX(0); }
.wd-block.nu.is-active { border-left: 3px solid var(--gold); }
.wd-block.mo.is-active { border-left: 3px solid var(--accent-mid); }
.wd-block.me.is-active { border-left: 3px solid var(--sage); }
.wd-time {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--light2);
  padding-top: 2px;
}
.wd-content h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}
.wd-content p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 8px;
  line-height: 1.4;
}
.wd-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.wd-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-mid);
  border-radius: 2px;
  transition: width 0.1s linear;
}
.wd-block.nu .wd-bar-fill { background: var(--gold); }
.wd-block.mo .wd-bar-fill { background: var(--accent-mid); }
.wd-block.me .wd-bar-fill { background: var(--sage); }

/* Expert matching — partners simulation */
.expert-match-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.em-slot {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--r);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  opacity: 0.35;
  transition: all 0.6s var(--ease-cwp);
}
.em-slot.is-filling {
  opacity: 0.8;
  border-style: solid;
  border-color: rgba(218, 120, 150, 0.3);
}
.em-slot.is-filled {
  opacity: 1;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.em-slot.nu.is-filled { border-left: 3px solid var(--gold); }
.em-slot.mo.is-filled { border-left: 3px solid var(--accent-mid); }
.em-slot.me.is-filled { border-left: 3px solid var(--sage); }
.em-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent-mid);
}
.em-avatar img { width: 100%; height: 100%; object-fit: cover; }
.em-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: block;
}
.em-role {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.em-slot-status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  padding: 4px 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
}
.em-slot.is-filling .em-slot-status {
  color: var(--accent-mid);
  animation: emBlink 1s ease infinite;
}
.em-slot.is-filled .em-slot-status {
  color: #4ade80;
  animation: none;
}
@keyframes emBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.em-status-line {
  font-size: 12px;
  font-style: italic;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.45);
  min-height: 1.4em;
  transition: opacity 0.35s;
}
.em-status-line.is-fading { opacity: 0; }

.hero-session-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hsm {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.85rem 0.5rem;
  text-align: center;
}
.hsm-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--light2);
  line-height: 1;
}
.hsm-val.live,
.hsm-val.preview {
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #4ade80;
  margin-top: 4px;
}
.hsm-lbl {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* Breath ring — ambient behind session panel */
.breath-ring {
  position: absolute;
  inset: -20%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.breath-ring-inner {
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(218, 120, 150, 0.12);
  animation: breathRing 6s var(--ease-breath) infinite;
}
@keyframes breathRing {
  0%, 100% { transform: scale(0.92); opacity: 0.35; }
  50% { transform: scale(1.06); opacity: 0.7; }
}

/* Hide old hero widgets when session is present */
.hero-session ~ .hero-ring-wrap,
.hero-session ~ .hero-card,
.hero-session ~ .hero-quote-card { display: none; }
.hero-right:has(.hero-session) .hero-ring-wrap,
.hero-right:has(.hero-session) .hero-card,
.hero-right:has(.hero-session) .hero-quote-card { display: none; }

/* ── BREATH ORBS (hero ambient) ── */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  animation: orbBreath var(--dur, 8s) var(--ease-breath) infinite;
  animation-delay: var(--delay, 0s);
}
.orb--nu {
  width: 280px; height: 280px;
  background: rgba(184, 115, 51, 0.12);
  top: 15%; right: 8%;
  --dur: 9s; --delay: 0s;
}
.orb--mo {
  width: 320px; height: 320px;
  background: rgba(218, 120, 150, 0.14);
  bottom: 10%; right: 25%;
  --dur: 11s; --delay: 2s;
}
.orb--me {
  width: 240px; height: 240px;
  background: rgba(92, 140, 106, 0.1);
  top: 40%; left: -5%;
  --dur: 10s; --delay: 4s;
}
@keyframes orbBreath {
  0%, 100% { opacity: 0.35; transform: scale(1) translate(0, 0); }
  50% { opacity: 0.7; transform: scale(1.12) translate(8px, -12px); }
}

/* Pillar ring — hero visual anchor */
.hero-ring-wrap {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.hero-ring {
  width: 100%;
  aspect-ratio: 1;
  transform: rotate(-90deg);
}
.hero-ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 3;
}
.hero-ring-arc {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 0.32 0.68;
  animation: ringDraw 2.2s var(--ease-cwp) forwards;
}
.hero-ring-arc.nu { stroke: var(--gold); stroke-dashoffset: 0; animation-delay: 0.2s; }
.hero-ring-arc.mo { stroke: var(--accent-mid); stroke-dashoffset: -0.32; animation-delay: 0.5s; }
.hero-ring-arc.me { stroke: var(--sage); stroke-dashoffset: -0.64; animation-delay: 0.8s; }
@keyframes ringDraw {
  from { stroke-dasharray: 0 1; }
  to { stroke-dasharray: 0.32 0.68; }
}
.hero-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero-ring-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--light2);
  line-height: 1;
}
.hero-ring-tag {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.5rem;
}

/* ── MARQUEE ── */
.marquee-band {
  background: var(--dark-s2);
  border-block: 1px solid var(--bd-light);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  padding: 0 2.5rem;
  white-space: nowrap;
}
.marquee-item strong {
  font-style: normal;
  font-weight: 500;
  color: var(--light2);
}
.marquee-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 2.5rem;
  vertical-align: middle;
  opacity: 0.6;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── CONTINUUM (cross-page pillar system) ── */
.continuum {
  background: var(--dark-s);
  padding: 100px clamp(1.5rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.continuum::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 120, 150, 0.08) 0%, transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}
.continuum-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.continuum-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.continuum-ring {
  width: min(340px, 90vw);
  aspect-ratio: 1;
  position: relative;
}
.continuum-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.continuum-seg {
  fill: none;
  stroke-width: 18;
  stroke-linecap: butt;
  cursor: pointer;
  transition: stroke-width 0.35s var(--ease-cwp), opacity 0.35s;
  opacity: 0.85;
}
.continuum-seg:hover, .continuum-seg.is-active {
  stroke-width: 24;
  opacity: 1;
}
.continuum-seg.nu { stroke: var(--gold); }
.continuum-seg.mo { stroke: var(--accent); }
.continuum-seg.me { stroke: var(--sage); }
.continuum-seg.dim { opacity: 0.25; stroke-width: 14; }
.continuum-hub {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: rgba(30, 8, 15, 0.9);
  border: 1px solid var(--bd-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}
.continuum-hub-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.continuum-hub-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
  margin: 0.35rem 0;
  transition: opacity 0.3s;
}
.continuum-hub-stat {
  font-size: 11px;
  color: var(--accent-mid);
}
.continuum-copy .ey { color: var(--accent-mid); }
.continuum-copy .ey::before { background: var(--accent-mid); }
.continuum-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.continuum-copy h2 em { font-style: italic; color: var(--light2); }
.continuum-copy p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 42ch;
}
.continuum-panels { display: flex; flex-direction: column; gap: 0.75rem; }
.continuum-panel {
  display: none;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r);
  border: 1px solid var(--bd-light);
  background: rgba(255, 255, 255, 0.03);
  animation: panelIn 0.45s var(--ease-cwp);
}
.continuum-panel.is-visible { display: block; }
.continuum-panel h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.35rem;
}
.continuum-panel p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
  max-width: none;
}
.continuum-panel a {
  display: inline-flex;
  margin-top: 0.75rem;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-mid);
  letter-spacing: 0.04em;
}
.continuum-panel a:hover { color: var(--light2); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── TRUST — no emoji, editorial pills ── */
.trust-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.trust-pill {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.trust-pill:hover {
  border-color: rgba(218, 120, 150, 0.35);
  color: rgba(255, 255, 255, 0.75);
}

/* ── PILLAR ICONS (SVG replace emoji) ── */
.pill-icon-svg {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  display: block;
}
.pill-label-text { font-size: 10px; }

/* ── PARALLAX IMAGE REVEAL ── */
.img-reveal {
  position: relative;
  overflow: hidden;
  max-height: 460px;
}
.img-reveal img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.1s linear;
  will-change: transform;
}
.img-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(30, 8, 15, 0.4) 100%);
  pointer-events: none;
}
.img-reveal-caption {
  position: absolute;
  bottom: 2rem;
  left: clamp(1.5rem, 4vw, 3rem);
  z-index: 2;
  max-width: 32ch;
}
.img-reveal-caption p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
}
.img-reveal-caption span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-mid);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── PAGE BRIDGE (Services ↔ Partners) ── */
.page-bridge {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.bridge-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 420px;
}
.bridge-visual {
  position: relative;
  overflow: hidden;
}
.bridge-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.bridge-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 30%, var(--dark-s) 95%);
}
.bridge-content {
  background: var(--dark-s);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bridge-ey {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 1rem;
}
.bridge-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.bridge-content h2 em { font-style: italic; color: var(--light2); }
.bridge-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 40ch;
}
.bridge-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  background: var(--accent);
  box-shadow: 0 4px 24px rgba(203, 65, 107, 0.35);
  transition: transform 0.25s var(--ease-cwp), background 0.2s;
  align-self: flex-start;
}
.bridge-link:hover {
  background: #b33560;
  transform: translateX(6px);
}
.bridge-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease-cwp);
}
.bridge-link:hover svg { transform: translateX(4px); }

/* Expert preview strip on Services */
.expert-preview {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scrollbar-width: thin;
  margin-top: 1rem;
}
.expert-preview-card {
  flex: 0 0 140px;
  text-align: center;
}
.expert-preview-thumb {
  width: 140px;
  height: 175px;
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 0.5rem;
  border: 1px solid var(--light1);
  background: var(--bg2);
}
.expert-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-preview-thumb .ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-mid);
  background: linear-gradient(160deg, var(--bg2), var(--light1));
}
.expert-preview-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.3;
}
.expert-preview-role {
  font-size: 9px;
  color: rgba(50, 14, 25, 0.4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-cwp), transform 0.7s var(--ease-cwp);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Pillar card — accent line animation */
.pillar-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-cwp);
}
.pillar-card.nu::before { background: var(--gold); }
.pillar-card.mo::before { background: var(--accent); }
.pillar-card.me::before { background: var(--sage); }
.pillar-card:hover::before { transform: scaleX(1); }

/* Process — pulse on active step */
.process-step.is-active .step-circle {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(203, 65, 107, 0.15);
}

/* Contact icon — minimal line SVG */
.cc-icon-svg {
  width: 28px;
  height: 28px;
  margin: 0 auto 0.75rem;
  stroke: var(--accent-mid);
  fill: none;
  stroke-width: 1.5;
}

/* Page-specific body accents */
.page-services .journey-step[data-step="services"] .journey-link { pointer-events: none; }
.page-partners .journey-step[data-step="partners"] .journey-link { pointer-events: none; }

@media (max-width: 1024px) {
  .hero--immersive .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-session { min-height: 340px; }
  .continuum-grid, .bridge-inner { grid-template-columns: 1fr; }
  .bridge-visual::after {
    background: linear-gradient(180deg, transparent 40%, var(--dark-s) 100%);
  }
  .bridge-visual img { min-height: 280px; }
}
@media (max-width: 768px) {
  .session-pip { font-size: 8px; }
  .hero-session-metrics { grid-template-columns: 1fr 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .orb, .marquee-track, .hero-ring-arc, .session-pulse, .breath-ring-inner { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .orb { opacity: 0.4; }
  .wd-block, .em-slot { opacity: 1; transform: none; }
}
