/* ValoraX Experience 2026
   Editorial motion system inspired by high-end digital studios, adapted to finance.
   Loaded after styles.css so it can safely override legacy presentation. */

:root {
  --vx-paper: #f4f3ef;
  --vx-paper-2: #eceae3;
  --vx-ink: #101512;
  --vx-ink-soft: #28332e;
  --vx-line: rgba(16, 21, 18, .12);
  --vx-green: #173f35;
  --vx-green-2: #2f735e;
  --vx-green-soft: #e5efe9;
  --vx-purple: #5f598d;
  --vx-purple-soft: #eeecf8;
  --vx-wine: #761c39;
  --vx-gold: #b19156;
  --vx-white: #fff;
  --vx-ease: cubic-bezier(.22, 1, .36, 1);
  --vx-ease-soft: cubic-bezier(.16, 1, .3, 1);
  --vx-shadow-lg: 0 34px 90px rgba(18, 30, 25, .14);
  --vx-shadow-md: 0 18px 48px rgba(18, 30, 25, .09);
}

html { scroll-behavior: smooth; }
html.vx-motion-ready { scroll-behavior: auto; }
body.vx-experience,
body.vx-member-experience {
  background: var(--vx-paper);
  color: var(--vx-ink);
  overflow-x: clip;
}

body.vx-experience::before,
body.vx-member-experience::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 6%, rgba(47,115,94,.06), transparent 27%),
    radial-gradient(circle at 92% 18%, rgba(95,89,141,.05), transparent 23%);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
body.vx-experience .topbar,
body.vx-member-experience .topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(244,243,239,.98);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
body.vx-experience .topbar.vx-scrolled,
body.vx-member-experience .topbar.vx-scrolled {
  border-bottom-color: var(--vx-line);
  box-shadow: 0 8px 28px rgba(20,27,23,.045);
  background: rgba(244,243,239,.995);
}
body.vx-experience .nav,
body.vx-member-experience .nav { min-height: 72px; }
body.vx-experience .brand,
body.vx-member-experience .brand { font-size: 1.06rem; }
body.vx-experience .brand-mark,
body.vx-member-experience .brand-mark {
  border-radius: 10px;
  background: var(--vx-green);
  box-shadow: none;
}
body.vx-experience .nav-links,
body.vx-member-experience .nav-links { gap: 2px; }
body.vx-experience .nav-links a,
body.vx-member-experience .nav-links a {
  position: relative;
  padding: 10px 14px;
  color: #656b67;
  background: transparent;
  box-shadow: none;
  transition: color .2s ease, background .2s ease;
}
body.vx-experience .nav-links a::after,
body.vx-member-experience .nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--vx-ease);
}
body.vx-experience .nav-links a:hover::after,
body.vx-experience .nav-links a[aria-current="page"]::after,
body.vx-member-experience .nav-links a:hover::after,
body.vx-member-experience .nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
body.vx-experience .nav-links a:hover,
body.vx-experience .nav-links a[aria-current="page"],
body.vx-member-experience .nav-links a:hover,
body.vx-member-experience .nav-links a[aria-current="page"] {
  color: var(--vx-ink);
  background: transparent;
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   Buttons and interaction language
   -------------------------------------------------------------------------- */
body.vx-experience .btn,
body.vx-member-experience .btn {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  border-radius: 999px;
  transition: transform .3s var(--vx-ease), box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
body.vx-experience .btn::before,
body.vx-member-experience .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-105%);
  transition: transform .45s var(--vx-ease);
  pointer-events: none;
}
body.vx-experience .btn:hover,
body.vx-member-experience .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18,30,25,.12);
}
body.vx-experience .btn:hover::before,
body.vx-member-experience .btn:hover::before { transform: translateX(105%); }
body.vx-experience .btn-primary,
body.vx-member-experience .btn-primary {
  border-color: var(--vx-green);
  background: var(--vx-green);
  color: #fff;
}
body.vx-experience .btn-secondary,
body.vx-member-experience .btn-secondary {
  border-color: var(--vx-line);
  background: rgba(255,255,255,.72);
  color: var(--vx-ink);
}

/* --------------------------------------------------------------------------
   Reveal / page motion
   -------------------------------------------------------------------------- */
.vx-motion-ready [data-vx-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .78s var(--vx-ease-soft) var(--vx-reveal-delay, 0ms),
    transform .78s var(--vx-ease-soft) var(--vx-reveal-delay, 0ms);
  will-change: transform, opacity;
}
.vx-motion-ready [data-vx-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0,0,0);
}
.vx-motion-ready [data-vx-reveal="clip"] {
  clip-path: inset(0 0 22% 0 round 18px);
  transform: translate3d(0, 34px, 0) scale(.985);
  transition:
    opacity .92s var(--vx-ease-soft) var(--vx-reveal-delay, 0ms),
    transform .92s var(--vx-ease-soft) var(--vx-reveal-delay, 0ms),
    clip-path .92s var(--vx-ease-soft) var(--vx-reveal-delay, 0ms);
}
.vx-motion-ready [data-vx-reveal="clip"].is-visible {
  clip-path: inset(0 0 0 0 round 18px);
  transform: translate3d(0,0,0) scale(1);
}
html.vx-page-enter body { animation: vxPageIn .52s var(--vx-ease-soft) both; }
@keyframes vxPageIn { from { opacity: .001; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   Home — cinematic editorial composition
   -------------------------------------------------------------------------- */
body.vx-home { --container: 1240px; }
.vx-home-main { overflow: clip; }
.vx-home-hero {
  position: relative;
  min-height: min(860px, calc(100svh - 72px));
  display: grid;
  align-items: center;
  padding: clamp(56px, 7vw, 100px) 0 clamp(70px, 8vw, 120px);
}
.vx-home-hero::before {
  content: "";
  position: absolute;
  width: min(58vw, 840px);
  aspect-ratio: 1;
  right: -18vw;
  top: -12vw;
  border-radius: 50%;
  border: 1px solid rgba(23,63,53,.09);
  box-shadow:
    0 0 0 76px rgba(23,63,53,.024),
    0 0 0 152px rgba(23,63,53,.018),
    0 0 0 228px rgba(23,63,53,.012);
  pointer-events: none;
}
.vx-home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(520px,1.12fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}
.vx-hero-copy { max-width: 690px; }
.vx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--vx-green);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .095em;
  text-transform: uppercase;
}
.vx-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(23,63,53,.09);
}
.vx-hero-title {
  max-width: 10.8ch;
  margin: 0;
  color: var(--vx-ink);
  font: 600 clamp(4rem, 7.25vw, 7.35rem)/.88 var(--font-display);
  letter-spacing: -.062em;
}
.vx-hero-title em {
  display: block;
  color: var(--vx-green);
  font-style: normal;
}
.vx-hero-subtitle {
  max-width: 49ch;
  margin: 28px 0 0;
  color: #5b625e;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}
.vx-hero-rolling {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-height: 34px;
  margin-top: 22px;
  color: var(--vx-ink-soft);
  font-size: .98rem;
  font-weight: 650;
}
.vx-rolling-window {
  position: relative;
  display: inline-grid;
  min-width: 190px;
  color: var(--vx-green);
  overflow: hidden;
  vertical-align: bottom;
}
.vx-rolling-window > span {
  grid-area: 1/1;
  transform: translateY(0);
  opacity: 1;
  transition: transform .46s var(--vx-ease), opacity .3s ease;
}
.vx-rolling-window > span.is-leaving { transform: translateY(-110%); opacity: 0; }
.vx-rolling-window > span.is-entering { transform: translateY(110%); opacity: 0; }
.vx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.vx-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--vx-line);
}
.vx-hero-metric { display: grid; gap: 2px; }
.vx-hero-metric strong { font-size: 1.06rem; letter-spacing: -.03em; }
.vx-hero-metric span { color: #777d79; font-size: .74rem; }

.vx-product-stage {
  position: relative;
  min-height: 540px;
  perspective: 1300px;
}
.vx-product-glow {
  position: absolute;
  inset: 12% 5% 2% 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,63,53,.14), rgba(95,89,141,.05) 42%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}
.vx-product-frame {
  position: absolute;
  inset: 7% 0 auto 0;
  overflow: hidden;
  border: 1px solid rgba(16,21,18,.14);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--vx-shadow-lg);
  transform: rotateX(var(--vx-tilt-x, 0deg)) rotateY(var(--vx-tilt-y, 0deg)) translate3d(0, var(--vx-parallax-y, 0px), 0);
  transform-origin: center;
  transition: transform .22s ease-out;
}
.vx-product-frame::before {
  content: "";
  display: block;
  height: 36px;
  border-bottom: 1px solid rgba(16,21,18,.08);
  background:
    radial-gradient(circle at 18px 18px, #d8d5cc 0 3px, transparent 3.5px),
    radial-gradient(circle at 32px 18px, #d8d5cc 0 3px, transparent 3.5px),
    radial-gradient(circle at 46px 18px, #d8d5cc 0 3px, transparent 3.5px),
    #f7f6f2;
}
.vx-product-frame img { width: 100%; height: auto; }
.vx-float-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 1px;
  min-width: 144px;
  padding: 13px 15px;
  border: 1px solid rgba(16,21,18,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--vx-shadow-md);
  animation: vxFloat 5.5s ease-in-out infinite;
}
.vx-float-note strong { color: var(--vx-ink); font-size: .82rem; }
.vx-float-note span { color: #7b817d; font-size: .68rem; }
.vx-float-note--a { top: 1%; right: 4%; animation-delay: -.8s; }
.vx-float-note--b { bottom: 3%; left: -3%; animation-delay: -2.7s; }
@keyframes vxFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.vx-campus {
  padding: 20px 0 80px;
}
.vx-campus-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--vx-line);
  border-bottom: 1px solid var(--vx-line);
}
.vx-campus-copy {
  color: #777d79;
  font-size: .78rem;
  line-height: 1.5;
}
.vx-campus-copy strong { display: block; color: var(--vx-ink); font-size: .88rem; }
.vx-campus-logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(36px, 6vw, 82px);
}
.vx-campus-logo {
  display: flex;
  align-items: center;
  min-height: 60px;
  opacity: .66;
  filter: grayscale(1);
  transition: opacity .3s ease, transform .3s var(--vx-ease);
}
.vx-campus-logo:hover { opacity: 1; transform: translateY(-2px); }
.vx-campus-logo img { object-fit: contain; max-height: 48px; width: auto; }
.vx-campus-logo--arts img { max-width: 260px; }
.vx-campus-logo--dauphine img { max-width: 240px; }

.vx-manifesto {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 170px) 0;
  color: #fff;
  background: #111713;
}
.vx-manifesto::after {
  content: "";
  position: absolute;
  width: 58vw;
  height: 58vw;
  right: -22vw;
  bottom: -36vw;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.015);
}
.vx-manifesto-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 48px;
  align-items: start;
}
.vx-manifesto-label {
  color: rgba(255,255,255,.48);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vx-manifesto h2 {
  max-width: 12ch;
  margin: 0;
  font: 560 clamp(3.2rem, 6.2vw, 6.5rem)/.94 var(--font-display);
  letter-spacing: -.055em;
}
.vx-manifesto h2 span { color: #90b5a8; }
.vx-manifesto p {
  max-width: 46ch;
  margin: 34px 0 0;
  color: rgba(255,255,255,.64);
  font-size: 1rem;
  line-height: 1.7;
}

.vx-story { padding: clamp(80px, 10vw, 140px) 0; }
.vx-story-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.vx-story-head h2 {
  max-width: 10ch;
  margin: 0;
  font: 600 clamp(3rem, 5vw, 5.2rem)/.92 var(--font-display);
  letter-spacing: -.055em;
}
.vx-story-head p {
  max-width: 43ch;
  justify-self: end;
  margin: 0 0 6px;
  color: #69706c;
  line-height: 1.65;
}
.vx-story-list { display: grid; gap: clamp(84px, 11vw, 150px); }
.vx-story-item {
  display: grid;
  grid-template-columns: minmax(280px,.68fr) minmax(0,1.32fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}
.vx-story-item:nth-child(even) { grid-template-columns: minmax(0,1.32fr) minmax(280px,.68fr); }
.vx-story-item:nth-child(even) .vx-story-copy { order: 2; }
.vx-story-item:nth-child(even) .vx-story-visual { order: 1; }
.vx-story-index {
  display: block;
  margin-bottom: 22px;
  color: #989d99;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.vx-story-copy h3 {
  max-width: 7ch;
  margin: 0;
  font: 600 clamp(2.6rem, 4.8vw, 4.9rem)/.92 var(--font-display);
  letter-spacing: -.052em;
}
.vx-story-copy p {
  max-width: 31ch;
  margin: 22px 0 0;
  color: #626965;
  font-size: .98rem;
  line-height: 1.65;
}
.vx-story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--vx-green);
  font-size: .84rem;
  font-weight: 750;
}
.vx-story-link::after { content: "→"; transition: transform .25s var(--vx-ease); }
.vx-story-link:hover::after { transform: translateX(6px); }
.vx-story-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(16,21,18,.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--vx-shadow-md);
}
.vx-story-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: top center;
  transform: translate3d(0, var(--vx-parallax-y,0), 0) scale(1.012);
}
.vx-story-visual--course { background: #f8f8f6; }
.vx-story-visual--brain { background: #f6e9ed; }
.vx-story-visual--library { background: #f2f1ed; }

.vx-universes {
  padding: 0 0 clamp(88px, 10vw, 140px);
}
.vx-universes-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 26px;
}
.vx-universes-head h2 {
  max-width: 10ch;
  margin: 0;
  font: 600 clamp(2.8rem, 4.8vw, 5rem)/.93 var(--font-display);
  letter-spacing: -.052em;
}
.vx-universes-head p { max-width: 32ch; margin: 0 0 8px; color: #6c726e; }
.vx-universe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--vx-shadow-md);
}
.vx-universe {
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 4.3vw, 58px);
  color: #fff;
}
.vx-universe::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -26%;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(255,255,255,.035), 0 0 0 104px rgba(255,255,255,.02);
}
.vx-universe--corporate { background: #163d33; }
.vx-universe--market { background: #55517f; }
.vx-universe-top { position: relative; z-index: 2; }
.vx-universe-number { color: rgba(255,255,255,.5); font-size: .74rem; letter-spacing: .1em; }
.vx-universe h3 {
  max-width: 6ch;
  margin: 24px 0 0;
  font: 600 clamp(3.1rem, 5vw, 5.6rem)/.87 var(--font-display);
  letter-spacing: -.06em;
}
.vx-universe-bottom { position: relative; z-index: 2; display: grid; gap: 22px; }
.vx-universe-topics { display: flex; flex-wrap: wrap; gap: 7px; }
.vx-universe-topics span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.8);
  font-size: .72rem;
}
.vx-universe-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #fff;
  font-weight: 750;
}
.vx-universe-link::after { content: "↗"; transition: transform .25s var(--vx-ease); }
.vx-universe-link:hover::after { transform: translate(4px,-4px); }

.vx-progress-showcase { padding: 0 0 clamp(95px, 12vw, 160px); }
.vx-progress-card {
  position: relative;
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 5.2vw, 70px);
  border-radius: 32px;
  color: #fff;
  background: #161d19;
}
.vx-progress-copy { position: relative; z-index: 2; }
.vx-progress-copy h2 {
  max-width: 8ch;
  margin: 0;
  font: 600 clamp(2.8rem, 4.6vw, 4.8rem)/.94 var(--font-display);
  letter-spacing: -.052em;
}
.vx-progress-copy p { max-width: 33ch; margin: 22px 0 0; color: rgba(255,255,255,.62); line-height: 1.65; }
.vx-progress-copy .vx-story-link { color: #a6c8bb; }
.vx-progress-screen {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 32px 70px rgba(0,0,0,.28);
  transform: rotate(-1.5deg) translate3d(0,var(--vx-parallax-y,0),0);
}
.vx-progress-screen img { width: 100%; }

.vx-final-cta {
  padding: clamp(88px, 11vw, 150px) 0;
  border-top: 1px solid var(--vx-line);
}
.vx-final-inner { display: grid; grid-template-columns: 1.4fr .6fr; gap: 60px; align-items: end; }
.vx-final-cta h2 {
  max-width: 13ch;
  margin: 0;
  font: 600 clamp(3.4rem, 6vw, 6.4rem)/.91 var(--font-display);
  letter-spacing: -.06em;
}
.vx-final-cta h2 span { color: var(--vx-green); }
.vx-final-actions { display: grid; gap: 10px; justify-items: start; }
.vx-final-actions p { margin: 0 0 12px; color: #707672; font-size: .86rem; }

/* --------------------------------------------------------------------------
   Editorial track pages: Corporate / Market
   -------------------------------------------------------------------------- */
body.vx-track-experience .premium-hero-section { padding: clamp(48px,7vw,92px) 0 clamp(70px,8vw,110px); }
body.vx-track-experience .premium-hero-shell {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(40px,6vw,86px);
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body.vx-track-experience .premium-hero-copy { padding: 0; }
body.vx-track-experience .premium-hero-copy h1 {
  max-width: 10ch;
  margin: 14px 0 0;
  font: 600 clamp(3.5rem,6vw,6.5rem)/.9 var(--font-display);
  letter-spacing: -.058em;
}
body.vx-track-experience .premium-hero-copy p { max-width: 34ch; margin-top: 23px; color: #616864; font-size: 1rem; }
body.vx-track-experience .premium-hero-media {
  overflow: hidden;
  min-height: 0;
  border: 1px solid var(--vx-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--vx-shadow-lg);
  transform: rotate(1.1deg) translate3d(0,var(--vx-parallax-y,0),0);
}
body.vx-track-experience .premium-hero-media img { width: 100%; height: auto; object-fit: cover; object-position: top center; }
body.vx-track-experience .track-numbers {
  margin-top: 34px;
  padding: 20px 0 0;
  border-top: 1px solid var(--vx-line);
  background: transparent;
}
body.vx-track-experience .track-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border-top: 1px solid var(--vx-line);
  border-bottom: 1px solid var(--vx-line);
}
body.vx-track-experience .track-pillar {
  min-height: 280px;
  padding: 30px 26px;
  border: 0;
  border-right: 1px solid var(--vx-line);
  border-radius: 0;
  background: transparent;
}
body.vx-track-experience .track-pillar:last-child { border-right: 0; }
body.vx-track-experience .track-pillar > span { color: #9ba09d; }
body.vx-track-experience .track-pillar h2 { margin-top: 86px; font-size: 2rem; }
body.vx-track-experience .compact-cta {
  padding: clamp(34px,4vw,54px);
  border: 0;
  border-radius: 24px;
  color: #fff;
  background: var(--vx-ink);
}
body.vx-track-experience .compact-cta p { color: rgba(255,255,255,.58); }

/* --------------------------------------------------------------------------
   Catalogue / guides / pricing / about: reduce cardiness, increase rhythm
   -------------------------------------------------------------------------- */
body.vx-experience .page-hero:not(.profile-hero-v2),
body.vx-experience .premium-hero-copy {
  animation: none;
}
body.vx-experience .page-hero:not(.profile-hero-v2) {
  padding-top: clamp(48px,7vw,88px);
  padding-bottom: clamp(34px,5vw,64px);
}
body.vx-experience .page-hero:not(.profile-hero-v2) h1 {
  max-width: 14ch;
  font: 600 clamp(3rem,5.6vw,5.7rem)/.92 var(--font-display);
  letter-spacing: -.055em;
}
body.vx-experience .page-hero:not(.profile-hero-v2) p { max-width: 52ch; color: #626965; }

body.catalogue-page.vx-experience .toolbar {
  position: sticky;
  top: 84px;
  z-index: 20;
  padding: 12px;
  border: 1px solid var(--vx-line);
  border-radius: 18px;
  background: #f8f7f3;
  box-shadow: 0 12px 32px rgba(22,31,26,.055);
}
body.catalogue-page.vx-experience .course-row,
body.vx-member-experience .course-card {
  transition: transform .34s var(--vx-ease), box-shadow .34s ease, border-color .34s ease;
}
body.catalogue-page.vx-experience .course-row:hover,
body.vx-member-experience .course-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23,63,53,.24);
  box-shadow: 0 18px 44px rgba(21,31,26,.09);
}
body.guides-page.vx-experience .guide-card-compact {
  min-height: 220px;
  border-radius: 20px;
  transition: transform .35s var(--vx-ease), box-shadow .35s ease;
}
body.guides-page.vx-experience .guide-card-compact:hover { transform: translateY(-5px); box-shadow: var(--vx-shadow-md); }
body.pricing-page.vx-experience .pricing-grid { gap: 18px; }
body.pricing-page.vx-experience .pricing-card {
  min-height: 530px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px,4vw,48px);
  border-radius: 26px;
  box-shadow: none;
}
body.pricing-page.vx-experience .pricing-card-featured { border-color: rgba(23,63,53,.36); background: #f8faf8; }
body.pricing-page.vx-experience .pricing-card .btn { margin-top: auto; }
body.pricing-page.vx-experience .pricing-amount { font-size: clamp(3rem,5vw,4.7rem); }

/* --------------------------------------------------------------------------
   Member experience
   -------------------------------------------------------------------------- */
body.vx-member-experience { --container: 1220px; }
body.vx-member-experience .environment-bar {
  position: sticky;
  top: 72px;
  z-index: 40;
  border-bottom: 1px solid var(--vx-line);
  background: rgba(244,243,239,.995);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
body.vx-member-experience .environment-bar-inner { min-height: 54px; }
body.vx-member-experience .environment-subnav-link {
  border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}
body.vx-member-experience .page { padding-top: 0; }
body.vx-member-experience .page-hero {
  padding-top: clamp(42px,6vw,74px);
  padding-bottom: clamp(30px,4vw,50px);
}
body.vx-member-experience .page-hero h1 {
  max-width: 15ch;
  font: 600 clamp(2.6rem,5vw,5rem)/.94 var(--font-display);
  letter-spacing: -.05em;
}
body.vx-member-experience .page-hero p { max-width: 55ch; color: #656c68; }

/* Dashboard becomes a clean resume surface rather than a card wall. */
body.member-dashboard-page.vx-member-experience .member-dashboard { padding-bottom: 90px; }
body.member-dashboard-page.vx-member-experience .member-dashboard-hero {
  margin-top: 0;
  padding: clamp(54px,7vw,90px) 0 34px;
  border: 0;
  border-radius: 0;
  color: var(--vx-ink);
  background: transparent;
  box-shadow: none;
}
body.member-dashboard-page.vx-member-experience .member-dashboard-hero .eyebrow,
body.member-dashboard-page.vx-member-experience .member-dashboard-hero p { color: #777d79; }
body.member-dashboard-page.vx-member-experience .member-dashboard-hero h1 {
  color: var(--vx-ink);
  font: 600 clamp(3.2rem,5.8vw,5.8rem)/.92 var(--font-display);
  letter-spacing: -.055em;
}
body.member-dashboard-page.vx-member-experience .dashboard-summary-grid {
  grid-template-columns: 1.35fr .65fr;
  gap: 12px;
  margin-top: 0;
}
body.member-dashboard-page.vx-member-experience .dashboard-summary-card,
body.member-dashboard-page.vx-member-experience .dashboard-path-card,
body.member-dashboard-page.vx-member-experience .dashboard-quick-card {
  border: 1px solid var(--vx-line);
  border-radius: 22px;
  box-shadow: none;
}
body.member-dashboard-page.vx-member-experience .dashboard-summary-card { min-height: 190px; padding: 24px; }
body.member-dashboard-page.vx-member-experience .dashboard-path-section { padding-top: 72px; }
body.member-dashboard-page.vx-member-experience .dashboard-section-heading h2 {
  max-width: 14ch;
  font: 600 clamp(2.8rem,4.5vw,4.6rem)/.94 var(--font-display);
  letter-spacing: -.05em;
}
body.member-dashboard-page.vx-member-experience .dashboard-path-grid { gap: 14px; }
body.member-dashboard-page.vx-member-experience .dashboard-path-card {
  min-height: 360px;
  padding: 28px;
  transition: transform .38s var(--vx-ease), box-shadow .38s ease;
}
body.member-dashboard-page.vx-member-experience .dashboard-path-card:hover { transform: translateY(-6px); box-shadow: var(--vx-shadow-md); }
body.member-dashboard-page.vx-member-experience .dashboard-path-copy h3 { font-size: clamp(1.8rem,2.4vw,2.55rem); letter-spacing: -.04em; }
body.member-dashboard-page.vx-member-experience .dashboard-quick-grid { gap: 14px; margin-top: 14px; }
body.member-dashboard-page.vx-member-experience .dashboard-quick-card { min-height: 170px; padding: 28px; }

/* Course libraries */
body.vx-member-experience .course-standards { display: none; }
body.vx-member-experience .toolbar {
  position: sticky;
  top: 138px;
  z-index: 30;
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid var(--vx-line);
  border-radius: 18px;
  background: #f7f6f2;
  box-shadow: 0 12px 30px rgba(21,31,26,.045);
}
body.vx-member-experience .course-card {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: none;
}
body.vx-member-experience .course-cover { min-height: 168px; }
body.vx-member-experience .course-body { padding: 20px; }
body.vx-member-experience .course-body > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Course reader */
body.vx-course-page { --vx-reading-progress: 0%; }
body.vx-course-page::after {
  content: "";
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: var(--vx-reading-progress);
  height: 3px;
  background: var(--accent, var(--vx-green));
  pointer-events: none;
}
body.vx-member-experience .content-layout { gap: 30px; align-items: start; }
body.vx-member-experience .sidebar {
  position: sticky;
  top: 155px;
  max-height: calc(100vh - 178px);
  overflow: auto;
  border-radius: 20px;
  box-shadow: none;
}
body.vx-member-experience .lesson {
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
body.vx-member-experience .lesson > section[data-course-section] {
  padding-top: 28px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--vx-line);
}
body.vx-member-experience .lesson > section[data-course-section] h2 {
  font-size: clamp(1.7rem,2.4vw,2.25rem);
  letter-spacing: -.035em;
}
body.vx-member-experience .formula {
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}
body.vx-member-experience .worked-example,
body.vx-member-experience .detail-callout,
body.vx-member-experience .note {
  border-radius: 16px;
}

/* Brain Teaser */
body.brain-theme-bordeaux.vx-member-experience {
  background: linear-gradient(180deg,#f6f3f2 0,#fbf9f8 38%,#f5edef 100%);
}
body.brain-theme-bordeaux.vx-member-experience .page-hero {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 40px;
  align-items: center;
  min-height: 430px;
}
body.brain-theme-bordeaux.vx-member-experience .brain-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem,6vw,6.5rem);
}
body.brain-theme-bordeaux.vx-member-experience .brain-hero-visual { max-width: 390px; justify-self: end; }
body.brain-theme-bordeaux.vx-member-experience .brain-teaser-card,
body.brain-theme-bordeaux.vx-member-experience .brain-stat-card {
  border-radius: 22px;
  box-shadow: none;
}

/* Profile */
body.profile-progress-page.vx-member-experience .profile-hero-v2 {
  margin-top: 0;
  padding: clamp(50px,7vw,84px) 0 34px;
  border-radius: 0;
  color: var(--vx-ink);
  background: transparent;
  box-shadow: none;
}
body.profile-progress-page.vx-member-experience .profile-hero-v2 h1 { color: var(--vx-ink); }
body.profile-progress-page.vx-member-experience .profile-hero-v2 .eyebrow,
body.profile-progress-page.vx-member-experience .profile-hero-v2 p { color: #777d79; }
body.profile-progress-page.vx-member-experience .profile-identity-card,
body.profile-progress-page.vx-member-experience .profile-track-card,
body.profile-progress-page.vx-member-experience .profile-weekly-card,
body.profile-progress-page.vx-member-experience .profile-favorites-card,
body.profile-progress-page.vx-member-experience .profile-activity-card { border-radius: 20px; box-shadow: none; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
body.vx-experience .footer,
body.vx-member-experience .footer {
  padding: 40px 0 44px;
  border-top: 1px solid var(--vx-line);
  background: transparent;
}
body.vx-experience .footer-inner,
body.vx-member-experience .footer-inner { gap: 26px; }
body.vx-experience .footer-links a,
body.vx-member-experience .footer-links a { color: #747a76; font-size: .76rem; }
body.vx-experience .footer-links a:hover,
body.vx-member-experience .footer-links a:hover { color: var(--vx-ink); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1050px) {
  .vx-home-hero-grid { grid-template-columns: 1fr; }
  .vx-product-stage { min-height: min(68vw,650px); }
  .vx-product-frame { inset: 2% 5% auto 5%; }
  .vx-float-note--b { left: 2%; }
  .vx-story-item,
  .vx-story-item:nth-child(even) { grid-template-columns: .72fr 1.28fr; }
  .vx-progress-card { grid-template-columns: 1fr; }
  .vx-progress-copy h2 { max-width: 11ch; }
  body.vx-track-experience .premium-hero-shell { grid-template-columns: 1fr; }
  body.vx-track-experience .premium-hero-copy h1 { max-width: 13ch; }
}

@media (max-width: 980px) {
  body.vx-experience .topbar,
  body.vx-member-experience .topbar { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  body.vx-experience .nav-links,
  body.vx-member-experience .nav-links {
    border: 1px solid var(--vx-line) !important;
    background: #fff !important;
    box-shadow: 0 22px 54px rgba(18,30,25,.16) !important;
  }
  body.vx-experience .nav-links a::after,
  body.vx-member-experience .nav-links a::after { display: none; }
  body.vx-member-experience .environment-bar { top: 64px; }
  body.vx-member-experience .toolbar { top: 130px; }
}

@media (max-width: 760px) {
  body.vx-experience .container,
  body.vx-member-experience .container { width: min(calc(100% - 28px), var(--container)); }
  .vx-home-hero { min-height: auto; padding: 52px 0 64px; }
  .vx-home-hero::before { width: 100vw; right: -62vw; top: -18vw; }
  .vx-home-hero-grid { gap: 40px; }
  .vx-kicker { margin-bottom: 18px; font-size: .68rem; }
  .vx-hero-title { max-width: 10.5ch; font-size: clamp(3.15rem,15vw,4.7rem); }
  .vx-hero-subtitle { margin-top: 20px; font-size: .94rem; line-height: 1.55; }
  .vx-hero-rolling { margin-top: 17px; font-size: .88rem; }
  .vx-rolling-window { min-width: 166px; }
  .vx-hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 26px; }
  .vx-hero-actions .btn { width: 100%; }
  .vx-hero-metrics { gap: 14px; justify-content: space-between; margin-top: 24px; padding-top: 18px; }
  .vx-hero-metric span { font-size: .66rem; }
  .vx-product-stage { min-height: 300px; perspective: none; }
  .vx-product-frame { inset: 0; border-radius: 16px; transform: none !important; }
  .vx-product-frame::before { height: 28px; background:
    radial-gradient(circle at 14px 14px,#d8d5cc 0 2.5px,transparent 3px),
    radial-gradient(circle at 26px 14px,#d8d5cc 0 2.5px,transparent 3px),
    radial-gradient(circle at 38px 14px,#d8d5cc 0 2.5px,transparent 3px),#f7f6f2; }
  .vx-float-note { display: none; }
  .vx-campus { padding: 10px 0 62px; }
  .vx-campus-inner { grid-template-columns: 1fr; gap: 24px; padding: 22px 0; }
  .vx-campus-logos { justify-content: flex-start; gap: 28px; }
  .vx-campus-logo--arts img { max-width: 180px; }
  .vx-campus-logo--dauphine img { max-width: 155px; }
  .vx-manifesto { padding: 78px 0 84px; }
  .vx-manifesto-grid { grid-template-columns: 1fr; gap: 25px; }
  .vx-manifesto h2 { max-width: 11ch; font-size: clamp(3rem,14vw,4.55rem); }
  .vx-manifesto p { margin-top: 23px; font-size: .9rem; }
  .vx-story { padding: 70px 0 84px; }
  .vx-story-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 54px; }
  .vx-story-head h2 { font-size: clamp(2.9rem,13vw,4.3rem); }
  .vx-story-head p { justify-self: start; font-size: .88rem; }
  .vx-story-list { gap: 68px; }
  .vx-story-item,
  .vx-story-item:nth-child(even) { grid-template-columns: 1fr; gap: 26px; }
  .vx-story-item:nth-child(even) .vx-story-copy,
  .vx-story-item:nth-child(even) .vx-story-visual { order: initial; }
  .vx-story-copy h3 { font-size: clamp(2.65rem,12vw,4rem); }
  .vx-story-copy p { font-size: .9rem; }
  .vx-story-visual { min-height: 0; border-radius: 18px; }
  .vx-story-visual img { min-height: 0; height: auto; transform: none !important; }
  .vx-universes { padding-bottom: 78px; }
  .vx-universes-head { display: grid; gap: 14px; }
  .vx-universes-head h2 { font-size: clamp(2.8rem,13vw,4.1rem); }
  .vx-universe-grid { grid-template-columns: 1fr; border-radius: 20px; }
  .vx-universe { min-height: 390px; padding: 28px 22px; }
  .vx-universe h3 { font-size: clamp(3.3rem,16vw,4.8rem); }
  .vx-progress-showcase { padding-bottom: 84px; }
  .vx-progress-card { grid-template-columns: 1fr; gap: 34px; padding: 28px 20px; border-radius: 20px; }
  .vx-progress-copy h2 { font-size: clamp(2.65rem,12vw,4rem); }
  .vx-progress-screen { transform: none !important; border-radius: 14px; }
  .vx-final-cta { padding: 78px 0 90px; }
  .vx-final-inner { grid-template-columns: 1fr; gap: 34px; }
  .vx-final-cta h2 { font-size: clamp(3rem,13.5vw,4.6rem); }
  .vx-final-actions .btn { width: 100%; }

  body.vx-track-experience .premium-hero-section { padding: 42px 0 62px; }
  body.vx-track-experience .premium-hero-shell { grid-template-columns: 1fr; gap: 28px; }
  body.vx-track-experience .premium-hero-copy h1 { font-size: clamp(3rem,13vw,4.4rem); }
  body.vx-track-experience .premium-hero-media { border-radius: 18px; transform: none !important; }
  body.vx-track-experience .track-pillar-grid { grid-template-columns: 1fr 1fr; }
  body.vx-track-experience .track-pillar { min-height: 210px; padding: 22px 18px; border-bottom: 1px solid var(--vx-line); }
  body.vx-track-experience .track-pillar:nth-child(2) { border-right: 0; }
  body.vx-track-experience .track-pillar h2 { margin-top: 48px; font-size: 1.55rem; }
  body.vx-track-experience .compact-cta { display: grid; gap: 20px; border-radius: 18px; }

  body.vx-experience .page-hero:not(.profile-hero-v2) { padding-top: 42px; }
  body.vx-experience .page-hero:not(.profile-hero-v2) h1 { font-size: clamp(2.8rem,13vw,4.4rem); }
  body.catalogue-page.vx-experience .toolbar { position: static; }
  body.pricing-page.vx-experience .pricing-card { min-height: 0; }

  body.vx-member-experience .environment-bar { position: static; }
  body.vx-member-experience .environment-switch-link { display: none; }
  body.vx-member-experience .toolbar { position: static; }
  body.member-dashboard-page.vx-member-experience .member-dashboard-hero { padding: 44px 0 26px; }
  body.member-dashboard-page.vx-member-experience .member-dashboard-hero h1 { font-size: clamp(3rem,13vw,4.5rem); }
  body.member-dashboard-page.vx-member-experience .dashboard-summary-grid { grid-template-columns: 1fr; }
  body.member-dashboard-page.vx-member-experience .dashboard-path-section { padding-top: 54px; }
  body.member-dashboard-page.vx-member-experience .dashboard-section-heading h2 { font-size: clamp(2.7rem,12vw,4rem); }
  body.member-dashboard-page.vx-member-experience .dashboard-path-grid { grid-template-columns: 1fr; }
  body.member-dashboard-page.vx-member-experience .dashboard-path-card { min-height: 310px; padding: 22px; }
  body.member-dashboard-page.vx-member-experience .dashboard-quick-grid { grid-template-columns: 1fr; }
  body.vx-member-experience .grid-3 { grid-template-columns: 1fr; }
  body.vx-member-experience .content-layout { grid-template-columns: 1fr; }
  body.vx-member-experience .sidebar { position: static; max-height: none; }
  body.vx-member-experience .sidebar .sidebar-title { margin-bottom: 10px; }
  body.vx-member-experience .sidebar a { display: inline-flex; width: auto; margin: 3px 4px 3px 0; padding: 8px 10px; border: 1px solid var(--vx-line); border-radius: 999px; font-size: .73rem; }
  body.brain-theme-bordeaux.vx-member-experience .page-hero { grid-template-columns: 1fr; min-height: 0; }
  body.brain-theme-bordeaux.vx-member-experience .brain-hero-copy h1 { font-size: clamp(3rem,13vw,4.5rem); }
  body.brain-theme-bordeaux.vx-member-experience .brain-hero-visual { max-width: 280px; justify-self: center; }
  body.profile-progress-page.vx-member-experience .profile-hero-v2 { padding: 42px 0 24px; }
}

@media (max-width: 430px) {
  .vx-campus-logos { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
  .vx-campus-logo--arts img { max-width: 145px; }
  .vx-campus-logo--dauphine img { max-width: 125px; }
  body.vx-track-experience .track-pillar-grid { grid-template-columns: 1fr; }
  body.vx-track-experience .track-pillar { min-height: 170px; border-right: 0; }
  body.vx-track-experience .track-pillar h2 { margin-top: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-vx-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .vx-product-frame, .vx-story-visual img, .vx-progress-screen { transform: none !important; }
}

/* Member dashboard editorial reflow */
body.member-dashboard-page.vx-member-experience .vx-member-intro {
  padding-top: clamp(56px,7vw,92px);
  padding-bottom: 30px;
}
body.member-dashboard-page.vx-member-experience .vx-member-intro > .eyebrow { color: var(--vx-green); }
body.member-dashboard-page.vx-member-experience .vx-member-intro-grid {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(360px,.65fr);
  gap: 54px;
  align-items: end;
  margin-top: 12px;
}
body.member-dashboard-page.vx-member-experience .vx-member-intro h1 {
  max-width: 12ch;
  margin: 0;
  font: 600 clamp(3.6rem,6vw,6.3rem)/.9 var(--font-display);
  letter-spacing: -.058em;
}
body.member-dashboard-page.vx-member-experience .vx-member-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--vx-line);
  border-left: 1px solid var(--vx-line);
}
body.member-dashboard-page.vx-member-experience .vx-member-stats > div {
  display: grid;
  gap: 2px;
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid var(--vx-line);
  border-bottom: 1px solid var(--vx-line);
}
body.member-dashboard-page.vx-member-experience .vx-member-stats strong { font-size: 1.42rem; letter-spacing: -.04em; }
body.member-dashboard-page.vx-member-experience .vx-member-stats span { color: #767c78; font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }
body.member-dashboard-page.vx-member-experience .vx-member-progress-line {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 22px;
  align-items: end;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--vx-line);
}
body.member-dashboard-page.vx-member-experience .vx-member-progress-main { display: grid; grid-template-columns: 1fr auto; gap: 12px 18px; align-items: center; }
body.member-dashboard-page.vx-member-experience .vx-member-progress-main .progress { grid-column: 1 / -1; }
body.member-dashboard-page.vx-member-experience .vx-member-progress-main > span { color: #767c78; font-size: .76rem; }
body.member-dashboard-page.vx-member-experience .vx-member-week {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  align-items: center;
}
body.member-dashboard-page.vx-member-experience .vx-member-week > span { color: #767c78; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
body.member-dashboard-page.vx-member-experience .vx-member-week strong { font-size: 1.05rem; }
body.member-dashboard-page.vx-member-experience .vx-member-week .progress { grid-column: 1 / -1; }
body.member-dashboard-page.vx-member-experience .vx-member-week a { grid-column: 1 / -1; width: fit-content; color: var(--vx-gold); font-size: .76rem; font-weight: 750; }
body.member-dashboard-page.vx-member-experience .dashboard-path-section { padding-top: 44px; }
body.member-dashboard-page.vx-member-experience .dashboard-path-card {
  min-height: 390px;
  padding: 30px;
  border-top-width: 1px;
}
body.member-dashboard-page.vx-member-experience .dashboard-accent-corporate { border-top: 1px solid rgba(23,63,53,.28); }
body.member-dashboard-page.vx-member-experience .dashboard-accent-market { border-top: 1px solid rgba(95,89,141,.28); }
body.member-dashboard-page.vx-member-experience .dashboard-path-top > strong { font-size: 1.35rem; }
body.member-dashboard-page.vx-member-experience .dashboard-path-copy { margin-top: auto; padding-top: 58px; }
body.member-dashboard-page.vx-member-experience .dashboard-path-copy > span { color: #747a76; font-size: .75rem; }
body.member-dashboard-page.vx-member-experience .dashboard-quick-grid { padding-bottom: 20px; }

@media (max-width: 900px) {
  body.member-dashboard-page.vx-member-experience .vx-member-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  body.member-dashboard-page.vx-member-experience .vx-member-progress-line { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body.member-dashboard-page.vx-member-experience .vx-member-intro { padding-top: 42px; }
  body.member-dashboard-page.vx-member-experience .vx-member-intro h1 { font-size: clamp(3rem,13.5vw,4.6rem); }
  body.member-dashboard-page.vx-member-experience .vx-member-stats { grid-template-columns: 1fr 1fr; }
  body.member-dashboard-page.vx-member-experience .vx-member-stats > div { min-height: 76px; padding: 13px; }
  body.member-dashboard-page.vx-member-experience .vx-member-progress-line { margin-top: 26px; }
  body.member-dashboard-page.vx-member-experience .dashboard-path-section { padding-top: 34px; }
  body.member-dashboard-page.vx-member-experience .dashboard-path-card { min-height: 330px; padding: 22px; }
  body.member-dashboard-page.vx-member-experience .dashboard-path-copy { padding-top: 42px; }
}
.vx-campus-copy small { display:block; margin-top:7px; color:#9a9f9b; font-size:.64rem; line-height:1.4; }
.vx-story-visual--brain img { object-fit: contain; padding: 10px; }

/* ========================================================================== 
   EXPERIENCE 2026 — layout calibration pass
   Fixes: hero typography, progress screenshot ratio, universe spacing.
   ========================================================================== */

/* Hero: keep the editorial scale without forcing individual words to break. */
@media (min-width: 1001px) {
  .vx-home-hero {
    min-height: min(780px, calc(100svh - 72px));
    padding-top: clamp(48px, 5.5vw, 76px);
    padding-bottom: clamp(64px, 7vw, 92px);
  }

  .vx-home-hero-grid {
    grid-template-columns: minmax(500px, .98fr) minmax(500px, 1.02fr);
    gap: clamp(42px, 5vw, 68px);
  }

  .vx-hero-copy {
    max-width: 600px;
    align-self: center;
  }

  .vx-hero-title {
    max-width: 12.4ch;
    font-size: clamp(3.7rem, 5.45vw, 5.55rem);
    line-height: .93;
    letter-spacing: -.057em;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
  }

  .vx-hero-title em {
    margin-top: .05em;
  }

  .vx-product-stage {
    min-height: 470px;
  }

  .vx-product-frame {
    inset: 9% 0 auto 0;
  }
}

/* Prevent the progression screenshot from ever being stretched by grid/flex
   inheritance. It keeps the exact 1271 / 701 source ratio. */
.vx-progress-screen {
  width: 100%;
  aspect-ratio: 1271 / 701;
  align-self: center;
}

.vx-progress-screen img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* The two universes must read as two deliberate objects, not a single split
   rectangle. */
.vx-universe-grid {
  gap: clamp(14px, 1.6vw, 22px);
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.vx-universe {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--vx-shadow-md);
}

@media (max-width: 1000px) and (min-width: 761px) {
  .vx-home-hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
    gap: 36px;
  }

  .vx-hero-title {
    max-width: 12ch;
    font-size: clamp(3.4rem, 6.8vw, 4.7rem);
    line-height: .94;
  }

  .vx-product-stage {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .vx-home-hero {
    padding: 42px 0 56px;
  }

  .vx-home-hero-grid {
    gap: 32px;
  }

  .vx-hero-title {
    max-width: 11.6ch;
    font-size: clamp(2.7rem, 12.2vw, 3.85rem);
    line-height: .94;
    letter-spacing: -.055em;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
  }

  .vx-product-stage {
    min-height: auto;
    aspect-ratio: 1271 / 760;
  }

  .vx-product-frame {
    position: relative;
    inset: auto;
  }

  .vx-universe-grid {
    gap: 12px;
  }

  .vx-universe {
    min-height: 350px;
    border-radius: 20px;
  }

  .vx-progress-card {
    gap: 26px;
  }

  .vx-progress-screen {
    aspect-ratio: 1271 / 701;
  }
}


/* ==========================================================================
   Brain Teaser precision pass — screenshot, hero and navigation
   ========================================================================== */

/* Public storytelling screenshot:
   the frame now follows the source screenshot ratio exactly. */
.vx-story-visual--brain {
  min-height: 0 !important;
  aspect-ratio: 1231 / 633 !important;
  align-self: center;
  padding: 0 !important;
  background: #f6e9ed;
}

.vx-story-visual--brain img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

/* Private Daily Challenge hero:
   text and illustration have independent, non-overlapping columns. */
body.brain-theme-bordeaux.vx-member-experience .page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px) !important;
  gap: clamp(38px, 5vw, 72px) !important;
  align-items: center !important;
  overflow: visible !important;
}

body.brain-theme-bordeaux.vx-member-experience .brain-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

body.brain-theme-bordeaux.vx-member-experience .brain-hero-copy h1,
body.brain-theme-bordeaux.vx-member-experience .page-hero h1 {
  width: auto !important;
  max-width: 10.5ch !important;
  margin-right: 0 !important;
  white-space: normal !important;
  text-wrap: balance;
  overflow-wrap: normal !important;
  word-break: normal !important;
  font-size: clamp(3.15rem, 5.1vw, 5.35rem) !important;
  line-height: .96 !important;
  letter-spacing: -.052em !important;
}

body.brain-theme-bordeaux.vx-member-experience .brain-hero-visual {
  position: relative;
  z-index: 1;
  width: 100% !important;
  max-width: 340px !important;
  aspect-ratio: 620 / 480;
  justify-self: end !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

body.brain-theme-bordeaux.vx-member-experience .brain-hero-visual img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  padding: clamp(14px, 2vw, 22px);
  object-fit: contain !important;
  object-position: center !important;
}

/* Brain Teaser identity: logo is bordeaux, never the generic green. */
body.brain-theme-bordeaux.vx-member-experience .topbar .brand {
  color: var(--brain-bordeaux) !important;
}

body.brain-theme-bordeaux.vx-member-experience .topbar .brand-mark {
  background: linear-gradient(
    135deg,
    var(--brain-red),
    var(--brain-bordeaux-dark)
  ) !important;
  box-shadow: none !important;
}

/* Active navigation: underline only. No red pill behind the label. */
body.brain-theme-bordeaux.vx-member-experience
  .nav-links
  a[href="brain-teaser.html"][aria-current="page"] {
  color: var(--brain-bordeaux) !important;
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.brain-theme-bordeaux.vx-member-experience
  .nav-links
  a[href="brain-teaser.html"][aria-current="page"]::after {
  height: 2px !important;
  background: var(--brain-bordeaux) !important;
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

/* Same rule on hover: keep the editorial underline language. */
body.brain-theme-bordeaux.vx-member-experience
  .nav-links
  a[href="brain-teaser.html"]:hover {
  color: var(--brain-bordeaux) !important;
  background: transparent !important;
}

/* Level selector keeps its own button language; only the top navigation loses
   the filled active state requested above. */
body.brain-theme-bordeaux.vx-member-experience .brain-level-buttons .active {
  color: #fff !important;
  border-color: var(--brain-bordeaux) !important;
  background: var(--brain-bordeaux) !important;
}

@media (max-width: 900px) {
  body.brain-theme-bordeaux.vx-member-experience .page-hero {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  body.brain-theme-bordeaux.vx-member-experience .brain-hero-copy h1,
  body.brain-theme-bordeaux.vx-member-experience .page-hero h1 {
    max-width: 12ch !important;
    font-size: clamp(2.75rem, 9vw, 4.6rem) !important;
  }

  body.brain-theme-bordeaux.vx-member-experience .brain-hero-visual {
    width: min(100%, 330px) !important;
    justify-self: start !important;
  }
}

@media (max-width: 640px) {
  .vx-story-visual--brain {
    width: 100%;
    border-radius: 18px;
  }

  body.brain-theme-bordeaux.vx-member-experience .page-hero {
    gap: 18px !important;
  }

  body.brain-theme-bordeaux.vx-member-experience .brain-hero-copy h1,
  body.brain-theme-bordeaux.vx-member-experience .page-hero h1 {
    max-width: 11ch !important;
    font-size: clamp(2.2rem, 11vw, 3.25rem) !important;
    line-height: .98 !important;
  }

  body.brain-theme-bordeaux.vx-member-experience .brain-hero-visual {
    width: min(82vw, 290px) !important;
    justify-self: center !important;
  }
}


/* ==========================================================================
   Desktop typography precision pass — prevent unwanted text cuts
   ========================================================================== */
@media (min-width: 761px) {
  .vx-universe h3 {
    max-width: 7.4ch !important;
    font-size: clamp(2.8rem, 4.45vw, 5rem) !important;
    line-height: .9 !important;
    letter-spacing: -.055em !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    text-wrap: balance !important;
  }

  .vx-progress-card {
    grid-template-columns: minmax(0, .74fr) minmax(0, 1.26fr) !important;
    gap: clamp(34px, 5vw, 72px) !important;
  }

  .vx-progress-copy h2 {
    max-width: 10ch !important;
    font-size: clamp(2.45rem, 3.95vw, 4.3rem) !important;
    line-height: .95 !important;
    letter-spacing: -.05em !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    text-wrap: balance !important;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .vx-universe h3 {
    max-width: 7.1ch !important;
    font-size: clamp(2.55rem, 4vw, 4.45rem) !important;
  }

  .vx-progress-card {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr) !important;
    gap: 30px !important;
  }

  .vx-progress-copy h2 {
    max-width: 11ch !important;
    font-size: clamp(2.15rem, 3.35vw, 3.55rem) !important;
  }
}


/* ==========================================================================
   Editorial motion polish — title masks + reflective keywords
   ========================================================================== */
.vx-shine-word {
  display: inline;
  color: inherit;
}

.vx-motion-ready [data-vx-reveal="title"] {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, 22px, 0);
  transition:
    opacity .76s var(--vx-ease-soft) var(--vx-reveal-delay, 0ms),
    transform .92s var(--vx-ease-soft) var(--vx-reveal-delay, 0ms),
    clip-path .92s var(--vx-ease-soft) var(--vx-reveal-delay, 0ms);
  will-change: transform, opacity, clip-path;
}

.vx-motion-ready [data-vx-reveal="title"].is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0,0,0);
}

.vx-shine-word.is-shimmering {
  color: inherit;
  background-image: linear-gradient(
    108deg,
    currentColor 0%,
    currentColor 38%,
    rgba(255,255,255,.98) 49%,
    currentColor 60%,
    currentColor 100%
  );
  background-size: 260% 100%;
  background-position: 120% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: vxKeywordShine 8.6s cubic-bezier(.22,.61,.36,1) infinite;
}

.vx-universe .vx-shine-word.is-shimmering,
.vx-progress-card .vx-shine-word.is-shimmering,
.vx-manifesto .vx-shine-word.is-shimmering {
  background-image: linear-gradient(
    108deg,
    currentColor 0%,
    currentColor 40%,
    rgba(233,247,241,.98) 49%,
    currentColor 58%,
    currentColor 100%
  );
}

@keyframes vxKeywordShine {
  0%, 68% { background-position: 120% 0; }
  84% { background-position: -28% 0; }
  100% { background-position: -28% 0; }
}

.vx-motion-ready [data-vx-reveal="soft"] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity .66s var(--vx-ease-soft) var(--vx-reveal-delay, 0ms),
    transform .76s var(--vx-ease-soft) var(--vx-reveal-delay, 0ms);
}

.vx-motion-ready [data-vx-reveal="soft"].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 760px) {
  .vx-motion-ready [data-vx-reveal="title"] {
    transform: translate3d(0, 14px, 0);
    transition-duration: .64s;
  }

  .vx-shine-word.is-shimmering {
    animation-duration: 10.5s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vx-shine-word,
  .vx-shine-word.is-shimmering {
    color: inherit !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    animation: none !important;
  }

  [data-vx-reveal="title"],
  [data-vx-reveal="soft"] {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }
}


/* ==========================================================================
   Motion safety correction — content must NEVER depend on JS to be readable
   ========================================================================== */

/* Base state: all content is painted immediately. IntersectionObserver only
   adds motion; it never controls visibility. */
[data-vx-reveal],
.vx-motion-ready [data-vx-reveal],
.js-enabled [data-vx-reveal],
.vx-motion-ready [data-vx-reveal="title"],
.vx-motion-ready [data-vx-reveal="soft"] {
  opacity: 1 !important;
  visibility: visible !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
}

/* Scroll entrance becomes a short movement/soft focus only. There is no
   opacity:0 state, so a failed observer can never remove content. */
.vx-motion-ready [data-vx-reveal].is-visible {
  animation: vxSafeReveal .62s cubic-bezier(.22,1,.36,1) both;
}

.vx-motion-ready [data-vx-reveal="title"].is-visible {
  animation: vxSafeTitleReveal .72s cubic-bezier(.22,1,.36,1) both;
}

.vx-motion-ready [data-vx-reveal="soft"].is-visible {
  animation: vxSafeSoftReveal .58s cubic-bezier(.22,1,.36,1) both;
}

@keyframes vxSafeReveal {
  from {
    transform: translate3d(0, 13px, 0);
    filter: blur(1.3px);
  }
  to {
    transform: none;
    filter: none;
  }
}

@keyframes vxSafeTitleReveal {
  from {
    transform: translate3d(0, 17px, 0);
    filter: blur(1.6px);
    clip-path: inset(0 0 7% 0 round 4px);
  }
  to {
    transform: none;
    filter: none;
    clip-path: inset(0 0 0 0 round 4px);
  }
}

@keyframes vxSafeSoftReveal {
  from {
    transform: translate3d(0, 9px, 0);
    filter: blur(.8px);
  }
  to {
    transform: none;
    filter: none;
  }
}

/* Reflection is rendered in a duplicate overlay. The real word remains
   untouched underneath, so unsupported background-clip can never make it
   disappear. */
.vx-shine-word,
.vx-shine-word.is-shimmering {
  position: relative;
  display: inline-block;
  color: inherit !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  animation: none !important;
}

.vx-shine-word::after {
  content: attr(data-vx-shine-text);
  position: absolute;
  inset: 0;
  z-index: 1;
  color: transparent;
  pointer-events: none;
  opacity: 0;
  white-space: nowrap;
  background-image: linear-gradient(
    106deg,
    transparent 28%,
    rgba(55, 113, 94, .12) 39%,
    rgba(92, 155, 132, .72) 49%,
    rgba(55, 113, 94, .12) 59%,
    transparent 70%
  );
  background-size: 280% 100%;
  background-position: 135% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vx-shine-word.is-shimmering::after {
  opacity: 1;
  animation: vxSafeKeywordShine 8.8s cubic-bezier(.22,.61,.36,1) infinite;
}

.vx-universe .vx-shine-word::after,
.vx-progress-card .vx-shine-word::after,
.vx-manifesto .vx-shine-word::after,
.vx-final-cta .vx-shine-word::after {
  background-image: linear-gradient(
    106deg,
    transparent 28%,
    rgba(255,255,255,.08) 39%,
    rgba(245,255,251,.82) 49%,
    rgba(255,255,255,.08) 59%,
    transparent 70%
  );
}

@keyframes vxSafeKeywordShine {
  0%, 70% { background-position: 135% 0; }
  84% { background-position: -38% 0; }
  100% { background-position: -38% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .vx-motion-ready [data-vx-reveal].is-visible,
  .vx-motion-ready [data-vx-reveal="title"].is-visible,
  .vx-motion-ready [data-vx-reveal="soft"].is-visible {
    animation: none !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  .vx-shine-word::after,
  .vx-shine-word.is-shimmering::after {
    display: none !important;
    animation: none !important;
  }
}


/* ==========================================================================
   Desktop balance + pricing symmetry + campus marquee — 2026-08-22b
   ========================================================================== */

/* Let key section titles breathe horizontally a little more on desktop so
   they stop feeling too columnar. */
.vx-manifesto-grid {
  grid-template-columns: minmax(220px, .48fr) minmax(0, 1.52fr);
}
.vx-manifesto h2 {
  max-width: 14ch;
  font-size: clamp(3rem, 5.7vw, 6rem);
}
.vx-story-head {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
}
.vx-story-head h2 {
  max-width: 12.5ch;
  font-size: clamp(2.8rem, 4.7vw, 4.85rem);
}
.vx-story-item {
  grid-template-columns: minmax(340px, .76fr) minmax(0, 1.24fr);
}
.vx-story-item:nth-child(even) {
  grid-template-columns: minmax(0, 1.24fr) minmax(340px, .76fr);
}
.vx-story-copy h3 {
  max-width: 9ch;
  font-size: clamp(2.45rem, 4.3vw, 4.45rem);
}
.vx-universes-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  align-items: end;
}
.vx-universes-head h2 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 4.5vw, 4.7rem);
}
.vx-universe h3 {
  max-width: 7.4ch;
  font-size: clamp(2.9rem, 4.65vw, 5.15rem);
}
.vx-progress-card {
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
}
.vx-progress-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.65rem, 4.35vw, 4.55rem);
}
.vx-final-inner {
  grid-template-columns: minmax(0, 1.22fr) minmax(240px, .78fr);
}
.vx-final-cta h2 {
  max-width: 15ch;
  font-size: clamp(3rem, 5.4vw, 6rem);
}
body.vx-track-experience .premium-hero-shell {
  grid-template-columns: .82fr 1.18fr;
}
body.vx-track-experience .premium-hero-copy h1 {
  max-width: 12.3ch;
  font-size: clamp(3.15rem, 5.3vw, 5.9rem);
}
body.pricing-page.vx-experience .premium-hero-copy h1 {
  max-width: 12.6ch;
}

/* Infinite logo band: the markup is ready for more schools later, and the
   loop remains seamless thanks to two mirrored groups. */
.vx-campus-logos {
  justify-content: stretch;
  min-width: 0;
}
.vx-campus-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.vx-campus-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
  animation: vxCampusMarquee 22s linear infinite;
  will-change: transform;
}
.vx-campus-group {
  display: flex;
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
  flex-shrink: 0;
}
.vx-campus-marquee:hover .vx-campus-track {
  animation-play-state: paused;
}
.vx-campus-logo {
  opacity: .74;
}
@keyframes vxCampusMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .vx-campus-track {
    animation: none !important;
    transform: none !important;
  }
}

/* Pricing cards: align the content rhythm so both columns are perfectly
   symmetric even when the annual saving badge appears. */
body.pricing-page.vx-experience .pricing-grid {
  align-items: stretch;
}
body.pricing-page.vx-experience .pricing-card {
  min-height: 560px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
}
body.pricing-page.vx-experience .pricing-card-topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 32px;
}
body.pricing-page.vx-experience .pricing-card h2 {
  display: flex;
  align-items: flex-end;
  min-height: 2.28em;
  margin: 30px 0 10px;
}
body.pricing-page.vx-experience .pricing-amount {
  display: flex;
  align-items: flex-end;
  min-height: 1.15em;
  margin: 16px 0 0;
}
body.pricing-page.vx-experience .pricing-card ul {
  margin: 24px 0 30px;
}
body.pricing-page.vx-experience .pricing-saving-badge {
  margin-left: 0;
}
body.pricing-page.vx-experience .pricing-card .btn {
  align-self: stretch;
}


/* --------------------------------------------------------------------------
   Homepage typography polish — requested line constraints
   -------------------------------------------------------------------------- */
.vx-hero-title {
  max-width: 12.1ch;
}
.vx-hero-title em {
  margin-top: .02em;
}
.vx-hero-title .vx-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.vx-universes-head {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  align-items: start;
  gap: 14px;
}
.vx-universes-head h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.55rem, 4.25vw, 4.45rem);
}
.vx-universes-head p {
  max-width: none;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .vx-hero-title {
    max-width: 11.5ch;
    font-size: clamp(3.7rem, 6.4vw, 6.2rem);
  }

  .vx-universes-head h2 {
    white-space: normal;
    font-size: clamp(2.65rem, 5vw, 4rem);
  }

  .vx-universes-head p {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .vx-hero-title {
    max-width: 10.8ch;
    font-size: clamp(3.15rem, 15vw, 4.7rem);
  }

  .vx-hero-title .vx-nowrap {
    white-space: normal;
  }

  .vx-universes-head {
    gap: 12px;
  }

  .vx-universes-head h2,
  .vx-universes-head p {
    white-space: normal;
  }
}
