/* ===========================================================
   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; }

/* ---- 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: var(--moss);
  color: #fff;
  box-shadow: 0 12px 30px -16px rgba(35,53,40,0.7);
}
.btn-primary:hover { background: var(--moss-deep); box-shadow: 0 18px 40px -16px rgba(35,53,40,0.8); }
.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: var(--moss); color: #fff; border-color: var(--moss); }
@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-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-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; }
  .sanctuary-strip image-slot { height: 180px; }
  .sanctuary-strip image-slot:first-child { grid-column: 1 / -1; height: 220px; }
}

/* =========================================================
   ROI
   ========================================================= */
.roi { padding: clamp(96px, 13vw, 168px) 0; }
.roi-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 84px; }
.roi-head .h2 { max-width: 14ch; margin: 18px 0 0; }
.roi-head p { margin: 0; align-self: end; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 4vw, 64px); }
.stat { padding: 0; }
.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: 30ch; }
@media (max-width: 760px) {
  .roi-head { grid-template-columns: 1fr; gap: 20px; }
  .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; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar {
  background: rgba(255,255,255,0.5);
  padding: 40px 36px 46px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .5s var(--ease);
  min-height: 280px;
}
.pillar:hover { background: rgba(255,255,255,0.92); }
.pillar .idx { font-family: var(--mono); font-size: 12px; color: var(--stone); letter-spacing: 0.12em; }
.pillar h3 { margin: 0; }
.pillar p { margin: 0; font-size: 15.5px; color: var(--ink-soft); }
.pillar .glyph {
  width: 34px; height: 34px; margin-top: auto;
  color: var(--moss); opacity: .9;
}
@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; }
@media (max-width: 720px) { .matrix th, .matrix td { padding: 16px 14px; } .matrix { min-width: 600px; } }

/* =========================================================
   PRICING
   ========================================================= */
.pricing {
  padding: clamp(96px, 13vw, 168px) 0;
  background: linear-gradient(180deg,
    #C7ECDE 0%,
    #90C0A6 11%,
    #5A8068 24%,
    #3E5A48 44%,
    #314A39 70%,
    var(--moss-deep) 100%);
  color: var(--paper);
}
.pricing ::selection { background: var(--paper); color: var(--moss-deep); }
.pricing .kicker { color: var(--sage); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pricing-intro .h2 { color: var(--paper); margin: 22px 0 24px; max-width: 14ch; }
.pricing-intro p { color: rgba(245,242,236,0.74); max-width: 42ch; }
.price-card {
  background: var(--paper); color: var(--ink);
  padding: 48px 46px; border-radius: 4px;
  box-shadow: 0 40px 90px -50px rgba(0,0,0,0.6);
}
.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 { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 14px; }
.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; }
.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; }

.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); }

@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; }

/* =========================================================
   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; }
.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: 0 0 clamp(40px, 6vw, 80px); background: var(--sage-tint); }
.askai-card {
  background: linear-gradient(150deg, #AD5E46 0%, #934832 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 rgba(115,52,32,0.6);
}
.askai-card ::selection { background: var(--paper); color: #934832; }
.askai-title { color: var(--paper); margin: 0 auto; max-width: 20ch; }
.askai-title em { color: #F2D8C8; }
.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 { position: relative; overflow: hidden; isolation: isolate; }
.pillar > *:not(.pillar-glow) { position: relative; z-index: 1; }
.pillar-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0; transition: opacity .5s var(--ease);
  background:
    radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%),
      rgba(120,151,108,0.42) 0%,
      rgba(98,131,98,0.22) 34%,
      rgba(98,131,98,0) 66%);
}
.pillar:hover .pillar-glow { opacity: 1; }
.pillar:hover .glyph { opacity: 1; transform: translateY(-2px); transition: transform .5s var(--ease), opacity .5s var(--ease); }
@media (hover: none) { .pillar-glow { display: none; } }

/* =========================================================
   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);
}

@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 { 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:
    radial-gradient(90% 120% at 88% 8%, rgba(120,151,108,0.16), rgba(120,151,108,0) 60%),
    var(--moss-deep);
  color: var(--paper);
  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(--sage); display: block;
}
.pb-title { color: var(--paper); margin: 22px 0 0; max-width: 12ch; }
.pb-lede {
  color: rgba(245,246,238,0.74); 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: rgba(245,246,238,0.9); }
.pb-check { width: 26px; height: 26px; flex: none; color: var(--sage); display: block; }
.pb-check svg { width: 100%; height: 100%; display: block; }

.pb-card {
  background: rgba(245,246,238,0.045);
  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; }
}
