/* ===========================================================
   Pausa — performance wellbeing
   Visual system: editorial serif + clean grotesque,
   warm stone paper, deep moss accent, generous negative space.
   =========================================================== */

:root {
  --paper:      #FBFAF6;
  --paper-2:    #F2F3EC;
  --paper-3:    #E7E9DD;
  --ink:        #23271F;
  --ink-soft:   #50564A;
  --stone:      #8A8E7F;
  --stone-2:    #ABAE9F;
  --line:       rgba(35, 39, 31, 0.11);
  --line-soft:  rgba(35, 39, 31, 0.06);
  --moss:       #3C5040;
  --moss-deep:  #233428;
  --sage:       #DDE4D3;
  --sage-tint:  #EDF1E6;
  --clay:       #97694E;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, sans-serif;
  --mono:  "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  margin: 0;
  background: var(--paper);
  background-image:
    radial-gradient(120% 80% at 80% -10%, var(--sage-tint) 0%, rgba(237,241,230,0) 55%),
    linear-gradient(180deg, #F4F6EE 0%, var(--paper) 28%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.002em;
}

::selection { background: var(--moss); color: var(--paper); }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* Logo mark — original */
.pausa-glyph { filter: none; }

/* ---- shared layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { max-width: 1340px; }

section { position: relative; }

.kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--stone);
  display: inline-block;
}

.badge {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 18px;
  display: inline-block;
  background: rgba(255,255,255,0.55);
}

/* ---- type scale ---- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.018em;
  font-size: clamp(40px, 6.4vw, 88px);
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.012em;
  font-size: clamp(32px, 4.4vw, 56px);
}
.h3 {
  font-family: var(--serif);
  font-weight: 450;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.h2 em, .display em, .h3 em { font-style: italic; font-weight: 400; }
.lede {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.62;
  color: var(--ink-soft);
  font-weight: 400;
}
.serif-it { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ---- buttons ---- */
.btn {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background .5s var(--ease), color .5s var(--ease), transform .4s var(--ease), box-shadow .5s var(--ease);
  border-radius: 100px;
}
.btn .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; opacity: .55;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, oklch(0.50 0.11 125deg) 0%, oklch(0.48 0.13 168deg) 100%);
  color: #fff;
  box-shadow: 0 12px 30px -16px oklch(0.40 0.12 145deg / 0.55);
}
.btn-primary:hover { background: linear-gradient(135deg, oklch(0.44 0.12 125deg) 0%, oklch(0.42 0.14 168deg) 100%); box-shadow: 0 18px 40px -16px oklch(0.38 0.13 145deg / 0.65); }
.btn-primary:hover .dot { transform: translateX(4px); opacity: 1; }
.btn-ghost {
  background: rgba(255,255,255,0.5);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 15px 26px;
}
.btn-ghost:hover { border-color: var(--ink); }

/* ---- reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- image slot styling ---- */
image-slot {
  --is-bg: var(--paper-3);
  background: var(--paper-3);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .5s var(--ease), border-color .5s var(--ease), padding .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245, 242, 236, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding-top: 14px; padding-bottom: 14px;
}
.brand {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.01em;
  font-weight: 450;
  display: flex; align-items: baseline; gap: 9px;
}
.brand .mark {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  transform: translateY(-2px);
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14px; color: var(--ink-soft); font-weight: 450;
  transition: color .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 14px; font-weight: 500;
  padding: 10px 22px; border: 1px solid var(--line); border-radius: 100px;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s;
}
.nav-links a.nav-cta:hover { background: linear-gradient(135deg, oklch(0.50 0.11 125deg) 0%, oklch(0.48 0.13 168deg) 100%); color: #fff; border-color: transparent; }
@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { padding-top: 128px; padding-bottom: 0; overflow: hidden; }
.urgency {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 18px 9px 14px; margin-bottom: 36px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}
.urgency .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--clay);
  position: relative; flex: none;
}
.urgency .pulse::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid var(--clay); opacity: .5;
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%{transform:scale(.6);opacity:.6} 100%{transform:scale(1.6);opacity:0} }
.urgency b { font-weight: 600; color: var(--ink); }

.hero-headline { max-width: 15ch; margin: 0 0 30px; }
.hero-headline em { font-style: italic; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: start; }
.hero-copy { align-self: end; padding-bottom: clamp(8px, 2vw, 28px); }
.hero-sub { max-width: 46ch; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 36px; flex-wrap: wrap; }
.hero-actions .meta { font-size: 13.5px; color: var(--stone); max-width: 22ch; line-height: 1.4; }

/* featured leader portrait + floating credential pills */
.hero-portrait { position: relative; }
.portrait-stage { position: relative; }
.hero-portrait .portrait-wrap {
  position: relative; border-radius: 200px 200px 18px 18px; overflow: hidden;
  background: linear-gradient(180deg, var(--sage) 0%, var(--sage-tint) 100%);
}
.hero-portrait image-slot { width: 100%; height: clamp(420px, 46vw, 560px); }
.float-card {
  position: absolute; z-index: 5;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 40px -24px rgba(35,39,31,0.5);
  border-radius: 14px;
  padding: 13px 18px;
  display: flex; align-items: center; gap: 13px;
}
.float-card .fc-ico {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--sage-tint); color: var(--moss);
}
.float-card .fc-label { font-size: 11px; color: var(--stone); letter-spacing: 0.02em; }
.float-card .fc-value { font-size: 14.5px; font-weight: 500; color: var(--ink); line-height: 1.2; }
.fc-1 { top: 16%; left: -7%; animation: floaty 7s var(--ease) infinite; }
.fc-2 { top: 44%; right: -9%; animation: floaty 8s var(--ease) infinite 0.6s; }
.fc-3 { bottom: 10%; left: -4%; animation: floaty 7.5s var(--ease) infinite 1.1s; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@media (prefers-reduced-motion: reduce) { .float-card { animation: none !important; } }

/* founder bio card */
.founder { margin-top: clamp(40px, 5vw, 64px); }
.founder-head { text-align: right; margin-bottom: 20px; }
.founder-top { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.founder-name { font-family: var(--serif); font-weight: 450; font-size: clamp(26px, 3vw, 34px); letter-spacing: -0.01em; color: var(--ink); margin: 0; }
.li-link { display: inline-flex; width: 26px; height: 26px; color: var(--moss); transition: color .3s var(--ease), transform .3s var(--ease); }
.li-link svg { width: 100%; height: 100%; display: block; }
.li-link:hover { color: var(--moss-deep); transform: translateY(-2px); }
.founder-role { display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--moss); margin: 6px 0 0; }
.founder-bio { font-family: var(--serif); font-style: italic; font-size: clamp(17px, 1.6vw, 19px); color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* retreat imagery band */
.sanctuary { padding: clamp(56px, 8vw, 96px) 0 0; }
.sanctuary .kicker { display: block; margin-bottom: 22px; }
.sanctuary-strip { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 14px; height: clamp(220px, 28vw, 360px); }
.sanctuary-strip image-slot { width: 100%; height: 100%; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .hero-copy { align-self: start; padding-bottom: 0; }
  .hero-portrait { max-width: 460px; margin: 8px auto 0; }
  .float-card { padding: 10px 14px; }
  .fc-1 { left: -3%; } .fc-2 { right: -3%; } .fc-3 { left: 0; }
  .sanctuary-strip { grid-template-columns: 1fr 1fr; height: auto; gap: 12px; }
  .sanctuary-strip .tilt3d { height: auto !important; aspect-ratio: 3 / 2; }
  .sanctuary-strip .tilt3d:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .sanctuary-strip image-slot { height: 100% !important; }
}

@media (max-width: 560px) {
  .sanctuary-strip { grid-template-columns: 1fr; gap: 12px; }
  .sanctuary-strip .tilt3d, .sanctuary-strip .tilt3d:first-child { aspect-ratio: 16 / 10; }
}

/* =========================================================
   ROI — the business case
   ========================================================= */
.roi { padding: clamp(96px, 13vw, 168px) 0; }
.roi-head { max-width: 38ch; margin-bottom: clamp(56px, 6vw, 84px); }
.roi-head .h2 { max-width: 18ch; margin: 18px 0 0; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 4vw, 64px); }
.stat { padding: 0; display: flex; flex-direction: column; }
.stat .num {
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(52px, 7.5vw, 96px); line-height: 0.9; letter-spacing: -0.035em;
  margin-bottom: 22px; color: var(--ink);
}
.stat .num .small { font-size: 0.42em; color: var(--stone); letter-spacing: 0; font-weight: 400; }
.stat .desc { font-size: 15.5px; color: var(--ink-soft); max-width: 32ch; margin: 0; }
.stat .src { font-size: 13px; color: var(--stone); margin: 14px 0 0; max-width: 32ch; line-height: 1.45; }

.roi-note {
  margin: clamp(48px, 6vw, 80px) 0 0;
  max-width: 82ch;
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55;
  color: var(--ink-soft);
}
.roi-note b { color: var(--ink); font-weight: 600; }

@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr; gap: 44px; }
  .stat { border-bottom: 1px solid var(--line); padding-bottom: 36px; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
}

/* =========================================================
   PILLARS
   ========================================================= */
.pillars { padding: clamp(96px, 13vw, 168px) 0; background: transparent; }
.pillars-head { max-width: 60ch; margin-bottom: 64px; }
.pillars-head .h2 { margin: 20px 0 0; }

/* ---- questions marquee (the pillars are the answers) ---- */
.qband { margin-top: clamp(56px, 7vw, 104px); margin-bottom: 0; }
.qband-head { max-width: 60ch; margin-bottom: 48px; }
.qband-head .kicker { white-space: nowrap; }
.qband-head .h2 { margin: 18px 0 16px; }
.qband-head .lede { margin: 0; }
.qrows { display: flex; flex-direction: column; gap: 12px; }
.qmarquee {
  overflow: hidden; width: 100%;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.qtrack {
  display: flex; gap: 12px; width: max-content;
  animation: qscroll linear infinite;
  will-change: transform;
}
.qtrack.is-rev { animation-direction: reverse; }
@keyframes qscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.qmarquee:hover .qtrack { animation-play-state: paused; }
.qchip {
  flex: none; white-space: nowrap; cursor: default;
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--sans); font-style: normal; font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1; color: var(--moss);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  padding: 13px 22px; border-radius: 7px;
  box-shadow: 0 8px 20px -16px rgba(35, 39, 31, 0.55);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.qchip::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--clay); flex: none;
}
.qchip:hover {
  background-color: #E6ECDE;
  background-image:
    linear-gradient(in oklch to right, oklch(0.93 0.062 var(--pHue1) / 0.85), oklch(0.96 0.05 var(--pHue2) / 0.85)),
    linear-gradient(in oklch to bottom, oklch(0.9 0.07 var(--pHue1) / 0.8), oklch(0.95 0.052 var(--pHue2) / 0.8));
  background-size: 100% 100%;
  animation: pausaHue 16s linear infinite alternate;
  color: var(--moss); border-color: rgba(60,80,64,0.22);
}
.qchip:hover::before { background: var(--moss); }
@media (prefers-reduced-motion: reduce) {
  .qtrack { animation: none; }
  .qmarquee { -webkit-mask: none; mask: none; }
  .qrows { gap: 10px; }
}
.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 26px);
  perspective: 1300px;
}
.pillar { position: relative; transform-style: preserve-3d; }
.pillar-card {
  position: relative; height: 100%; min-height: 264px;
  padding: 36px 32px 40px;
  display: flex; flex-direction: column; gap: 15px;
  border-radius: 20px;
  --ph: 150deg;
  background: linear-gradient(158deg,
    oklch(0.96 0.043 var(--ph) / 0.92) 0%,
    oklch(0.925 0.062 calc(var(--ph) + 40deg) / 0.92) 100%);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 0 0 1px rgba(35,39,31,0.04),
    0 22px 44px -26px rgba(35,39,31,0.5),
    0 6px 16px -10px rgba(35,39,31,0.28);
  -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  overflow: hidden; isolation: isolate;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform .3s var(--ease), box-shadow .45s var(--ease);
  will-change: transform;
}
.pillar-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 0 0 1px rgba(60,80,64,0.06),
    0 34px 66px -28px rgba(35,39,31,0.55),
    0 10px 26px -12px rgba(60,80,64,0.34);
}
.pillar-card > *:not(.pillar-glow):not(.pillar-sheen) { position: relative; z-index: 4; }
/* soft reset-palette gradient, a distinct hue per card */
.pillar-grid .pillar:nth-child(1) .pillar-card { --ph: 116deg; }
.pillar-grid .pillar:nth-child(2) .pillar-card { --ph: 134deg; }
.pillar-grid .pillar:nth-child(3) .pillar-card { --ph: 152deg; }
.pillar-grid .pillar:nth-child(4) .pillar-card { --ph: 170deg; }
.pillar-grid .pillar:nth-child(5) .pillar-card { --ph: 188deg; }
.pillar-grid .pillar:nth-child(6) .pillar-card { --ph: 206deg; }
.pillar-card .idx { font-family: var(--mono); font-size: 12px; color: var(--stone); letter-spacing: 0.12em; transform: translateZ(28px); display: flex; align-items: center; gap: 10px; }
.pillar-card .idx-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); }
.pillar-card h3 { margin: 14px 0 0; transform: translateZ(16px); }
.pillar-card p { margin: 0; font-size: 15.5px; color: var(--ink-soft); transform: translateZ(8px); }
.pillar-card .pillar-lead {
  margin: 14px 0 0; transform: translateZ(8px);
  font-size: 16px; line-height: 1.45; color: var(--ink); text-wrap: pretty;
}
.pillar-card .pillar-sub {
  margin: 9px 0 0; transform: translateZ(6px);
  font-size: 14px; line-height: 1.45; color: var(--stone); text-wrap: pretty;
}
.pillar-card .glyph {
  width: 34px; height: 34px; margin-top: auto;
  padding-top: 22px;
  color: var(--moss); opacity: .9; transform: translateZ(30px);
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
/* reflective spotlight border ring — follows the cursor */
.pillar-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 1.5px; z-index: 3; pointer-events: none;
  background: radial-gradient(240px 240px at var(--mx, 50%) var(--my, 50%),
    rgba(168,198,142,0.95) 0%, rgba(120,151,108,0.4) 38%, rgba(120,151,108,0) 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .45s var(--ease);
}
.pillar-card:hover::before { opacity: 1; }
/* glassy reflection sweep */
.pillar-sheen {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; border-radius: inherit;
  background: linear-gradient(125deg,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 60%);
  background-size: 260% 260%;
  background-position: var(--gx, 50%) var(--gy, 50%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.pillar-card:hover .pillar-sheen { opacity: .55; }
@media (max-width: 900px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pillar-grid { grid-template-columns: 1fr; } }

/* =========================================================
   COMPARISON
   ========================================================= */
.compare { padding: clamp(96px, 13vw, 168px) 0; }
.compare-head { max-width: 52ch; margin-bottom: 60px; }
.compare-head .h2 { margin: 20px 0 0; }
.matrix { width: 100%; border-collapse: collapse; }
.matrix th, .matrix td { text-align: left; padding: 22px 24px; vertical-align: middle; }
.matrix thead th { border-bottom: 1px solid var(--ink); }
.matrix .col-feature { width: 34%; }
.matrix th.col-pausa {
  font-family: var(--serif); font-size: 23px; font-weight: 450; color: var(--ink);
}
.matrix th .sub { display: block; font-family: var(--sans); font-size: 12px; font-weight: 450; color: var(--stone); letter-spacing: 0.04em; margin-top: 4px; }
.matrix th.col-other { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--stone); }
.matrix tbody tr { border-bottom: 1px solid var(--line); }
.matrix tbody td.feature { font-weight: 500; font-size: 16px; color: var(--ink); }
.matrix td.cell { font-size: 15px; color: var(--ink-soft); }
.matrix td.col-pausa { background: rgba(60, 80, 64, 0.06); }
.matrix .yes { color: var(--moss); font-weight: 600; display: inline-flex; align-items: center; gap: 9px; }
.matrix .no  { color: var(--stone-2); }
.matrix .tick { width: 15px; height: 15px; }
.matrix-caption { margin-top: 34px; max-width: 56ch; color: var(--ink-soft); font-size: 16px; }
.matrix-caption b { font-weight: 600; color: var(--ink); }
.compare-scroll { overflow-x: auto; }

/* Interactive bending hairline — lives in the gap between sections.
   height:1px keeps it out of the layout so section spacing is unchanged. */
.wave-path {
  position: relative;
  height: 1px;
  width: min(760px, 70vw);
  margin: 0 auto;
  color: var(--stone-2);
}
.wave-hit {
  position: absolute;
  left: 0;
  top: -20px;
  height: 40px;
  width: 100%;
  z-index: 4;
  cursor: ns-resize;
  transition: top .45s var(--ease), height .45s var(--ease);
}
.wave-hit:hover { top: -150px; height: 300px; }
.wave-svg {
  position: absolute;
  left: 0;
  top: -100px;
  height: 300px;
  width: 100%;
  overflow: visible;
  pointer-events: none;
}
.wave-svg path { fill: none; stroke: currentColor; stroke-width: 1.5; }
@media (prefers-reduced-motion: reduce) { .wave-hit { transition: none; } }
@media (max-width: 720px) { .matrix th, .matrix td { padding: 16px 14px; } .matrix { min-width: 600px; } }

/* =========================================================
   PRICING
   ========================================================= */
.pricing {
  padding: clamp(96px, 13vw, 168px) 0;
  background: transparent;
  color: var(--ink);
}
.pricing .kicker { color: var(--stone); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pricing-intro .h2 { color: var(--ink); margin: 22px 0 24px; max-width: 14ch; }
.pricing-intro p { color: var(--ink-soft); max-width: 42ch; }
.price-card {
  background: var(--paper); color: var(--ink);
  padding: 48px 46px; border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,0.4);
}
.price-card .tier { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); }
.price-row { display: flex; align-items: baseline; gap: 16px; margin: 22px 0 6px; }
.price-row .anchor { font-family: var(--serif); font-size: 26px; color: var(--stone-2); text-decoration: line-through; text-decoration-thickness: 1px; }
.price-row .now { font-family: var(--serif); font-size: clamp(48px, 6vw, 68px); line-height: 1; letter-spacing: -0.02em; }
.price-row .now .vat { font-size: 0.32em; color: var(--ink-soft); letter-spacing: 0; font-family: var(--sans); }
.price-card .per { font-size: 14px; color: var(--ink-soft); margin-bottom: 30px; }
.price-card .incl-title { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); border-top: 1px solid var(--line); padding-top: 26px; margin-bottom: 18px; }
.incl-group { margin-bottom: 20px; }
.incl-phase { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); margin: 0 0 10px; }
.incl { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.incl li { display: flex; gap: 13px; font-size: 15px; color: var(--ink-soft); align-items: flex-start; }
.incl li .tick { color: var(--moss); flex: none; margin-top: 3px; width: 15px; height: 15px; }
.price-card .btn-primary { width: 100%; justify-content: center; }
.price-card .micro { font-size: 12.5px; color: var(--stone); text-align: center; margin: 16px 0 0; line-height: 1.45; }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; gap: 40px; } }

/* =========================================================
   FOOTER CTA
   ========================================================= */
.footer { padding: clamp(110px, 16vw, 200px) 0 0; overflow: hidden; background: transparent; }
.footer-cta { text-align: center; max-width: 20ch; margin: 0 auto 28px; }
.footer-sub { text-align: center; max-width: 50ch; margin: 0 auto 40px; color: var(--ink-soft); }
.footer-actions { display: flex; justify-content: center; }
.footer-band {
  margin-top: clamp(80px, 12vw, 150px);
  border-top: 1px solid var(--line);
  padding: 36px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 13.5px; color: var(--stone);
  flex-wrap: wrap;
}
.footer-band .links { display: flex; gap: 26px; }
.footer-band a:hover { color: var(--ink); }
.wordmark {
  font-family: var(--serif);
  font-size: clamp(80px, 22vw, 280px);
  line-height: 0.8;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--ink);
  opacity: 0.06;
  margin-top: 40px;
  user-select: none;
  white-space: nowrap;
}

/* =========================================================
   MODAL
   ========================================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 19, 15, 0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .45s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--paper); width: 100%; max-width: 520px;
  border-radius: 5px; padding: 44px 44px 40px;
  transform: translateY(20px) scale(.985); opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
  max-height: 92vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: none; opacity: 1; }
.modal .close {
  position: absolute; top: 22px; right: 26px;
  background: none; border: none; cursor: pointer; font-size: 22px; color: var(--stone);
  line-height: 1; transition: color .3s;
}
.modal .close:hover { color: var(--ink); }
.modal .kicker { margin-bottom: 14px; }
.modal h3 { margin: 0 0 8px; }
.modal .modal-sub { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 3px;
  background: #fff; transition: border-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--moss); }
.field.invalid input, .field.invalid select { border-color: var(--clay); }
.field .err { font-size: 12px; color: var(--clay); margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }
.modal-success { text-align: center; padding: 20px 0 8px; }
.modal-success .check {
  width: 56px; height: 56px; border-radius: 50%; background: var(--sage);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; color: var(--moss);
}
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } .modal { padding: 36px 26px 30px; } }

/* =========================================================
   LOGO MARK
   ========================================================= */
.pausa-logo { display: inline-flex; align-items: center; gap: 11px; color: var(--moss); }
.pausa-logo .pausa-glyph { width: 32px; height: 32px; display: block; }
.pausa-logo .wm { font-family: var(--serif); font-size: 25px; font-weight: 450; letter-spacing: 0.01em; color: var(--ink); }

/* =========================================================
   STRATEGIC PARTNERS
   ========================================================= */
.partners { padding: clamp(96px, 13vw, 168px) 0; }
.partners-head { max-width: 56ch; margin-bottom: clamp(48px, 6vw, 72px); }
.partners-head .h2 { margin: 18px 0 0; }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
.partner { display: flex; flex-direction: column; gap: 22px; }
.partner .logo-slot { height: 56px; display: flex; align-items: center; }
.partner .partner-logo { height: 48px; width: auto; max-width: 168px; object-fit: contain; border-radius: 10px; }
.partner h3 { margin: 0; }
.partner .p-name { font-family: var(--serif); font-size: 21px; font-weight: 450; color: var(--ink); margin: 0; }
.partner p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.partner p + p { margin-top: 14px; }
.partner strong { color: var(--ink); font-weight: 600; }
@media (max-width: 820px) { .partner-grid { grid-template-columns: 1fr; gap: 48px; } }

/* =========================================================
   MISSION & VALUES
   ========================================================= */
.mission { padding: clamp(96px, 13vw, 168px) 0; background: var(--sage-tint); }
.mission ::selection { background: var(--moss); color: #fff; }
.mission-head {
  display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(32px, 5vw, 80px);
  align-items: end; margin-bottom: clamp(52px, 6vw, 84px);
}
.mission-head .h2 { margin: 18px 0 0; color: var(--moss-deep); max-width: 16ch; }
.mission-head .mh-lede { color: var(--moss); max-width: 40ch; margin: 0; align-self: end; }
.mission .kicker { color: var(--moss); }

.values-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(20px, 2.4vw, 38px);
  border-top: 1px solid rgba(60,80,64,0.2); padding-top: clamp(32px, 4vw, 48px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.value .vpill {
  display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--moss-deep); background: var(--sage);
  padding: 6px 15px; border-radius: 100px; margin-bottom: 12px;
}
.value p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.5; }

/* ---- hover interactions: Mission & Vision ---- */
.value {
  cursor: default;
  transition: transform 0.3s var(--ease);
}
.value:hover { transform: translateY(-5px); }
.value .vpill {
  transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.value:hover .vpill {
  background: var(--moss); color: var(--paper);
  box-shadow: 0 4px 14px -6px rgba(40,70,30,0.4);
}
.value p { transition: color 0.25s var(--ease); }
.value:hover p { color: var(--ink); }

.vision-card {
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  will-change: transform;
}
.vision-card:hover {
  transform: perspective(900px) rotateX(-1.5deg) translateY(-3px);
  box-shadow: 0 28px 64px -28px rgba(40,70,30,0.24);
}

.vision-card strong {
  position: relative; display: inline;
}
.vision-card strong::after {
  content: ''; position: absolute;
  left: -2px; right: -2px; bottom: 1px;
  height: 7px; background: var(--sage);
  border-radius: 2px; z-index: -1;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vision-card strong:hover::after { transform: scaleX(1); }

.vc-secret { cursor: default; }
.vc-shh { transition: opacity 0.3s var(--ease); }
.vc-dream, .vc-pledge { transition: color 0.3s var(--ease); }
.vc-secret:hover .vc-shh { opacity: 1 !important; }
.vc-secret:hover .vc-dream { color: var(--ink); }
.vc-secret:hover .vc-pledge { opacity: 1 !important; color: var(--moss-deep); }

@media (prefers-reduced-motion: reduce) {
  .value, .vision-card { transition: none; }
  .value:hover { transform: none; }
  .vision-card:hover { transform: none; }
  .vision-card strong::after { transition: none; }
}

.vision-card {
  background: rgba(255,255,255,0.6); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(32px, 4vw, 46px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.vision-card .kicker { margin-bottom: 14px; display: block; }
.vision-card p { color: var(--ink-soft); font-size: 16px; margin: 0; }
.vision-card .vc-steward { font-family: var(--sans); font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.vision-card strong { color: var(--moss-deep); font-weight: 600; }
.vision-card .steward { font-weight: 600; color: var(--moss-deep); }
.vision-card a { color: var(--moss); text-decoration: underline; text-underline-offset: 3px; transition: color .3s; }
.vision-card a:hover { color: var(--moss-deep); }

/* secret dream footer */
.vc-secret {
  grid-column: 1 / -1;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px 20px;
  margin-top: 6px; padding-top: 22px;
  border-top: 1px solid var(--line);
}
.vc-shh {
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: var(--moss); opacity: 0.7;
  letter-spacing: 0.02em;
}
.vc-dream {
  font-family: var(--serif); font-style: italic; font-weight: 450;
  font-size: clamp(15px, 1.5vw, 18px); color: var(--ink-soft);
  letter-spacing: -0.01em;
}
.vc-pledge {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--moss); opacity: 0.8;
}

@media (max-width: 900px) { .values-row { grid-template-columns: repeat(3, 1fr); gap: 30px 24px; } }
@media (max-width: 820px) {
  .mission-head { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .mission-head .mh-lede { align-self: start; }
  .vision-card { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 540px) { .values-row { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   RESET BAND — blurred atmospheric interstitial
   ========================================================= */
.reset {
  position: relative; overflow: hidden; color: var(--paper);
  min-height: clamp(440px, 58vh, 620px);
  display: flex; align-items: center;
  padding: clamp(60px, 9vw, 120px) 0;
}
.reset-media { position: absolute; inset: 0; z-index: 0; }
.reset-media image-slot {
  width: 100%; height: 100%;
  filter: blur(13px) saturate(1.05) brightness(0.82);
  transform: scale(1.14);
}
.reset-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(28,42,32,0.42) 0%, rgba(28,42,32,0.66) 60%, rgba(28,42,32,0.82) 100%),
    radial-gradient(80% 70% at 20% 90%, rgba(28,42,32,0.5), rgba(28,42,32,0) 70%);
}
.reset-path { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.reset-path path {
  fill: none; stroke: rgba(245,246,238,0.6); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 0.5 17;
  animation: dotflow 9s linear infinite;
}
@keyframes dotflow { to { stroke-dashoffset: -350; } }
@media (prefers-reduced-motion: reduce) { .reset-path path { animation: none; } }
.reset-inner { position: relative; z-index: 3; }
.reset-kicker { color: rgba(245,246,238,0.78); }
.reset-title { color: var(--paper); max-width: 17ch; margin: 18px 0 0; }
.reset-title em { color: var(--sage); }
.reset-sub { color: rgba(245,246,238,0.86); max-width: 48ch; margin: 22px 0 0; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.55; }

/* =========================================================
   ACTION LAYER — core proposition (See → Act → Sustain)
   ========================================================= */
.action { padding: clamp(96px, 13vw, 168px) 0; background: var(--paper-2); }
.action-head { max-width: 56ch; margin-bottom: clamp(52px, 6vw, 80px); }
.action-head .h2 { margin: 18px 0 18px; max-width: 22ch; }
.action-head .lede { margin-top: 6px; max-width: 52ch; }
.action-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}
.action-card {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  min-height: clamp(300px, 32vw, 360px);
  padding: 34px 30px 36px; border-radius: 20px;
  --ph: 150deg;
  background: linear-gradient(158deg,
    oklch(0.96 0.043 var(--ph) / 0.92) 0%,
    oklch(0.925 0.062 calc(var(--ph) + 40deg) / 0.92) 100%);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 0 0 1px rgba(35,39,31,0.04),
    0 22px 44px -26px rgba(35,39,31,0.5),
    0 6px 16px -10px rgba(35,39,31,0.28);
}
.action-cards .action-card:nth-child(1) { --ph: 116deg; }
.action-cards .action-card:nth-child(2) { --ph: 152deg; }
.action-cards .action-card:nth-child(3) { --ph: 188deg; }
.action-card .ac-num { font-family: var(--mono); font-size: 12px; color: var(--stone); letter-spacing: 0.12em; display: flex; align-items: center; gap: 10px; }
.action-card .ac-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); }
.action-card .ac-title { font-family: var(--serif); font-weight: 450; font-size: clamp(22px, 2.3vw, 27px); margin: 4px 0 0; color: var(--ink); line-height: 1.12; }
.action-card .ac-desc { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; }
@media (max-width: 760px) {
  .action-cards { grid-template-columns: 1fr; gap: 16px; }
  .action-card { min-height: 0; }
}

/* =========================================================
   LEADERSHIP RETREATS
   ========================================================= */
.retreats { padding: clamp(96px, 13vw, 168px) 0; background: var(--paper); }
.retreats-head { max-width: 60ch; }
.retreats-head .h2 { margin: 18px 0 18px; max-width: 20ch; }
.retreats-head .lede { max-width: 56ch; }

.retreat-types { margin-top: clamp(40px, 5vw, 64px); }
.rt-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); display: block; margin-bottom: 20px; }
.rt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.rt-card { border: 1px solid var(--line); border-radius: 14px; padding: 24px; background: var(--paper-2); }
.rt-title { font-family: var(--serif); font-weight: 450; font-size: clamp(19px, 2vw, 22px); margin: 0; color: var(--ink); }
.rt-desc { margin: 10px 0 0; font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); text-wrap: pretty; }

.retreats-sub { display: block; margin: clamp(48px, 6vw, 72px) 0 18px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); }

/* expanding venue cards */
.exp-cards {
  list-style: none; margin: 0; padding: 0; width: 100%;
  display: grid; gap: 10px; height: clamp(430px, 46vw, 500px);
  transition: grid-template-columns 0.55s var(--ease), grid-template-rows 0.55s var(--ease);
}
.exp-card {
  position: relative; overflow: hidden; border-radius: 16px; cursor: pointer;
  border: 1px solid var(--line); min-width: 0; min-height: 0; outline: none;
}
.exp-card:focus-visible { box-shadow: 0 0 0 3px var(--moss); }
.exp-media {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
  filter: grayscale(0.85) brightness(0.92); transform: scale(1.06);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}
.exp-card[data-active="true"] .exp-media { filter: grayscale(0) brightness(1); transform: scale(1); }
.exp-veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,24,18,0.9), rgba(16,24,18,0.4) 45%, rgba(16,24,18,0.05) 75%); }
.exp-vtitle {
  position: absolute; bottom: 22px; left: 24px; transform-origin: left bottom;
  transform: rotate(-90deg); white-space: nowrap; pointer-events: none;
  font-family: var(--serif); font-size: 18px; letter-spacing: 0.01em; color: rgba(255,255,255,0.92);
  transition: opacity 0.3s var(--ease);
}
.exp-card[data-active="true"] .exp-vtitle { opacity: 0; }
.exp-body { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; padding: 24px; color: #fff; }
.exp-ico, .exp-region, .exp-title, .exp-desc { opacity: 0; transform: translateY(8px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.exp-card[data-active="true"] .exp-ico { opacity: 1; transform: none; }
.exp-card[data-active="true"] .exp-region { opacity: 1; transform: none; transition-delay: 0.05s; }
.exp-card[data-active="true"] .exp-title { opacity: 1; transform: none; transition-delay: 0.1s; }
.exp-card[data-active="true"] .exp-desc { opacity: 1; transform: none; transition-delay: 0.16s; }
.exp-ico { color: var(--sage); }
.exp-region { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.exp-title { font-family: var(--serif); font-weight: 450; font-size: clamp(22px, 2.4vw, 28px); margin: 0; color: #fff; line-height: 1.1; }
.exp-desc { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.86); max-width: 42ch; text-wrap: pretty; }

/* design principles */
.retreat-principles { margin-top: clamp(56px, 7vw, 88px); }
.rp-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); display: block; margin-bottom: 26px; }
.rp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 38px) clamp(24px, 4vw, 56px); }
.rp-item { display: flex; gap: 14px; }
.rp-ico { flex: none; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(60,80,64,0.08); color: var(--moss); }
.rp-title { margin: 3px 0 0; font-family: var(--serif); font-weight: 450; font-size: 18px; color: var(--ink); }
.rp-desc { margin: 7px 0 0; font-size: 14px; line-height: 1.5; color: var(--ink-soft); text-wrap: pretty; }

/* separate CTA */
.retreat-cta {
  margin-top: clamp(56px, 7vw, 88px); background: linear-gradient(150deg, #AD5E46 0%, #934832 100%); color: var(--paper);
  border-radius: 20px; padding: clamp(32px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.rc-eyebrow { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); }
.rc-title { font-family: var(--serif); font-weight: 450; font-size: clamp(24px, 3vw, 34px); margin: 12px 0 0; color: #fff; max-width: 20ch; }
.rc-left { max-width: 60ch; }
.rc-lead { margin: 16px 0 20px; font-family: var(--serif); font-style: italic; font-size: clamp(17px, 1.9vw, 21px); line-height: 1.4; color: rgba(245,246,238,0.92); max-width: 42ch; text-wrap: pretty; }
.rc-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.rc-chips li { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.03em; color: var(--paper); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); border-radius: 100px; padding: 7px 13px; white-space: nowrap; }
.rc-btn {
  flex: none; background: #FBFAF6; color: #7A3D27; border: none; border-radius: 100px;
  padding: 17px 28px; font-family: var(--sans); font-size: 16px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); box-shadow: 0 16px 32px -18px rgba(0,0,0,0.6);
}
.rc-btn:hover { transform: translateY(-2px); box-shadow: 0 22px 42px -18px rgba(0,0,0,0.7); }
.rc-btn span { transition: transform 0.3s var(--ease); }
.rc-btn:hover span { transform: translateX(4px); }

@media (max-width: 980px) { .rp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) {
  .exp-cards { height: 560px; }
  .exp-vtitle { display: none; }
  .exp-title { opacity: 1; transform: none; }
}
@media (max-width: 760px) {
  .rt-grid { grid-template-columns: 1fr; }
  .rp-grid { grid-template-columns: 1fr; }
  .retreat-cta { flex-direction: column; align-items: flex-start; }
  .rc-btn { width: 100%; justify-content: center; }
}

/* =========================================================
   DATA SHOWCASE — Pausa dashboard mockups
   ========================================================= */
.showcase { padding: clamp(96px, 13vw, 168px) 0; }
.showcase-head { max-width: 60ch; margin-bottom: clamp(44px, 5vw, 68px); }
.showcase-head .h2 { margin: 18px 0 18px; }
.showcase-head .lede { margin-top: 6px; }

/* data-protection trust strip */
.data-privacy {
  margin-top: clamp(28px, 3.4vw, 44px);
  display: flex; gap: 20px; align-items: flex-start;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 2.6vw, 30px) clamp(22px, 2.8vw, 34px);
}
.data-privacy .dp-ico {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sage-tint); color: var(--moss);
}
.data-privacy .dp-ico svg { width: 24px; height: 24px; }
.data-privacy .dp-title { margin: 2px 0 0; font-family: var(--serif); font-size: clamp(18px, 1.9vw, 21px); color: var(--ink); }
.data-privacy .dp-text { margin: 8px 0 0; font-size: 15px; line-height: 1.55; color: var(--ink-soft); max-width: 70ch; text-wrap: pretty; }
.data-privacy .dp-certs { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 9px; }
.data-privacy .dp-certs span {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.03em; white-space: nowrap;
  color: var(--moss); background: rgba(60,80,64,0.07);
  border: 1px solid rgba(60,80,64,0.14); border-radius: 100px;
  padding: 5px 13px;
}
@media (max-width: 560px) { .data-privacy { flex-direction: column; gap: 14px; } }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 28px); margin-top: clamp(18px, 2.4vw, 28px); align-items: start; }
.dash-row-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .dash-row-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 780px) { .dash-row, .dash-row-3 { grid-template-columns: 1fr; } }

.dash {
  margin: 0; background: #FBFAF6; border: 1px solid var(--line);
  border-radius: 20px; padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 50px 100px -64px rgba(35,39,31,0.45);
}
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dash-brand { display: inline-flex; align-items: center; gap: 7px; font-family: var(--serif); font-size: 17px; color: var(--ink); }
.dash-brand img { width: 18px; height: 18px; }
.dash-url { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--stone); }
.dash-klabel { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); display: block; margin-bottom: 10px; }
.dash-big { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5vw, 60px); line-height: 0.95; letter-spacing: -0.02em; color: var(--ink); }
.dash-big.sm { font-size: clamp(30px, 3.4vw, 40px); }
.dash-big .u { font-size: 0.4em; color: var(--stone); letter-spacing: 0; }
.dash-state { font-size: 14px; margin: 12px 0 16px; }
.dash-state.good { color: var(--moss); }
.dash-state.act-text { color: #9E4F3F; }
.dash-foot { font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em; color: var(--stone); margin: 18px 0 0; }

.dash-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 52px); align-items: center; }
@media (max-width: 720px) { .dash-grid { grid-template-columns: 1fr; gap: 28px; } }

/* segmented bar */
.dash-seg { display: flex; gap: 5px; margin: 4px 0 18px; }
.dash-seg .seg { flex: 1; height: 10px; border-radius: 3px; background: var(--paper-3); }
.dash-seg.tone-moss .seg.on { background: var(--moss); }

.dash-samples { display: flex; gap: 8px; }
.samp { font-size: 12px; font-weight: 500; color: var(--moss-deep); background: var(--sage); padding: 6px 14px; border-radius: 100px; }

.dash-systems { display: flex; flex-direction: column; gap: 16px; }
.sys-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.sys-name { font-size: 14.5px; color: var(--ink); font-weight: 450; }
.sys-pill { font-size: 11px; font-weight: 600; letter-spacing: 0.03em; padding: 3px 11px; border-radius: 100px; }
.sys-pill.is-good { color: var(--moss-deep); background: var(--sage); }
.sys-pill.is-watch { color: #6F4E2E; background: #EAD9C2; }
.sys-pill.is-act { color: #fff; background: #9E4F3F; }
.sys-bar { height: 7px; border-radius: 4px; background: var(--paper-3); overflow: hidden; }
.sys-fill { display: block; height: 100%; border-radius: 4px; }
.sys-fill.is-good { background: var(--moss); }
.sys-fill.is-watch { background: #C08A52; }
.sys-fill.is-act { background: #9E4F3F; }

/* dimensions bars */
.dims { display: flex; flex-direction: column; gap: 16px; margin-top: 6px; }
.dim-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; font-size: 14.5px; color: var(--ink); }
.dim-v { font-family: var(--serif); font-size: 17px; color: var(--moss); }
.dim-bar { height: 8px; border-radius: 4px; background: var(--paper-3); overflow: hidden; }
.dim-fill { display: block; height: 100%; border-radius: 4px; background: var(--moss); }

/* mirror 360 */
.mirror { display: flex; flex-direction: column; gap: 18px; margin-top: 6px; }
.mirror-track { position: relative; height: 8px; border-radius: 4px; background: var(--paper-3); }
.mirror-self, .mirror-peer { position: absolute; top: 50%; width: 14px; height: 14px; border-radius: 50%; transform: translate(-50%, -50%); }
.mirror-self { background: var(--moss); }
.mirror-peer { background: #FBFAF6; border: 2px solid var(--clay); }
.mirror-legend { display: flex; gap: 22px; margin-top: 18px; font-size: 12.5px; color: var(--ink-soft); }
.mirror-legend i { display: inline-block; width: 11px; height: 11px; border-radius: 50%; margin-right: 7px; vertical-align: middle; }
.mirror-legend .dot-self { background: var(--moss); }
.mirror-legend .dot-peer { background: #FBFAF6; border: 2px solid var(--clay); }

/* =========================================================
   ASK AN AI
   ========================================================= */
.askai { padding: clamp(96px, 13vw, 168px) 0 clamp(40px, 6vw, 80px); background: transparent; }
.askai-card {
  background: linear-gradient(135deg, oklch(0.50 0.11 125deg) 0%, oklch(0.48 0.13 168deg) 100%);
  color: var(--paper);
  border-radius: 28px; padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 64px);
  text-align: center;
  box-shadow: 0 50px 100px -60px oklch(0.40 0.12 145deg / 0.5);
}
.askai-eyebrow { color: rgba(255,255,255,0.85); }
.askai-card ::selection { background: var(--paper); color: oklch(0.40 0.12 145deg); }
.askai-title { color: var(--paper); margin: 0 auto; max-width: 20ch; }
.askai-title em { color: oklch(0.88 0.06 145deg); }
.askai-sub { font-size: 16px; color: rgba(248,238,232,0.78); margin: 18px 0 30px; }
.askai-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.askai-btn {
  background: var(--paper); color: var(--ink);
  font-size: 15px; font-weight: 500; padding: 14px 28px; border-radius: 100px;
  white-space: nowrap;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.askai-btn:hover { transform: translateY(-2px); background: #fff; }
@media (max-width: 540px) { .askai-btn { width: 100%; max-width: 280px; } }

/* =========================================================
   LEGAL FOOTER (dark)
   ========================================================= */
.legal { background: var(--moss-deep); color: rgba(245,246,238,0.7); padding: clamp(60px, 8vw, 92px) 0 34px; }
.legal ::selection { background: #fff; color: var(--moss-deep); }
.legal .pausa-logo { color: var(--sage); }
.legal .pausa-logo .wm { color: var(--paper); }
.legal-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.13);
}.legal-brand { display: flex; flex-direction: column; gap: 24px; }
.legal-partner-logo { display: flex; flex-direction: column; gap: 8px; }
.legal-partner-logo .ufl-row { display: flex; align-items: center; gap: 11px; }
.legal-partner-logo .ufl-mark { height: 26px; width: auto; display: block; }
.legal-partner-logo .ufl-name { font-size: 14px; font-weight: 500; color: rgba(245,246,238,0.85); }
.legal-partner-logo span { font-size: 11px; color: rgba(245,246,238,0.42); letter-spacing: 0.03em; }
.legal-col h4 { font-size: 14.5px; font-weight: 600; color: var(--paper); margin: 0 0 14px; }
.legal-col .addr { font-size: 14.5px; line-height: 1.75; color: rgba(245,246,238,0.62); margin: 0; }
.legal-col a {
  display: block; font-size: 14.5px; line-height: 1.9; color: rgba(245,246,238,0.66);
  transition: color .3s var(--ease); cursor: pointer; width: fit-content;
}
.legal-col a:hover { color: var(--paper); }
.legal-bottom {
  display: flex; align-items: center; gap: 30px; padding-top: 26px;
  font-size: 13px; color: rgba(245,246,238,0.5); flex-wrap: wrap;
}
.legal-bottom .copy { font-family: var(--serif); }
.legal-bottom a { transition: color .3s; }
.legal-bottom a:hover { color: var(--paper); }
@media (max-width: 760px) { .legal-top { grid-template-columns: 1fr 1fr; } .legal-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .legal-top { grid-template-columns: 1fr; } }

/* =========================================================
   PILLAR CURSOR GLOW (cursor-following moss/sage glow)
   ========================================================= */
.pillar-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0; transition: opacity .5s var(--ease);
  background:
    radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%),
      rgba(120,151,108,0.4) 0%,
      rgba(98,131,98,0.2) 34%,
      rgba(98,131,98,0) 66%);
}
.pillar-card:hover .pillar-glow { opacity: 1; }
.pillar-card:hover .glyph { opacity: 1; transform: translateZ(30px) translateY(-3px); }
@media (hover: none) {
  .pillar-glow, .pillar-sheen { display: none; }
  .pillar-card::before { display: none; }
  .pillar-card { transform: none !important; }
}

/* =========================================================
   DASHBOARD APP FRAME — sidebar chrome + ambient figure
   ========================================================= */
.showcase { position: relative; overflow-x: clip; }
.showcase .wrap { position: relative; z-index: 1; }

/* secondary dashboard cards (vitality / energy drains / 360°) — tighter type, bottoms aligned */
.dash-row.dash-row-3 { align-items: stretch; }
.dash-row-3 .dash { padding: clamp(20px, 2.4vw, 28px); display: flex; flex-direction: column; }
.dash-row-3 .dash .dash-foot { margin-top: auto; padding-top: 16px; }
.dash-row-3 .dash .dash-klabel { font-size: 10px; letter-spacing: 0.14em; margin-bottom: 8px; }
.dash-row-3 .dash .dash-big.sm { font-size: clamp(24px, 2.5vw, 30px); }
.dash-row-3 .dash .dash-big .u { font-size: 0.42em; }
.dash-row-3 .dash .dash-state { font-size: 12.5px; margin: 9px 0 14px; }
.dash-row-3 .dash .dash-foot { font-size: 10px; margin-top: 14px; }
.dash-row-3 .dash .dash-systems,
.dash-row-3 .dash .dims,
.dash-row-3 .dash .mirror { gap: 13px; }
.dash-row-3 .dash .sys-name,
.dash-row-3 .dash .dim-top { font-size: 13px; margin-bottom: 6px; }
.dash-row-3 .dash .dim-v { font-size: 14.5px; }
.dash-row-3 .dash .sys-pill { font-size: 10px; padding: 3px 9px; }
.dash-row-3 .dash .sys-bar,
.dash-row-3 .dash .dim-bar,
.dash-row-3 .dash .mirror-track { height: 6px; }
.dash-row-3 .dash .mirror-self,
.dash-row-3 .dash .mirror-peer { width: 12px; height: 12px; }
.dash-row-3 .dash .mirror-legend { font-size: 11px; margin-top: 14px; gap: 18px; }

.appwin {
  position: relative;
  display: grid; grid-template-columns: auto 1fr;
  margin-top: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 26px; overflow: hidden;
  background: linear-gradient(180deg, #FCFBF7 0%, #F4F6EE 100%);
  box-shadow: 0 60px 120px -70px rgba(35,39,31,0.5), 0 2px 0 rgba(255,255,255,0.6) inset;
}
.app-rail {
  background: linear-gradient(180deg, #4B6251 0%, #36492F 52%, #29382A 100%);
  padding: 24px 16px; display: flex; flex-direction: column; gap: 22px;
  min-width: 150px;
}
.rail-brand { padding: 2px 8px 4px; }
.app-rail .pausa-logo { gap: 9px; }
.app-rail .pausa-logo .pausa-glyph { width: 22px; height: 22px; opacity: 0.95; }
.app-rail .pausa-logo .wm { color: var(--paper); font-size: 19px; font-weight: 450; }
.rail-items { display: flex; flex-direction: column; gap: 3px; }
.rail-item {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 11px; border-radius: 11px; cursor: default;
  color: rgba(245,246,238,0.6);
  font-size: 12.5px; font-weight: 450; letter-spacing: 0.004em; line-height: 1.2;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.rail-item .rail-ico { width: 18px; height: 18px; flex: none; display: flex; }
.rail-item .rail-ico svg { width: 100%; height: 100%; }
.rail-item:hover { color: rgba(245,246,238,0.92); }
.rail-item.on { background: rgba(245,246,238,0.15); color: var(--paper); }

.app-main {
  min-width: 0; padding: clamp(18px, 2.4vw, 30px);
  display: flex; flex-direction: column; gap: clamp(16px, 2.2vw, 26px);
}
.app-bar { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.app-bar-title { font-family: var(--serif); font-size: clamp(18px, 2vw, 23px); color: var(--ink); }
.app-bar-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--stone); white-space: nowrap; }
.app-main .dash-row { margin-top: 0; }
.app-main .dash {
  box-shadow: 0 26px 54px -42px rgba(35,39,31,0.42);
  border-color: var(--line);
}

/* =========================================================
   3D TILT — sanctuary images + dashboard window
   ========================================================= */
/* reusable tilt-on-hover wrapper */
.tilt3d { perspective: 900px; }
.tilt3d-inner {
  width: 100%; height: 100%;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale(var(--s, 1));
  transform-style: preserve-3d;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
  border-radius: 14px;
}
.tilt3d-inner:hover { box-shadow: 0 34px 64px -34px rgba(35,53,40,0.55); }
.sanctuary-strip .tilt3d { width: 100%; height: 100%; }
.sanctuary-strip .tilt3d-inner image-slot { width: 100%; height: 100%; }

/* dashboard window — whole frame tilts, inner cards parallax in depth */
.appwin-stage { perspective: 1500px; perspective-origin: 50% 40%; padding: 40px 20px; margin: -40px -20px; }
.appwin {
  transform: rotateX(var(--ax, 0deg)) rotateY(var(--ay, 0deg)) translateZ(0);
  transform-style: preserve-3d;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
  box-shadow: var(--shx, 0px) var(--shy, 60px) 120px -60px rgba(35,39,31,0.5);
}
.appwin-stage:hover .appwin {
  transform: rotateX(var(--ax, 0deg)) rotateY(var(--ay, 0deg)) translateZ(60px);
  box-shadow: var(--shx, 0px) var(--shy, 80px) 160px -55px rgba(35,39,31,0.62), 0 2px 0 rgba(255,255,255,0.6) inset;
}
.appwin .app-rail, .appwin .app-main { transform-style: preserve-3d; }
.app-main .dash, .app-main .app-bar, .appwin .app-rail {
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.appwin-stage:hover .app-main .dash-primary { transform: translateZ(30px); }
.appwin-stage:hover .app-main .dash-row-3 .dash { transform: translateZ(18px); }
.appwin-stage:hover .app-main .app-bar { transform: translateZ(22px); }
.appwin-stage:hover .appwin .app-rail { transform: translateZ(8px); }
/* individual card lifts further when pointed at */
.appwin-stage:hover .app-main .dash-row-3 .dash:hover { transform: translateZ(40px) translateY(-5px); }

@media (prefers-reduced-motion: reduce), (pointer: coarse) {
  .tilt3d-inner, .appwin,
  .app-main .dash, .app-main .app-bar, .appwin .app-rail { transition: none; }
  .appwin { transform: none !important; }
  .appwin-stage:hover .app-main .dash-primary,
  .appwin-stage:hover .app-main .dash-row-3 .dash,
  .appwin-stage:hover .app-main .app-bar,
  .appwin-stage:hover .appwin .app-rail,
  .appwin-stage:hover .app-main .dash-row-3 .dash:hover { transform: none; }
}

@media (max-width: 900px) and (min-width: 721px) {
  .app-rail { min-width: 0; padding: 20px 12px; }
  .rail-item { justify-content: center; padding: 11px; }
  .rail-item .rail-label { display: none; }
  .rail-brand { align-self: center; padding: 2px 0 4px; }
  .app-rail .pausa-logo .wm { display: none; }
}
@media (max-width: 720px) {
  .showcase-figure-bg { display: none; }
  .appwin { grid-template-columns: 1fr; }
  .app-rail {
    flex-direction: row; align-items: center; gap: 10px;
    min-width: 0; padding: 12px; overflow-x: auto;
  }
  .rail-brand { display: none; }
  .rail-items { flex-direction: row; gap: 6px; }
  .rail-item { padding: 9px; }
  .rail-item .rail-label { display: none; }
}

/* =========================================================
   RESET — soft animated oklch gradient (sage/green family)
   ========================================================= */
@property --pHue1 { syntax: "<angle>"; inherits: false; initial-value: 128deg; }
@property --pHue2 { syntax: "<angle>"; inherits: false; initial-value: 162deg; }

.reset { background: #E6ECDE; color: var(--ink); }
.reset-oklch {
  position: absolute; inset: 0;
  background-color: #E6ECDE; /* fallback if oklch interpolation unsupported */
  background-image:
    linear-gradient(in oklch to right,
      oklch(0.93 0.062 var(--pHue1) / 0.85),
      oklch(0.96 0.05 var(--pHue2) / 0.85)),
    linear-gradient(in oklch to bottom,
      oklch(0.9 0.07 var(--pHue1) / 0.8),
      oklch(0.95 0.052 var(--pHue2) / 0.8));
  background-size: 100% 100%;
  animation: pausaHue 16s linear infinite alternate;
}
@keyframes pausaHue {
  0%   { --pHue1: 116deg; --pHue2: 158deg; }
  100% { --pHue1: 172deg; --pHue2: 206deg; }
}
@media (prefers-reduced-motion: reduce) { .reset-oklch, .chat-fab, .qchip:hover { animation: none; } }

/* light-background overrides for the reset content */
.reset-veil {
  background:
    linear-gradient(180deg, rgba(251,250,246,0.4) 0%, rgba(251,250,246,0) 36%),
    radial-gradient(80% 80% at 50% 122%, rgba(221,228,211,0.5), rgba(221,228,211,0) 72%);
}
.reset-path path { stroke: rgba(60,80,64,0.34); }
.reset-kicker { color: var(--stone); }
.reset-title { color: var(--ink); }
.reset-title em { color: var(--moss); }
.reset-sub { color: var(--ink-soft); }

/* =========================================================
   PLAYBOOK — gated PDF download (lead magnet)
   ========================================================= */
.playbook {
  background: transparent;
  color: var(--ink);
  padding: clamp(80px, 11vw, 150px) 0;
}
.playbook ::selection { background: var(--sage); color: var(--moss-deep); }
.pb-grid {
  display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(40px, 6vw, 92px); align-items: center;
}
.pb-eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--moss); display: block;
}
.pb-title { color: var(--ink); margin: 22px 0 0; max-width: 12ch; }
.pb-lede {
  color: var(--ink-soft); max-width: 46ch;
  margin: 26px 0 0; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6;
}
.pb-list { list-style: none; margin: 34px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.pb-item { display: flex; align-items: center; gap: 14px; font-size: 16px; color: var(--ink-soft); }
.pb-check { width: 26px; height: 26px; flex: none; color: var(--moss); display: block; }
.pb-check svg { width: 100%; height: 100%; display: block; }

.pb-card {
  background: linear-gradient(150deg, #AD5E46 0%, #934832 100%);
  border: 1px solid rgba(245,246,238,0.14);
  border-radius: 22px;
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: 0 50px 100px -64px rgba(0,0,0,0.6);
}
.pb-card-title { font-family: var(--serif); font-weight: 450; font-size: clamp(23px, 2.4vw, 30px); color: var(--paper); margin: 0; letter-spacing: -0.01em; }
.pb-card-meta { display: block; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,246,238,0.5); margin: 12px 0 26px; }

.pb-form { display: flex; flex-direction: column; gap: 14px; }
.pb-field { position: relative; }
.pb-field input {
  width: 100%; box-sizing: border-box;
  background: rgba(245,246,238,0.06);
  border: 1px solid rgba(245,246,238,0.16);
  border-radius: 12px; padding: 16px 18px;
  font-family: var(--sans); font-size: 16px; color: var(--paper);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.pb-field input::placeholder { color: rgba(245,246,238,0.42); }
.pb-field input:focus { outline: none; border-color: var(--sage); background: rgba(245,246,238,0.1); }
.pb-field.invalid input { border-color: #D88E72; }
.pb-err { display: block; font-size: 12.5px; color: #E7B49E; margin: 7px 2px 0; }

.pb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  width: 100%; box-sizing: border-box; cursor: pointer;
  background: #EAF1D4; color: var(--moss-deep);
  border: none; border-radius: 12px; padding: 17px 22px;
  font-family: var(--sans); font-size: 16px; font-weight: 600; letter-spacing: 0.005em;
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 14px 30px -16px rgba(0,0,0,0.6);
}
.pb-btn:hover { background: #F2F7E2; transform: translateY(-1px); }
.pb-btn:disabled { opacity: 0.7; cursor: default; transform: none; }
.pb-dl-ico { width: 19px; height: 19px; flex: none; }
.pb-micro { text-align: center; font-size: 13px; color: rgba(245,246,238,0.5); margin: 16px 0 0; }

.pb-done { text-align: center; padding: 8px 0 4px; }
.pb-done-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 50%; margin-bottom: 16px;
  background: rgba(221,228,211,0.16); color: var(--sage);
}
.pb-done-title { font-family: var(--serif); font-size: 21px; color: var(--paper); margin: 0; }
.pb-done-sub { font-size: 14.5px; color: rgba(245,246,238,0.7); margin: 12px auto 0; max-width: 34ch; line-height: 1.5; }
.pb-done-sub a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }

@media (max-width: 900px) {
  .pb-grid { grid-template-columns: 1fr; gap: 40px; }
  .pb-title { max-width: none; }
}

/* =========================================================
   SPRING MOUSE FOLLOW (soft blob trailing the cursor)
   ========================================================= */
.spring-cursor {
  position: fixed; top: 0; left: 0;
  width: 46px; height: 46px; border-radius: 50%;
  pointer-events: none; z-index: 45; opacity: 0;
  background: radial-gradient(circle at center, rgba(35,39,31,0.40), rgba(35,39,31,0.10) 55%, rgba(35,39,31,0) 72%);
  will-change: transform, opacity;
}
@media (hover: none) { .spring-cursor { display: none; } }

/* =========================================================
   FAQ CHAT (inline panel + floating launcher)
   ========================================================= */
.chat-inline {
  margin-top: 8px;
  background: rgba(255,255,255,0.66);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 30px 70px -52px rgba(35,39,31,0.5);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  overflow: hidden;
  max-width: 760px;
}
.chat { display: flex; flex-direction: column; }
.chat-log {
  display: flex; flex-direction: column; gap: 16px;
  padding: 26px 26px 8px;
  max-height: 380px; overflow-y: auto;
  scrollbar-width: thin;
}
.chat-pop .chat-log { max-height: 340px; }
.chat-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 22px; border-bottom: 1px solid var(--line);
  background: var(--sage-tint);
}
.chat-head .chat-ava { width: 38px; height: 38px; font-size: 18px; }
.chat-head-name { font-family: var(--serif); font-size: 17px; color: var(--ink); line-height: 1.1; }
.chat-head-status { display: flex; align-items: center; gap: 7px; white-space: nowrap; font-size: 12.5px; color: var(--stone); margin-top: 3px; }
.chat-status-dot { width: 8px; height: 8px; border-radius: 50%; background: oklch(0.7 0.16 150); box-shadow: 0 0 0 3px rgba(120,151,108,0.18); }
.chat-msg { display: flex; gap: 10px; align-items: flex-start; max-width: 92%; }
.chat-msg.user { margin-left: auto; flex-direction: row-reverse; }
.chat-msg-body { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.chat-msg.user .chat-msg-body { align-items: flex-end; }
.chat-time { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--stone-2); padding: 0 4px; }
.chat-ava {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--moss); color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px; line-height: 1;
}
.chat-ava.sm { width: 30px; height: 30px; font-size: 11px; font-family: var(--mono); letter-spacing: 0; }
.chat-ava.user { background: var(--clay); }
.chat-bubble {
  padding: 12px 16px; border-radius: 12px;
  font-size: 15px; line-height: 1.55;
}
.chat-msg.assistant .chat-bubble {
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-top-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: var(--moss); color: var(--paper);
  border-top-right-radius: 4px;
}
.chat-bubble p { margin: 0; text-wrap: pretty; }
.chat-book {
  margin-top: 12px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--moss);
  border: 1px solid var(--moss); border-radius: 100px;
  padding: 8px 15px; font-family: var(--sans); font-size: 13px; font-weight: 500;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.chat-book:hover { background: var(--moss); color: var(--paper); }
.chat-book-arrow { transition: transform .3s var(--ease); }
.chat-book:hover .chat-book-arrow { transform: translateX(3px); }
.chat-typing { display: inline-flex; gap: 5px; padding: 3px 2px; }
.chat-typing i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--stone);
  animation: chatdot 1s var(--ease) infinite;
}
.chat-typing i:nth-child(2) { animation-delay: .15s; }
.chat-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes chatdot { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 26px 4px; }
.chat-pop .chat-chips { padding: 12px 18px 4px; }
.chat-chip {
  cursor: pointer; background: rgba(60,80,64,0.06); color: var(--moss);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 14px; font-family: var(--sans); font-size: 13px;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.chat-chip:hover { background: var(--moss); color: var(--paper); border-color: var(--moss); }
.chat-input { display: flex; gap: 10px; padding: 16px 22px 20px; align-items: center; }
.chat-pop .chat-input { padding: 14px 16px 16px; }
.chat-input input {
  flex: 1; box-sizing: border-box;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 100px; padding: 13px 18px;
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  transition: border-color .3s var(--ease);
}
.chat-input input::placeholder { color: var(--stone); }
.chat-input input:focus { outline: none; border-color: var(--moss); }
.chat-send {
  flex: none; width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--moss); color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), transform .3s var(--ease), opacity .3s var(--ease);
}
.chat-send:hover:not(:disabled) { background: var(--moss-deep); transform: translateY(-1px); }
.chat-send:disabled { opacity: .4; cursor: default; }

/* Floating launcher */
.chat-fab-wrap { position: fixed; right: clamp(16px, 3vw, 32px); bottom: clamp(16px, 3vw, 32px); z-index: 80; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.chat-fab {
  width: 58px; height: 58px; border-radius: 50%; border: 1px solid rgba(60,80,64,0.16); cursor: pointer;
  background-color: #E6ECDE;
  background-image:
    linear-gradient(in oklch to right, oklch(0.93 0.062 var(--pHue1) / 0.85), oklch(0.96 0.05 var(--pHue2) / 0.85)),
    linear-gradient(in oklch to bottom, oklch(0.9 0.07 var(--pHue1) / 0.8), oklch(0.95 0.052 var(--pHue2) / 0.8));
  background-size: 100% 100%;
  animation: pausaHue 16s linear infinite alternate;
  color: var(--moss);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px; line-height: 1;
  box-shadow: 0 18px 36px -16px rgba(35,39,31,0.45);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.chat-fab:hover { transform: translateY(-2px); box-shadow: 0 24px 46px -16px rgba(35,39,31,0.55); }
.chat-pop {
  width: min(380px, calc(100vw - 32px));
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 22px;
  box-shadow: 0 50px 100px -40px rgba(35,39,31,0.55);
  overflow: hidden;
  animation: chatpop .3s var(--ease) both;
}
@keyframes chatpop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.chat-pop-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid var(--line);
  background: var(--sage-tint);
}
.chat-pop-title { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 17px; color: var(--ink); }
.chat-pop-close { background: none; border: none; cursor: pointer; font-size: 24px; line-height: 1; color: var(--stone); padding: 0 4px; }
.chat-pop-close:hover { color: var(--ink); }


/* ================================================================
   CONVERSION UPDATE — full CSS block
   ================================================================ */

/* ----- Nav brand tagline ----- */
.nav-tagline {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft);
  display: none; /* shown at wider viewports below */
  white-space: nowrap;
}
@media (min-width: 1100px) {
  .nav-tagline { display: block; }
  .brand { gap: 12px; }
}

/* ----- Ghost button (hero secondary CTA) ----- */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px; border: 1.5px solid var(--moss); border-radius: 40px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--moss); background: transparent;
  text-decoration: none; transition: background 0.22s var(--ease), color 0.22s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn-ghost:hover { background: var(--moss); color: var(--cream); }

/* ----- Founder credibility line ----- */
.founder-cred {
  font-size: 12px; color: var(--ink-soft); line-height: 1.5; margin-top: 8px; opacity: 0.8;
}

/* ================================================================
   RISK STRIP
   ================================================================ */
.risk-strip { background: var(--ink); padding: clamp(24px, 4vw, 40px) 0; }
.risk-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: oklch(65% 0.05 145); margin: 0 0 16px 0;
}
.risk-items { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 18px; }
.risk-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 13px; color: oklch(86% 0.02 145);
}
.risk-dot { width: 5px; height: 5px; border-radius: 50%; background: oklch(58% 0.12 145); flex-shrink: 0; }
.risk-stat {
  font-family: var(--sans); font-size: 13px; color: oklch(62% 0.04 145); line-height: 1.5;
  border-top: 1px solid oklch(100% 0 0 / 0.08); padding-top: 14px; margin: 0;
}
.risk-stat strong { color: oklch(94% 0.03 145); }
.risk-src {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: oklch(52% 0.05 145); margin-left: 6px;
}

/* ================================================================
   ROI MATH BLOCK
   ================================================================ */
.roi-math {
  margin-top: clamp(40px, 5vw, 64px); background: oklch(97.5% 0.008 100);
  border: 1.5px solid var(--line); border-radius: 18px;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 56px);
}
.roi-math-inner { display: flex; align-items: center; gap: clamp(20px, 4vw, 48px); flex-wrap: wrap; }
.roi-math-col { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 6px; }
.roi-math-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.roi-math-fig { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 44px); font-weight: 350; letter-spacing: -0.02em; line-height: 1.1; }
.roi-math-fig-cost { color: oklch(40% 0.12 30); }
.roi-math-fig-pausa { color: oklch(32% 0.09 145); }
.roi-math-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }
.roi-math-vs {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: var(--stone);
  text-transform: uppercase; padding: 7px 14px; background: var(--line); border-radius: 40px;
  flex-shrink: 0; align-self: center;
}
.roi-math-note {
  margin: 22px 0 0 0; padding-top: 18px; border-top: 1px solid var(--line);
  font-family: var(--serif); font-style: italic; font-size: clamp(15px, 1.5vw, 18px); color: var(--ink);
}

/* ================================================================
   PRICING — team math callout
   ================================================================ */
.price-team-math {
  display: flex; flex-direction: column; gap: 3px; background: oklch(96% 0.015 145);
  border: 1px solid oklch(88% 0.04 145); border-radius: 10px; padding: 10px 14px; margin-top: 4px;
}
.ptm-eg { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss); }
.ptm-total { font-family: var(--serif); font-size: 20px; font-weight: 450; letter-spacing: -0.02em; color: var(--ink); }
.ptm-note { font-size: 11.5px; color: var(--ink-soft); line-height: 1.4; }

/* ================================================================
   SCIENCE SECTION
   ================================================================ */
.science { padding: clamp(80px, 11vw, 140px) 0; }
.science-head { max-width: 680px; margin-bottom: clamp(48px, 6vw, 80px); }
.science-head h2 { margin-bottom: 16px; }
.science-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 32px); }
.science-card {
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 16px;
  padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 8px;
}
.sci-num { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }
.sci-title { font-family: var(--serif); font-size: clamp(17px, 1.7vw, 21px); font-weight: 450; letter-spacing: -0.02em; color: var(--ink); margin: 2px 0 0 0; }
.sci-src { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--moss); margin-bottom: 4px; }
.sci-body { font-size: 14px; line-height: 1.65; color: var(--ink-soft); margin: 0; }
@media (max-width: 860px) { .science-grid { grid-template-columns: 1fr; } }

/* ================================================================
   PROGRAMME TIMELINE
   ================================================================ */
.tl-section { padding: clamp(80px, 11vw, 140px) 0; background: oklch(97.5% 0.008 100); }
.tl-head { max-width: 680px; margin-bottom: clamp(48px, 6vw, 80px); }
.tl-steps { display: flex; flex-direction: column; }
.tl-step { display: grid; grid-template-columns: 56px 1fr; gap: 0 20px; align-items: stretch; }
.tl-rail { display: flex; flex-direction: column; align-items: center; padding-top: 6px; }
.tl-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--moss); color: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tl-line { width: 2px; flex: 1; min-height: 32px; background: var(--line); margin: 4px 0; }
.tl-body { padding: 0 0 40px 0; }
.tl-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.tl-period { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); }
.tl-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); background: var(--line); padding: 2px 8px; border-radius: 20px; }
.tl-title { font-family: var(--serif); font-size: clamp(17px, 1.7vw, 21px); font-weight: 450; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 8px 0; }
.tl-desc { font-size: 14px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials { padding: clamp(80px, 11vw, 140px) 0; background: oklch(16% 0.04 145); }
.test-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.test-head .kicker { color: oklch(60% 0.07 145); }
.test-head .h2 { color: oklch(96% 0.01 145); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); padding-top: 56px; }
.test-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; overflow: visible; display: flex; flex-direction: column;
  align-items: center; text-align: center;
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.08);
  position: relative; padding: 0 0 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.test-card:hover { box-shadow: 0 12px 40px -12px rgba(0,0,0,0.13); transform: translateY(-3px); }
/* Floating avatar */
.test-avatar-wrap {
  width: 88px; height: 88px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  margin-top: -44px; margin-bottom: 0;
  border: 3px solid var(--paper);
  box-shadow: 0 4px 16px -4px rgba(0,0,0,0.14);
}
.test-avatar-img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
/* Content */
.test-content { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 16px 28px 0; width: 100%; }
.test-identity { display: flex; flex-direction: column; gap: 3px; }
.test-name { display: block; font-size: 15px; font-weight: 500; color: var(--ink); }
.test-role { display: block; font-size: 12px; color: var(--ink-soft); }
.test-body { font-family: var(--serif); font-style: italic; font-size: clamp(14px, 1.3vw, 15.5px); line-height: 1.65; color: var(--ink-soft); margin: 0; border-top: 1px solid var(--line); padding-top: 14px; width: 100%; }
.test-footer { display: flex; align-items: center; justify-content: space-between; width: 100%; padding-top: 14px; border-top: 1px solid var(--line); }
.test-result-badge { display: flex; align-items: center; gap: 5px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss); }
.test-linkedin { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--line); color: var(--ink-soft); text-decoration: none; flex-shrink: 0; transition: color 0.15s, border-color 0.15s; }
.test-linkedin:hover { color: #0A66C2; border-color: #0A66C2; }
.test-disclaimer { margin-top: 22px; font-size: 12px; color: var(--ink-soft); text-align: center; }
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; padding-top: 56px; } }

/* ================================================================
   BURNOUT SELF-CHECK
   ================================================================ */
.sa-section { padding: clamp(80px, 11vw, 140px) 0; background: oklch(96.5% 0.01 80); }
.sa-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 64px); }
.sa-card { max-width: 760px; margin: 0 auto; background: var(--cream); border: 1.5px solid var(--line); border-radius: 20px; padding: clamp(28px, 5vw, 52px); }
.sa-questions { display: flex; flex-direction: column; gap: 26px; margin-bottom: 28px; }
.sa-q-text { font-size: clamp(14px, 1.4vw, 16px); color: var(--ink); margin: 0 0 12px 0; font-weight: 450; line-height: 1.4; }
.sa-scale { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sa-lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: var(--ink-soft); flex-shrink: 0; max-width: 80px; line-height: 1.3; }
.sa-lbl-lo { text-align: right; }
.sa-dots { display: flex; gap: 6px; }
.sa-dot { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line); background: transparent; font-family: var(--mono); font-size: 12px; color: var(--ink-soft); cursor: pointer; transition: background 0.18s, border-color 0.18s, color 0.18s; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sa-dot.on, .sa-dot:hover { background: var(--moss); border-color: var(--moss); color: var(--cream); }
.sa-progress-wrap { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.sa-progress-bar { height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; }
.sa-progress-bar span { display: block; height: 100%; background: var(--moss); border-radius: 2px; transition: width 0.3s var(--ease); }
.sa-progress-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.sa-submit { width: 100%; padding: 13px; background: var(--line); color: var(--stone); border: none; border-radius: 40px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; cursor: not-allowed; transition: background 0.22s, color 0.22s; }
.sa-submit.ready { background: var(--moss); color: var(--cream); cursor: pointer; }
.sa-submit.ready:hover { filter: brightness(1.08); }
.sa-result { display: flex; flex-direction: column; gap: 18px; }
.sa-result-top { display: flex; flex-direction: column; gap: 8px; }
.sa-result-header { display: flex; justify-content: space-between; align-items: baseline; }
.sa-result-label { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 26px); font-weight: 450; }
.sa-result-score { font-family: var(--mono); font-size: 11px; color: var(--stone); }
.sa-result-bar { height: 6px; background: var(--line); border-radius: 3px; overflow: hidden; }
.sa-result-bar span { display: block; height: 100%; border-radius: 3px; transition: width 0.6s var(--ease); }
.sa-good .sa-result-bar span { background: oklch(56% 0.14 145); } .sa-good .sa-result-label { color: oklch(30% 0.10 145); }
.sa-watch .sa-result-bar span { background: oklch(70% 0.13 80); } .sa-watch .sa-result-label { color: oklch(42% 0.10 80); }
.sa-act .sa-result-bar span { background: oklch(64% 0.14 50); } .sa-act .sa-result-label { color: oklch(38% 0.12 50); }
.sa-crit .sa-result-bar span { background: oklch(52% 0.16 25); } .sa-crit .sa-result-label { color: oklch(35% 0.14 25); }
.sa-result-desc { font-size: clamp(14px, 1.4vw, 16px); line-height: 1.6; color: var(--ink); }
.sa-retake { background: none; border: none; cursor: pointer; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--stone); text-decoration: underline; align-self: center; margin-top: 4px; }

/* ================================================================
   WHY PAUSA — differentiators
   ================================================================ */
.why-pausa { padding: clamp(80px, 11vw, 140px) 0; }
.why-head { max-width: 680px; margin-bottom: clamp(48px, 6vw, 80px); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
}
.why-card {
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 16px;
  padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 10px;
}
.why-num { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }
.why-title { font-family: var(--serif); font-size: clamp(16px, 1.6vw, 20px); font-weight: 450; letter-spacing: -0.02em; color: var(--ink); margin: 0; line-height: 1.25; }
.why-body { font-size: 14px; line-height: 1.65; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-section { padding: clamp(80px, 11vw, 140px) 0; background: oklch(97.5% 0.008 100); }
.faq-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 64px); }
.faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: clamp(15px, 1.5vw, 17px); font-weight: 450;
  color: var(--ink); text-align: left; line-height: 1.35;
  transition: color 0.18s var(--ease);
}
.faq-q:hover { color: var(--moss); }
.faq-icon { font-family: var(--mono); font-size: 20px; font-weight: 300; color: var(--moss); flex-shrink: 0; line-height: 1; }
.faq-a { font-size: 14px; line-height: 1.7; color: var(--ink-soft); padding: 0 0 20px 0; margin: 0; max-width: 680px; }
.faq-item.open .faq-q { color: var(--moss); }

/* ================================================================
   ASK AI — amplified eyebrow
   ================================================================ */
.askai-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin: 0 0 12px 0; }

/* ================================================================
   MOBILE
   ================================================================ */
@media (max-width: 720px) {
  .roi-math-inner { flex-direction: column; gap: 16px; }
  .roi-math-vs { align-self: flex-start; }
  .tl-step { grid-template-columns: 44px 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-ghost { align-self: flex-start; }
}


/* ================================================================
   SCIENCE FLIP CARDS
   ================================================================ */
.science-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
}
.sci-flip-wrap {
  perspective: 1200px;
  cursor: pointer;
  min-height: 260px;
  display: flex;
}
.sci-flip-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%; flex: 1;
  min-height: 260px;
}
.sci-flip-wrap:hover .sci-flip-inner,
.sci-flip-wrap.flipped .sci-flip-inner {
  transform: rotateY(180deg);
}
.sci-flip-front,
.sci-flip-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
}
.sci-flip-back {
  transform: rotateY(180deg);
}
.sci-back {
  background: oklch(22% 0.06 145) !important;
  border-color: transparent !important;
}
.sci-back .sci-num { color: oklch(55% 0.08 145); }
.sci-back .sci-title { color: oklch(94% 0.02 145); }
.sci-back .sci-body { color: oklch(78% 0.03 145); }
.sci-hint {
  display: block; margin-top: auto; padding-top: 14px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--moss); opacity: 0.7;
}
.science-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: clamp(22px, 3vw, 32px);
  height: 100%; box-sizing: border-box;
}

/* stat-range (smaller font for €50–120K) */
.stat-range {
  font-size: clamp(28px, 4vw, 46px) !important;
  line-height: 1.05;
}

/* nav tagline fix — ensure brand is flex */
.brand {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}
.nav-tagline {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-soft); opacity: 0.55;
  white-space: nowrap;
}
@media (max-width: 900px) { .nav-tagline { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .sci-flip-inner { transition: none; }
}


/* ================================================================
   SCIENCE CARD BACK — match "The reset" section atmosphere
   ================================================================ */
.sci-back {
  background: oklch(14% 0.055 155) !important;
  border-color: transparent !important;
}
.sci-back .sci-num { color: oklch(45% 0.07 145); }
.sci-back .sci-title { color: oklch(92% 0.02 145); }
.sci-back .sci-body { color: oklch(72% 0.04 145); line-height: 1.6; }

/* ================================================================
   NAV TAGLINE — always show on desktop
   ================================================================ */
.nav-tagline { display: block !important; }
@media (max-width: 768px) { .nav-tagline { display: none !important; } }


/* ================================================================
   ROUND 8 — nav, stats, action flip
   ================================================================ */

/* Nav tagline — match nav-links font (sans, normal case) */
.nav-tagline {
  font-family: var(--sans) !important;
  font-size: 12px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  opacity: 0.55;
  font-weight: 400;
}

/* Stat range — same size as other .num stats */
.stat .stat-range {
  font-size: clamp(52px, 7.5vw, 96px) !important;
  line-height: 0.9 !important;
}

/* PillarBenefits marquee — closer to the ROI stats */
.qband { margin-top: 0 !important; }
.roi { padding-bottom: clamp(32px, 4vw, 48px) !important; }

/* Action card flip */
.action-cards { align-items: stretch; }
.ac-flip-wrap {
  perspective: 1400px; cursor: pointer;
  display: flex; flex-direction: column;
}
.ac-flip-inner {
  position: relative; transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1; min-height: clamp(300px, 32vw, 360px);
}
.ac-flip-wrap:hover .ac-flip-inner,
.ac-flip-wrap.flipped .ac-flip-inner { transform: rotateY(180deg); }
.ac-flip-front, .ac-flip-back {
  position: absolute; inset: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: 20px;
}
.ac-flip-back { transform: rotateY(180deg); }
/* Front face: cream/border style like Why Pausa cards */
.ac-face-front {
  background: var(--cream) !important;
  border: 1.5px solid var(--line) !important;
  box-shadow: none !important;
}
.ac-face-front .ac-num { color: var(--ink-soft); }
.ac-face-front .ac-kicker { color: var(--moss); }
.ac-face-front .ac-title { color: var(--ink); }
.ac-hint {
  display: block; margin-top: auto; padding-top: 14px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--moss); opacity: 0.7;
}
@media (prefers-reduced-motion: reduce) {
  .ac-flip-inner { transition: none; }
}

/* Fix: sa-submit.ready — cream text on moss background */
.sa-submit.ready {
  background: var(--moss);
  color: var(--cream) !important;
  letter-spacing: 0.1em;
}
.sa-submit.ready:hover { filter: brightness(1.12); }

/* Move burnout marquee lower — more breathing room below stats */
.qband { margin-top: clamp(48px, 6vw, 80px) !important; }

/* 90-second load check — match the cream background of the section above */
.sa-section { background: var(--cream) !important; }

/* Score dots — selected state: light moss tint, dark text (legible) */
.sa-dot.on {
  background: oklch(88% 0.08 145) !important;
  border-color: oklch(50% 0.12 145) !important;
  color: oklch(20% 0.07 145) !important;
}
.sa-dot:hover:not(.on) {
  background: oklch(93% 0.04 145) !important;
  border-color: var(--moss) !important;
  color: var(--moss) !important;
}
/* See my result button — cream text on moss */
.sa-submit.ready {
  background: oklch(42% 0.1 145) !important;
  color: oklch(97% 0.01 145) !important;
}

/* Action card — front face descriptor text */
.ac-front-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

/* ================================================================
   TWO-PHASE ACTION CARDS
   ================================================================ */

/* 3-column grid for phase cards */
.action-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: clamp(16px, 2vw, 28px) !important;
}
@media (max-width: 720px) {
  .action-cards { grid-template-columns: 1fr !important; }
  .ac-flip-wrap.ac-flip-two { height: 580px !important; }
  .ac-flip-two .ac-flip-inner { min-height: 580px !important; height: 580px !important; }
}

/* Phase card wrapper — taller than 3-col cards */
.ac-flip-two {
  min-height: 380px !important;
}
.ac-flip-two .ac-flip-inner {
  min-height: 380px;
}
.ac-flip-two .action-card {
  min-height: 380px;
  justify-content: flex-start;
}

/* Phase label (replaces ac-num) */
.ac-phase-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 2px;
}

/* Phase name (replaces ac-kicker inside ac-num) */
.ac-kicker-standalone {
  font-family: var(--serif);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--moss);
  display: block;
  margin-bottom: 10px;
}

/* Larger title for two-card layout */
.ac-title-lg {
  font-size: clamp(20px, 2.2vw, 26px) !important;
  margin-bottom: 14px !important;
}

/* Back face of two-phase card — same green gradient as before */
.ac-flip-back-two {
  background: oklch(from hsl(var(--ph, 120deg) 28% 26%) l c h) !important;
}

/* Detail list on back */
.ac-detail-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ac-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: oklch(90% 0.03 145);
}
.ac-detail-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: oklch(70% 0.1 145);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ================================================================
   TWO-PHASE TIMELINE
   ================================================================ */
.tl-phases {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 72px);
}
.tl-phase-block {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 44px);
}
.tl-phase-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.tl-phase-pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 4px 12px;
  border-radius: 40px;
  flex-shrink: 0;
}
.tl-phase-name {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 450;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Fix ac-face-front background token — --cream → --paper */
.ac-face-front { background: var(--paper) !important; }

/* ================================================================
   PHASE CARDS — back face light (Why Pausa style) + bigger fonts
   ================================================================ */

/* Back face: light paper background matching Why Pausa cards */
.ac-flip-back-two {
  background: var(--paper) !important;
  border: 1.5px solid var(--line) !important;
}
.ac-flip-back-two .ac-phase-label { color: var(--stone) !important; }
.ac-flip-back-two .ac-kicker-standalone { color: var(--moss) !important; }
.ac-flip-back-two .ac-title-lg { color: var(--ink) !important; }
.ac-flip-back-two .ac-detail-item { color: var(--ink-soft) !important; }
.ac-flip-back-two .ac-detail-dot { background: var(--moss) !important; }

/* Bigger fonts on both faces */
.ac-flip-two .ac-front-desc {
  font-size: 15px !important;
  line-height: 1.65 !important;
}
.ac-flip-two .ac-detail-item {
  font-size: 15px !important;
  line-height: 1.55 !important;
}
.ac-flip-two .ac-title-lg {
  font-size: clamp(22px, 2.4vw, 28px) !important;
}
.ac-flip-two .ac-kicker-standalone {
  font-size: 14px !important;
}

/* ================================================================
   PHASE CARD — fix overflow + ensure correct background
   ================================================================ */

/* Tall enough to hold 7 bullets */
.ac-flip-two,
.ac-flip-two .ac-flip-inner,
.ac-flip-two .action-card {
  min-height: 540px !important;
}

/* Back face — paper background, no overflow */
.ac-flip-back-two {
  background: var(--paper) !important;
  border: 1.5px solid var(--line) !important;
  overflow: hidden !important;
}

/* Tighten bullet list to fit */
.ac-flip-back-two .ac-detail-list {
  gap: 7px !important;
  margin-top: 6px !important;
  padding-bottom: 12px !important;
}
.ac-flip-back-two .ac-detail-item {
  font-size: 13px !important;
  line-height: 1.45 !important;
}

/* Why Pausa cards — force --paper token */
.why-card { background: var(--paper) !important; }

/* ================================================================
   OKLCH ANIMATED GRADIENT — phase card backs
   ================================================================ */
@property --hue1 {
  syntax: "<angle>";
  inherits: false;
  initial-value: 30deg;
}
@property --hue2 {
  syntax: "<angle>";
  inherits: false;
  initial-value: 180deg;
}

@keyframes anim_bg_pausa {
  0%   { --hue1: 30deg;  --hue2: 180deg; }
  100% { --hue1: 390deg; --hue2: 540deg; }
}

.ac-flip-back-two {
  background-image:
    linear-gradient(
      in oklch longer hue to right,
      oklch(0.95 0.07 var(--hue1) / 70%),
      oklch(0.92 0.08 var(--hue2) / 70%)
    ),
    linear-gradient(
      in oklch longer hue to bottom,
      oklch(0.95 0.07 var(--hue1) / 70%),
      oklch(0.92 0.08 var(--hue2) / 70%)
    ) !important;
  background-color: var(--paper) !important;
  background-size: 100% 100% !important;
  animation: anim_bg_pausa 6s linear infinite !important;
  border: 1.5px solid oklch(88% 0.04 145) !important;
}

/* Dark text stays readable on soft gradient */
.ac-flip-back-two .ac-phase-label  { color: oklch(38% 0.05 145) !important; }
.ac-flip-back-two .ac-kicker-standalone { color: oklch(30% 0.10 145) !important; }
.ac-flip-back-two .ac-title-lg     { color: oklch(18% 0.06 145) !important; }
.ac-flip-back-two .ac-detail-item  { color: oklch(28% 0.06 145) !important; }
.ac-flip-back-two .ac-detail-dot   { background: oklch(42% 0.12 145) !important; }

/* ================================================================
   CARD HEIGHT — tighter (was 540px, now fits content)
   ================================================================ */
.ac-flip-two,
.ac-flip-two .ac-flip-inner,
.ac-flip-two .action-card {
  min-height: 420px !important;
}

/* ================================================================
   PAUSA RESET — embedded YouTube video
   ================================================================ */
.reset-video {
  margin-top: clamp(36px, 5vw, 60px);
  width: 100%;
  max-width: 860px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px -16px oklch(10% 0.04 145 / 0.55);
  aspect-ratio: 16 / 9;
}
.reset-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Fix pill text colour */
.tl-phase-pill { color: oklch(97% 0.01 145) !important; }

/* Timeline video — between phases */
.tl-video { padding: clamp(20px, 3vw, 36px) 0; }
.tl-video-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--moss); margin: 0 0 14px 0;
}
.tl-video-wrap {
  width: 100%; max-width: 760px; border-radius: 14px;
  overflow: hidden; aspect-ratio: 16 / 9;
  box-shadow: 0 16px 48px -12px oklch(20% 0.06 145 / 0.2);
  border: 1.5px solid var(--line);
}
.tl-video-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* Testimonials — uniform card style */
.testimonials { background: var(--paper) !important; }
.test-head .kicker { color: var(--moss) !important; }
.test-head .h2 { color: var(--ink) !important; }

/* Native video in timeline — auto height, no forced aspect ratio */
.tl-video-wrap {
  aspect-ratio: unset !important;
  height: auto !important;
}
.tl-video-wrap video {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 12px;
}

/* Video — match full width of the phase card above it */
.tl-video-wrap {
  max-width: 100% !important;
}

/* ================================================================
   TESTIMONIAL CARD VARIANTS
   ================================================================ */

/* Variant 1 — Pull quote (Igor Pavlov) */
.test-card--pull {
  background: var(--moss) !important;
  border-color: var(--moss) !important;
}
.test-card--pull .test-pull-quote {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-style: italic;
  line-height: 1.45;
  color: oklch(96% 0.02 145);
  margin: 0 0 14px 0;
  font-weight: 350;
}
.test-card--pull .test-pull-sub {
  font-size: 13.5px;
  line-height: 1.65;
  color: oklch(80% 0.04 145);
  margin: 0 0 16px 0;
}
.test-card--pull .test-result { color: oklch(72% 0.1 145) !important; }
.test-card--pull .test-name { color: oklch(96% 0.02 145) !important; }
.test-card--pull .test-role { color: oklch(75% 0.04 145) !important; }
.test-card--pull .test-person { border-top-color: oklch(100% 0 0 / 0.12) !important; }

/* Variant 2 — Story (Felix Baumann) — default card style, already good */
.test-card--story .test-body {
  font-size: clamp(14px, 1.4vw, 16px) !important;
}

/* Variant 3 — Structured (Igor Myrgorodskyi) */
.test-card--structured {
  background: oklch(96% 0.012 80) !important;
}
.test-struct-intro {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 14px 0;
  line-height: 1.45;
}
.test-struct-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.test-struct-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.test-struct-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--moss); flex-shrink: 0; margin-top: 6px;
}

/* Remove variant overrides — all cards uniform style now */
.test-card--pull, .test-card--story, .test-card--structured {
  background: oklch(97.5% 0.008 100) !important;
  border: 1.5px solid var(--line) !important;
}
.test-card--pull .test-pull-quote,
.test-card--pull .test-pull-sub,
.test-card--pull .test-result,
.test-card--pull .test-name,
.test-card--pull .test-role,
.test-card--pull .test-person { all: unset; }

/* "How Pausa works" — match section above (cream/paper) */
.action { background: var(--paper) !important; }

/* ================================================================
   SCIENCE FLIP CARDS — match How Pausa works card design
   ================================================================ */

/* Wrapper + inner — consistent height */
.sci-flip-wrap {
  min-height: 260px !important;
  cursor: pointer;
}
.sci-flip-wrap .sci-flip-inner {
  min-height: 260px !important;
}
.sci-flip-wrap .science-card {
  min-height: 260px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  justify-content: flex-start !important;
}

/* Front — clean, minimal */
.sci-flip-front .sci-hint {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Back — animated oklch gradient (same as How Pausa works) */
.sci-flip-back.sci-back {
  background-image:
    linear-gradient(
      in oklch longer hue to right,
      oklch(0.95 0.07 var(--hue1) / 70%),
      oklch(0.92 0.08 var(--hue2) / 70%)
    ),
    linear-gradient(
      in oklch longer hue to bottom,
      oklch(0.95 0.07 var(--hue1) / 70%),
      oklch(0.92 0.08 var(--hue2) / 70%)
    ) !important;
  background-color: var(--paper) !important;
  background-size: 100% 100% !important;
  animation: anim_bg_pausa 6s linear infinite !important;
  border: 1.5px solid oklch(88% 0.04 145) !important;
  overflow: hidden !important;
}

/* Back text — dark, readable */
.sci-back .sci-num   { color: oklch(38% 0.05 145) !important; }
.sci-back .sci-title { color: oklch(18% 0.06 145) !important; }
.sci-body-detail     { font-size: 13px !important; line-height: 1.6 !important; color: oklch(28% 0.06 145) !important; margin: 0 !important; }

/* Science cards — align fonts with site tokens */
.sci-num          { font-family: var(--mono) !important; }
.sci-title        { font-family: var(--serif) !important; font-weight: 450 !important; letter-spacing: -0.02em !important; }
.sci-src          { font-family: var(--mono) !important; }
.sci-body,
.sci-body-detail  { font-family: var(--sans) !important; }
.sci-hint         { font-family: var(--mono) !important; }

/* ================================================================
   SCIENCE CARDS — explicit font names, max specificity
   ================================================================ */
.sci-flip-wrap .sci-num,
.sci-flip-wrap .sci-src,
.sci-flip-wrap .sci-hint {
  font-family: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace !important;
}
.sci-flip-wrap h3,
.sci-flip-wrap .sci-title {
  font-family: "Newsreader", Georgia, "Times New Roman", serif !important;
  font-weight: 450 !important;
  letter-spacing: -0.02em !important;
}
.sci-flip-wrap p,
.sci-flip-wrap .sci-body,
.sci-flip-wrap .sci-body-detail {
  font-family: "Hanken Grotesk", system-ui, sans-serif !important;
}

/* AskAI — smaller, tighter card */
.askai-card {
  padding: clamp(32px, 4vw, 52px) clamp(28px, 5vw, 64px) !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  text-align: center !important;
}
.askai-title {
  font-size: clamp(26px, 3.5vw, 42px) !important;
  margin-bottom: clamp(20px, 3vw, 32px) !important;
}
.askai-btns { justify-content: center !important; }

/* Fix offsite CTA card — restore dark background + visible text */
.offsite-cta {
  margin-top: clamp(32px, 4vw, 52px);
  background: oklch(18% 0.05 145) !important;
  border-radius: 20px !important;
  padding: clamp(36px, 5vw, 64px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
  flex-wrap: wrap !important;
}
.offsite-cta .rc-eyebrow { color: oklch(65% 0.1 145) !important; }
.offsite-cta .rc-title { color: #fff !important; }
.offsite-cta .rc-lead { color: rgba(245,246,238,0.85) !important; display: block !important; }
.offsite-cta .rc-chips li { color: var(--paper) !important; }

/* Space between AskAI and Leadership expeditions */
.askai { margin-bottom: clamp(60px, 8vw, 120px) !important; }

/* Offsite CTA card — match site's light cream aesthetic */
.offsite-cta {
  background: var(--paper) !important;
  border: 1.5px solid var(--line) !important;
  border-radius: 20px !important;
  padding: clamp(36px, 5vw, 56px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 24px !important;
  flex-wrap: unset !important;
  justify-content: unset !important;
}
.offsite-cta .rc-eyebrow { color: var(--moss) !important; }
.offsite-cta .rc-title { color: var(--ink) !important; font-family: var(--serif) !important; font-size: clamp(22px, 2.5vw, 32px) !important; }
.offsite-cta .rc-lead { color: var(--ink-soft) !important; font-family: var(--sans) !important; font-style: normal !important; font-size: 15px !important; }
.offsite-cta .rc-chips li { color: var(--ink-soft) !important; background: var(--line) !important; border-color: var(--line) !important; }
.offsite-cta-btn { margin-top: 8px !important; align-self: flex-start !important; }

/* ================================================================
   VISION FLIP CARD
   ================================================================ */
.vision-flip-wrap {
  perspective: 1200px;
  width: 100%;
}
.vision-flip-inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.vision-flip-wrap.flipped .vision-flip-inner {
  transform: rotateY(180deg);
}
.vision-flip-front,
.vision-flip-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.vision-flip-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  overflow: hidden;
  border-radius: 18px;
  min-height: 100%;
}
.vision-forest-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vision-forest-veil {
  position: absolute;
  inset: 0;
  background: oklch(14% 0.06 145 / 0.62);
}
.vision-forest-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(28px, 4vw, 52px);
  height: 100%;
  justify-content: center;
}
.vision-forest-content .vc-shh {
  color: oklch(80% 0.08 145);
  font-size: 15px;
  font-style: italic;
  opacity: 1;
}
.vision-forest-content .vc-dream {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 36px);
  color: oklch(96% 0.02 145);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.vision-forest-content .vc-pledge {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(72% 0.1 145);
  opacity: 1;
}
.vision-flip-hint {
  display: block;
  margin-top: 20px;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Reduce gap between AskAI and footer CTA */
.askai { margin-bottom: 0 !important; }

/* Fix vision flip — wrapper must hold height for both faces */
.vision-flip-wrap {
  perspective: 1200px;
  width: 100%;
}
.vision-flip-inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  min-height: 280px; /* floor so back face is always visible */
}
.vision-flip-wrap.flipped .vision-flip-inner {
  transform: rotateY(180deg);
}
/* Both faces fill the inner wrapper */
.vision-flip-front {
  position: relative;
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.vision-flip-back {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  min-height: 100% !important;
  transform: rotateY(180deg) !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
}

/* Vision flip — grid stacking approach (most reliable) */
.vision-flip-wrap { perspective: 1200px; width: 100%; cursor: pointer; }
.vision-flip-inner {
  display: grid !important;
  grid-template-areas: "card" !important;
  transform-style: preserve-3d !important;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1) !important;
  position: relative !important;
  min-height: unset !important;
}
.vision-flip-wrap.flipped .vision-flip-inner { transform: rotateY(180deg) !important; }
.vision-flip-front {
  grid-area: card !important;
  position: relative !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
}
.vision-flip-back {
  grid-area: card !important;
  position: relative !important;
  inset: unset !important;
  width: 100% !important;
  transform: rotateY(180deg) !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  min-height: unset !important;
}

/* ================================================================
   GLOWING EXPEDITION CARD
   ================================================================ */
@keyframes moveDot {
  0%,  100% { top: 10%;                  right: 10%; }
  25%        { top: 10%;                  right: calc(100% - 35px); }
  50%        { top: calc(100% - 30px);    right: calc(100% - 35px); }
  75%        { top: calc(100% - 30px);    right: 10%; }
}

@keyframes offsite-line-h {
  0%   { width: 0; opacity: 1; }
  50%  { width: 100%; opacity: 1; }
  100% { width: 100%; opacity: 0; }
}
@keyframes offsite-line-v {
  0%   { height: 0; opacity: 1; }
  50%  { height: 100%; opacity: 1; }
  100% { height: 100%; opacity: 0; }
}

.offsite-cta {
  position: relative !important;
  overflow: hidden !important;
}

/* Moving glow dot */
.offsite-glow-dot {
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(72% 0.15 145) 0%, transparent 70%);
  filter: blur(4px);
  animation: moveDot 5s linear infinite;
  pointer-events: none;
  z-index: 2;
}

/* Glow ray from dot */
.offsite-glow-ray {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 40% at 90% 10%, oklch(80% 0.12 145 / 0.15) 0%, transparent 70%);
  animation: moveDot 5s linear infinite;
  pointer-events: none;
  z-index: 1;
}

/* Animated border lines */
.offsite-line {
  position: absolute;
  background: oklch(58% 0.14 145 / 0.6);
  pointer-events: none;
  z-index: 2;
}
.offsite-line-top    { top: 0; left: 0; height: 1.5px; animation: offsite-line-h 5s linear infinite 0s; }
.offsite-line-left   { top: 0; left: 0; width: 1.5px;  animation: offsite-line-v 5s linear infinite 1.25s; }
.offsite-line-bottom { bottom: 0; right: 0; height: 1.5px; animation: offsite-line-h 5s linear infinite 2.5s; transform: scaleX(-1); transform-origin: right; }
.offsite-line-right  { bottom: 0; right: 0; width: 1.5px;  animation: offsite-line-v 5s linear infinite 3.75s; transform: scaleY(-1); transform-origin: bottom; }

/* Hide the moving dot and ray — keep only the animated border lines */
.offsite-glow-dot { display: none !important; }
.offsite-glow-ray { display: none !important; }

/* ================================================================
   PARTNER FLIP CARDS — 3-col grid, same style as How Pausa works
   ================================================================ */
.partner-grid-flip {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 800px) {
  .partner-grid-flip { grid-template-columns: 1fr !important; }
}

/* Logo on front */
.partner-flip-logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 6px;
  display: block;
}

/* Logo on back — invert to white for readability on gradient */
.partner-flip-logo--back {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* Shorter min-height for 3 cards */
.partner-flip.ac-flip-two,
.partner-flip.ac-flip-two .ac-flip-inner,
.partner-flip.ac-flip-two .action-card {
  min-height: 320px !important;
}

/* ================================================================
   VISION FLIP CARD — back face with forest image
   ================================================================ */

/* Override gradient on back face for vision card */
.vc-flip-back {
  background: none !important;
  animation: none !important;
  border: none !important;
  overflow: hidden !important;
  padding: 0 !important;
}

/* Forest image fills the card */
.vc-forest-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay */
.vc-forest-overlay {
  position: absolute;
  inset: 0;
  background: oklch(14% 0.06 145 / 0.58);
}

/* Text content */
.vc-forest-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(28px, 4vw, 48px);
  height: 100%;
  justify-content: center;
}

.vc-forest-content .vc-shh {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: oklch(75% 0.08 145);
  opacity: 1;
}
.vc-forest-content .vc-dream {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 34px);
  color: oklch(97% 0.01 145);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.vc-forest-content .vc-pledge {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(72% 0.1 145);
}

/* Front face tweaks */
.vc-front { gap: 16px !important; }
.vc-front-body { font-size: 15px; line-height: 1.6; color: var(--ink); margin: 0; }

/* Ensure vision card uses same height as partner cards */
.vc-flip.ac-flip-two,
.vc-flip.ac-flip-two .ac-flip-inner,
.vc-flip.ac-flip-two .action-card { min-height: 320px !important; }

/* ================================================================
   PARTNER CARDS — logo top-left, contained text, same bg both sides
   ================================================================ */

/* Both faces: same paper background, no gradient */
.partner-card-face {
  background: var(--paper) !important;
  border: 1.5px solid var(--line) !important;
  animation: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 10px !important;
  overflow: hidden !important;
  padding: clamp(24px, 3vw, 36px) !important;
}

/* Back face: rotated */
.partner-card-back {
  position: absolute !important;
  inset: 0 !important;
  transform: rotateY(180deg) !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
}

/* Logo top-left */
.partner-flip-logo {
  height: 36px !important;
  width: auto !important;
  max-width: 130px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 2px !important;
  filter: none !important;
  opacity: 1 !important;
}

/* Back face — soft iridescent gradient per card */
.partner-card-back {
  position: absolute !important;
  inset: 0 !important;
  transform: rotateY(180deg) !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  --ph: 140deg;
  background: linear-gradient(158deg,
    oklch(0.96 0.043 var(--ph) / 0.95) 0%,
    oklch(0.925 0.062 calc(var(--ph) + 40deg) / 0.95) 100%) !important;
  border: 1px solid rgba(255,255,255,0.75) !important;
}
.partner-grid-flip .ac-flip-wrap:nth-child(1) .partner-card-back { --ph: 116deg; }
.partner-grid-flip .ac-flip-wrap:nth-child(2) .partner-card-back { --ph: 152deg; }
.partner-grid-flip .ac-flip-wrap:nth-child(3) .partner-card-back { --ph: 188deg; }

/* Name */
.partner-flip-name {
  font-family: "Newsreader", Georgia, serif !important;
  font-size: clamp(17px, 1.8vw, 20px) !important;
  font-weight: 450 !important;
  letter-spacing: -0.02em !important;
  color: var(--ink) !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

/* Description — contained, no overflow */
.partner-flip-desc {
  font-family: "Hanken Grotesk", system-ui, sans-serif !important;
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: var(--ink-soft) !important;
  margin: 0 !important;
  flex: 1 !important;
  overflow: hidden !important;
}

/* Hint */
.partner-card-face .ac-hint {
  margin-top: auto !important;
  color: var(--stone) !important;
}

/* ================================================================
   VISION FLIP CARD — smaller, two-column front
   ================================================================ */

/* Wrapper — no ac-flip-two, so no forced 420px height */
.vc-flip.ac-flip-wrap { min-height: unset !important; }
.vc-flip .ac-flip-inner { min-height: unset !important; }
.vc-flip .action-card   { min-height: unset !important; }

/* Front: two-column grid */
.vc-front-two-col {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: auto auto !important;
  gap: 20px clamp(24px, 4vw, 48px) !important;
  padding: clamp(24px, 3vw, 36px) !important;
  align-items: start !important;
}
.vc-col { display: flex; flex-direction: column; gap: 10px; }
.vc-hint-full {
  grid-column: 1 / -1;
  margin-top: 4px !important;
}
.vc-front-body {
  font-size: 14px; line-height: 1.65; color: var(--ink); margin: 0;
}

/* Back — smaller too */
.vc-flip-back {
  min-height: unset !important;
}
.vc-forest-content {
  padding: clamp(24px, 3vw, 36px) !important;
  gap: 12px !important;
}
.vc-forest-content .vc-dream {
  font-size: clamp(18px, 2.2vw, 26px) !important;
}

@media (max-width: 640px) {
  .vc-front-two-col { grid-template-columns: 1fr !important; }
}

/* ================================================================
   VISION CARD FRONT — clean contained layout
   ================================================================ */
.vc-front-clean {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  padding: clamp(28px, 4vw, 44px) !important;
  height: auto !important;
  min-height: unset !important;
}
.vc-front-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px clamp(24px, 4vw, 48px);
  align-items: start;
  flex: 1;
}
.vc-front-col { display: flex; flex-direction: column; gap: 10px; }
.vc-front-body { font-size: 14px; line-height: 1.65; color: var(--ink); margin: 0; }
.vc-front-clean .ac-hint { margin-top: 4px !important; }
@media (max-width: 580px) {
  .vc-front-inner { grid-template-columns: 1fr !important; }
}

/* ================================================================
   VISION FLIP CARD — fully self-contained, no action-card deps
   ================================================================ */
.vc-flip-outer {
  width: 100%;
  cursor: pointer;
  perspective: 1200px;
}
.vc-flip-scene {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.vc-flip-outer.is-flipped .vc-flip-scene {
  transform: rotateY(180deg);
}

/* Both faces share base styles */
.vc-face {
  width: 100%;
  border-radius: 18px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
}

/* FRONT */
.vc-face-front {
  background: var(--paper);
  border: 1.5px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px clamp(24px, 4vw, 48px);
  align-items: start;
}
.vc-two-col p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}
.vc-hint {
  display: block;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* BACK */
.vc-face-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  overflow: hidden;
}
.vc-forest-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vc-forest-overlay {
  position: absolute;
  inset: 0;
  background: oklch(14% 0.06 145 / 0.60);
}
.vc-forest-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(28px, 4vw, 44px);
}
.vc-forest-content .vc-shh {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: oklch(72% 0.08 145);
}
.vc-forest-content .vc-dream {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 30px);
  color: oklch(97% 0.01 145);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.vc-forest-content .vc-pledge {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(70% 0.1 145);
}

@media (max-width: 580px) {
  .vc-two-col { grid-template-columns: 1fr !important; }
}

/* ================================================================
   VISION FLIP — pure CSS hover, no JS state
   ================================================================ */
.vc-flip-outer {
  width: 100%;
  perspective: 1000px;
  cursor: pointer;
}
.vc-flip-scene {
  position: relative;
  width: 100%;
  height: 260px;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}
/* Flip on hover */
.vc-flip-outer:hover .vc-flip-scene {
  transform: rotateY(180deg);
}
/* Both faces */
.vc-face {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-sizing: border-box;
}
/* Front */
.vc-face-front {
  background: var(--paper);
  border: 1.5px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: rotateY(0deg);
}
.vc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px clamp(24px, 4vw, 48px);
  align-items: start;
  flex: 1;
}
.vc-two-col p {
  font-size: 15px; line-height: 1.65; color: var(--ink); margin: 0;
}
.vc-hint {
  display: block; font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone);
}
/* Back */
.vc-face-back { transform: rotateY(180deg); }
.vc-forest-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.vc-forest-overlay { position: absolute; inset: 0; background: oklch(14% 0.06 145 / 0.60); }
.vc-forest-content {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  gap: 14px; padding: clamp(28px, 4vw, 44px);
}
.vc-forest-content .vc-shh { font-family: "Newsreader", Georgia, serif; font-style: italic; font-size: 14px; color: oklch(72% 0.08 145); }
.vc-forest-content .vc-dream { font-family: "Newsreader", Georgia, serif; font-style: italic; font-size: clamp(20px, 2.5vw, 30px); color: oklch(97% 0.01 145); letter-spacing: -0.02em; line-height: 1.25; }
.vc-forest-content .vc-pledge { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(70% 0.1 145); }
@media (max-width: 580px) { .vc-two-col { grid-template-columns: 1fr !important; } .vc-flip-scene { height: 320px; } }

/* ================================================================
   PRICING — staggered pill items (CashbackPartnersCard style)
   ================================================================ */
@keyframes pill-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.incl-pills {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.incl-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 40px;
  border: 1.5px solid var(--line);
  background: transparent;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink);
  cursor: default;
  opacity: 0;
  animation: pill-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.incl-pill:hover {
  transform: scale(1.04);
  background: oklch(95% 0.015 145);
  box-shadow: 0 4px 14px -4px oklch(30% 0.08 145 / 0.18);
}
.incl-pill svg { flex-shrink: 0; }

/* Price card entrance */
.price-card {
  animation: pill-in 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

@media (max-width: 600px) {
  .incl-pills { grid-template-columns: 1fr !important; }
}

/* ================================================================
   TRAIL CARDS — Leadership Expeditions (TrailCard component style)
   ================================================================ */
@keyframes trail-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.trail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.trail-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper);
  border: 1.5px solid var(--line);
  box-shadow: 0 4px 24px -8px oklch(20% 0.05 145 / 0.10);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 0.35s var(--ease);
  opacity: 0;
  animation: trail-in 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  cursor: default;
}
.trail-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px -12px oklch(20% 0.06 145 / 0.22);
}

/* Image area */
.trail-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.trail-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s var(--ease);
}
.trail-card:hover .trail-img { transform: scale(1.06); }

/* Gradient overlay */
.trail-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, oklch(12% 0.04 145 / 0.80) 0%, oklch(12% 0.04 145 / 0.20) 55%, transparent 100%);
}

/* Overlaid text */
.trail-overlay-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
}
.trail-title {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 450;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 2px 0;
  line-height: 1.15;
}
.trail-region {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin: 0;
}

/* Body */
.trail-body {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}
.trail-desc {
  font-size: 13px; line-height: 1.6; color: var(--ink-soft); margin: 0;
}

@media (max-width: 900px) { .trail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trail-grid { grid-template-columns: 1fr; } }

/* ================================================================
   PRICING CARD — neumorphic shadow + hover lift (AnimatedProfileCard style)
   ================================================================ */
.price-card {
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 0.5s var(--ease) !important;
  box-shadow:
    12px 12px 24px oklch(20% 0.05 145 / 0.12),
    -12px -12px 24px oklch(100% 0 0 / 0.85) !important;
}
.price-card:hover {
  transform: scale(1.02) translateY(-6px) !important;
  box-shadow:
    20px 20px 40px oklch(20% 0.05 145 / 0.18),
    -20px -20px 40px oklch(100% 0 0 / 1) !important;
}
/* Animated border on hover */
.price-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  border: 1.5px solid oklch(58% 0.12 145 / 0.35);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.price-card:hover::after { opacity: 1; }

/* Pulsing urgency dot */
.price-card .tier::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: oklch(56% 0.14 145);
  margin-right: 8px;
  vertical-align: middle;
  animation: tier-ping 2s ease-in-out infinite;
}
@keyframes tier-ping {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Floating marquee chips — smaller font matching stat desc text */
.qchip {
  font-size: 13px !important;
  letter-spacing: 0.01em !important;
}

/* Nav tagline — Newsreader serif italic, smaller, aligned with Pausa wordmark */
.nav-tagline {
  font-family: "Newsreader", Georgia, serif !important;
  font-style: italic !important;
  font-size: 14px !important;
  font-weight: 350 !important;
  letter-spacing: 0.01em !important;
  color: var(--stone) !important;
  text-transform: none !important;
}

/* Science grid — 3 columns, 2 rows, bigger cards */
.science-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: clamp(18px, 2.5vw, 28px) !important;
}
.sci-flip-wrap,
.sci-flip-wrap .sci-flip-inner,
.sci-flip-wrap .science-card {
  min-height: 300px !important;
}
@media (max-width: 860px) { .science-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 560px) { .science-grid { grid-template-columns: 1fr !important; } }

/* Hero headline — slightly smaller to fit within hero image frame */
.hero-headline {
  font-size: clamp(32px, 4.5vw, 62px) !important;
}

/* Revert hero headline size */
.hero-headline { font-size: unset !important; }

/* Restore hero headline to original display size */
.hero-headline { font-size: clamp(40px, 6.4vw, 88px) !important; }


/* =========================================================
   BASELINE — Phase 01
   ========================================================= */
.baseline-sec {
  padding: clamp(72px, 10vw, 120px) 0 clamp(60px, 8vw, 96px);
  border-top: 1px solid var(--line-soft);
}

/* head */
.bl-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.bl-h2 { margin: 0; }
.bl-lede { margin: 0; max-width: 660px; }

/* full-width kit image hero */
.bl-kit-hero { margin: 0 0 clamp(44px, 5.5vw, 64px); }
.bl-kit-img {
  border-radius: 20px;
  overflow: hidden;
  /* natural image ratio 1408 × 768 = 11:6 — no cropping */
  aspect-ratio: 11 / 6;
  background: oklch(91% 0.02 140); /* matches the render's sage background */
}
.bl-kit-img image-slot { display: block; width: 100%; height: 100%; }
.bl-kit-cap {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 12px;
  text-align: center;
}

/* two-col kit contents below the image */
.bl-kit-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4.5vw, 64px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 80px);
}
@media (max-width: 700px) {
  .bl-kit-cols { grid-template-columns: 1fr; }
}
.bl-contents-right {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 40px);
}
.bl-block { display: flex; flex-direction: column; gap: 14px; }
.bl-block-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
}
.bl-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}

.bl-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.bl-item-ico {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--sage-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--moss);
  margin-top: 1px;
  transition: background .3s var(--ease);
}
.bl-item--opt .bl-item-ico { opacity: .65; }
.bl-item--opt .bl-item-name,
.bl-item--opt .bl-item-desc { opacity: .72; }

.bl-item-body { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.bl-item-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  line-height: 1.3;
}
.bl-opt-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 2px 7px;
  font-weight: 400;
}
.bl-item-desc {
  font-size: 14px;
  line-height: 1.58;
  color: var(--ink-soft);
  margin: 0;
}
.bl-human {
  padding-top: clamp(16px, 2vw, 22px);
  border-top: 1px solid var(--line-soft);
}

/* principle callout */
.bl-principle {
  margin: 0 0 clamp(40px, 5.5vw, 68px);
  padding: clamp(32px, 4vw, 52px) clamp(28px, 6vw, 80px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bl-principle::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: clamp(60px, 9vw, 100px);
  line-height: .6;
  color: var(--sage);
  position: absolute;
  top: clamp(16px, 2.5vw, 24px);
  left: clamp(16px, 3vw, 32px);
  pointer-events: none;
  user-select: none;
}
.bl-principle-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  margin: 0 auto;
  max-width: 700px;
  position: relative;
}

/* lower two-col */
.bl-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: clamp(40px, 5.5vw, 64px);
}
@media (max-width: 640px) {
  .bl-lower { grid-template-columns: 1fr; }
}
.bl-lower-col { display: flex; flex-direction: column; gap: 10px; }
.bl-lower-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.bl-lower-col p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* transition to Reset */
.bl-next {
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.bl-next-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--line), transparent);
}
.bl-next-body { display: flex; flex-direction: column; gap: 7px; max-width: 540px; }
.bl-next-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
}
.bl-next-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.bl-next-arrow { color: var(--stone-2); }

/* =========================================================
   TIMELINE — kit image block (Phase 1 Baseline)
   ========================================================= */
.tl-kit-visual {
  margin: clamp(16px, 2vw, 24px) 0 clamp(20px, 2.5vw, 32px) 0;
}
.tl-kit-pair {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.tl-kit-item {
  flex: 1;
  min-width: 0;
}
.tl-kit-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: clamp(40px, 6%, 60px);
  color: var(--stone);
  opacity: 0.5;
}
.tl-kit-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: oklch(91% 0.02 140);
  position: relative;
}
.tl-kit-img-wrap image-slot {
  display: block;
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
.tl-kit-img-wrap image-slot img,
.tl-kit-img-wrap image-slot ::slotted(img) {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}
  aspect-ratio: 11 / 6;
  background: oklch(91% 0.02 140);
}
.tl-kit-img-wrap image-slot { display: block; width: 100%; height: 100%; }
.tl-kit-cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 10px 0 0;
  max-width: 640px;
}
/* between-phase editorial image — removed, now inline in Phase 1 */
.tl-between-img { display: none; }

/* Full-width person image inside step body */
.tl-step-img-full {
  margin: clamp(20px, 2.5vw, 32px) 0 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
  width: 100%;
}
.tl-step-person-full {
  width: 100%;
  height: auto;
  display: block;
}

/* Phase 1 split step — text left, image right */
.tl-step--split {
  display: grid;
  grid-template-columns: 44px 1fr 1fr;
  grid-template-rows: auto;
  gap: 0 clamp(16px, 2vw, 28px);
  align-items: center;
}
.tl-step--split .tl-rail {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
}
.tl-step--split .tl-body {
  grid-column: 2;
  grid-row: 1;
}
.tl-step-img {
  grid-column: 3;
  grid-row: 1;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: oklch(91% 0.02 140);
}
.tl-step-img image-slot {
  display: block;
  width: 100%;
  height: 100%;
}
.tl-step-person {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 680px) {
  .tl-step--split {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
  }
  .tl-step--split .tl-rail { grid-column: 1; grid-row: 1 / 3; }
  .tl-step--split .tl-body { grid-column: 2; grid-row: 1; }
  .tl-step-img { grid-column: 2; grid-row: 2; margin-top: 14px; }
}

/* Phase 1 — two half-width images side by side */
.tl-kit-pair-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.5vw, 20px);
  margin: 0;
}
.tl-kit-half-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tl-kit-half-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: oklch(91% 0.02 140);
  position: relative;
}
.tl-kit-half-img image-slot {
  display: block;
  width: 100%;
  height: 100%;
}
.tl-kit-half-img--person {
  background: var(--paper);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.tl-kit-person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 600px) {
  .tl-kit-pair-half { grid-template-columns: 1fr; }
}

/* full-width single kit image (no pair) */
.tl-kit-full {
  width: 100%;
  aspect-ratio: 11 / 6;
  border-radius: 14px;
  overflow: hidden;
  background: oklch(91% 0.02 140);
  position: relative;
}
.tl-kit-full image-slot {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 600px) {
  .tl-kit-visual { margin-left: 0; }
  .tl-kit-pair { flex-direction: column; gap: 20px; }
  .tl-kit-arrow { padding-top: 0; transform: rotate(90deg); align-self: center; }
  .tl-kit-item { width: 100%; }
  .tl-kit-img-wrap { aspect-ratio: 4 / 3; }
  .tl-kit-img-wrap image-slot { display: block; width: 100%; height: 100%; }
  .tl-kit-full { aspect-ratio: 3 / 2; }
}

/* ================================================================
   PHASE CARDS — 3-column type scaling + back-face height fix
   ================================================================ */

/* Tall enough for 6 bullets on back face */
.ac-flip-two,
.ac-flip-two .ac-flip-inner,
.ac-flip-two .action-card {
  min-height: 520px !important;
}

/* Front face — scaled down for narrower 3-col cards */
.ac-flip-two .ac-title-lg {
  font-size: clamp(16px, 1.5vw, 20px) !important;
  line-height: 1.18 !important;
}
.ac-flip-two .ac-front-desc {
  font-size: 13.5px !important;
  line-height: 1.60 !important;
}
.ac-flip-two .ac-kicker-standalone {
  font-size: 12px !important;
}

/* Back face — same font style as front face */
.ac-flip-back-two .ac-detail-list {
  gap: 10px !important;
  margin-top: 10px !important;
  padding-bottom: 8px !important;
}
.ac-flip-back-two .ac-detail-item {
  font-family: var(--sans) !important;
  font-size: 14.5px !important;
  line-height: 1.55 !important;
  color: var(--ink-soft) !important;
}

/* =========================================================
   RECOGNITION — "Do you recognize this?"
   Centred, text-led, breathing section after Our Sanctuary.
   ========================================================= */
.rz-section {
  position: relative;
  background: var(--paper);
  padding: clamp(88px, 11vw, 152px) 0;
  overflow: hidden;
}

/* no background motif */
.rz-topo { display: none; }

.rz-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rz-heading {
  margin-top: 0;
  margin-bottom: clamp(32px, 4vw, 52px);
  max-width: 18ch;
}

/* list */
.rz-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.rz-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(14px, 1.5vw, 20px) 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--sans);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}
.rz-list > .rz-item:first-child { border-top: 1px solid var(--line-soft); }

/* per-item semantic icon */
.rz-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: oklch(0.50 0.11 125deg);
  opacity: 1;
  transition: opacity 0.3s;
}
.rz-item:hover .rz-icon { opacity: 0.75; }

@media (max-width: 720px) {
  .rz-inner { max-width: 100%; }
  .rz-item { gap: 12px; }
}

/* Mobile (1-column): restore comfortable reading sizes */
@media (max-width: 720px) {
  .ac-flip-two,
  .ac-flip-two .ac-flip-inner,
  .ac-flip-two .action-card {
    min-height: 0 !important;
  }
  .ac-flip-two .ac-title-lg {
    font-size: clamp(20px, 5vw, 26px) !important;
    line-height: 1.15 !important;
  }
  .ac-flip-two .ac-front-desc {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }
  .ac-flip-two .ac-kicker-standalone {
    font-size: 13px !important;
  }

  /* Partner flip cards — use grid parent for max specificity */
@media (max-width: 800px) {
  .partner-grid-flip .ac-flip-wrap {
    height: auto !important;
    min-height: 0 !important;
  }
  .partner-grid-flip .ac-flip-inner {
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
  }
  .partner-grid-flip .action-card {
    min-height: 0 !important;
    height: 100% !important;
  }
}

  /* Remote kit step — stack image full-width below text on mobile */
  .tl-step--split {
    grid-template-columns: 44px 1fr !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;
  }
  .tl-step--split .tl-step-img {
    grid-column: 2 !important;
    grid-row: 2 !important;
    aspect-ratio: 11 / 6 !important;
    margin-top: 16px !important;
    margin-bottom: 24px !important;
  }
}
  .ac-flip-back-two .ac-detail-item {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  .ac-flip-back-two .ac-detail-list {
    gap: 8px !important;
    margin-top: 8px !important;
  }
}
