/* ==========================================================================
   Howdah: shared stylesheet
   One file for every page. Page-specific rules live in the sections at the
   bottom, grouped by page.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root{
  --ink:#15222A;
  --ink-deep:#0F1A21;
  --ink-2:#1F303A;
  --ink-3:#26394A;
  --line-dark:#2E4250;
  --ground:#EEF1F1;
  --paper:#FFFFFF;
  --line:#D3DADC;
  --line-soft:#E3E8E9;
  --teal:#0E7A75;
  --teal-bright:#4FC1BA;
  --teal-light:#7FD3CC;
  --teal-soft:#D5ECEA;
  --teal-deep:#0B4F4C;
  --text:#3C4D56;
  --muted:#52636C;
  --muted-dark:#9FB1B8;
  --muted-dark-2:#B9C7CC;
  --on-dark:#E8EEF0;
  --warn:#C8641A;
  --warn-dark:#F0A35E;

  --font-display:"Archivo",system-ui,-apple-system,"Segoe UI",sans-serif;
  --font-body:"Public Sans",system-ui,-apple-system,"Segoe UI",sans-serif;

  --wrap:1200px;
  --gutter:48px;
  --radius:10px;
  --radius-sm:6px;
  --section:112px;
  --shadow:0 1px 2px rgba(21,34,42,.04),0 8px 24px -12px rgba(21,34,42,.12);
}

/* ---------- Base ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:88px}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
body{margin:0;background:var(--ground);color:var(--ink);font-family:var(--font-body);font-size:17px;line-height:1.6;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
img,svg{display:block;max-width:100%}
img{height:auto}
a{color:var(--teal);text-underline-offset:3px}
a:hover{color:var(--teal-deep)}
:focus-visible{outline:2px solid var(--teal-bright);outline-offset:3px;border-radius:2px}
h1,h2,h3,h4{margin:0;text-wrap:balance}
p{margin:0}
ul,ol{margin:0;padding:0}
b,strong{font-weight:700}
.num{font-variant-numeric:tabular-nums}
.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.skip{position:absolute;left:16px;top:-60px;z-index:100;background:var(--paper);color:var(--ink);padding:10px 16px;border-radius:var(--radius-sm);font-weight:700;text-decoration:none}
.skip:focus{top:12px}

/* ---------- Layout ---------- */
.wrap{max-width:var(--wrap);margin:0 auto;padding-inline:var(--gutter)}
.section{padding-block:var(--section)}
.section--tight{padding-block:72px}
.section--flush-top{padding-top:0}
.section--paper{background:var(--paper);border-block:1px solid var(--line)}
.section--ink{background:var(--ink);color:var(--on-dark)}
.section--deep{background:var(--teal-deep);color:var(--on-dark)}
.stack{display:flex;flex-direction:column;gap:16px}
.stack-lg{display:flex;flex-direction:column;gap:28px}
.grid{display:grid;gap:24px}
.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.split{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:72px;align-items:center}
.split--top{align-items:start}

/* Section header: headline left, lede right */
.section-head{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:32px;align-items:end;margin-bottom:48px}
.section-head > :first-child{grid-column:span 6}
.section-head > :last-child{grid-column:8 / span 5}
.section-head--stacked{display:flex;flex-direction:column;align-items:flex-start;gap:16px}

/* ---------- Type ---------- */
.eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:13px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--teal)}
.eyebrow::before{content:"";width:24px;height:2px;background:currentColor;opacity:.7}
.section--ink .eyebrow,.section--deep .eyebrow,.hero .eyebrow,.page-hero .eyebrow{color:var(--teal-light)}
.display{font-family:var(--font-display);font-weight:800;font-stretch:82%;font-size:72px;line-height:.98;letter-spacing:-.005em}
.h1{font-family:var(--font-display);font-weight:800;font-stretch:82%;font-size:64px;line-height:1;letter-spacing:-.005em}
.h2{font-family:var(--font-display);font-weight:800;font-stretch:82%;font-size:44px;line-height:1.04}
.h3{font-family:var(--font-display);font-weight:700;font-stretch:88%;font-size:28px;line-height:1.12}
.h4{font-size:19px;font-weight:700;line-height:1.3}
.lede{color:var(--text);font-size:19px;line-height:1.6;max-width:60ch}
.section--ink .lede,.section--deep .lede{color:var(--muted-dark-2)}
.body{color:var(--text)}
.muted{color:var(--muted)}
.small{font-size:15px}
.xs{font-size:13px}
.section--ink .muted,.section--deep .muted{color:var(--muted-dark)}
.tagline{font-family:var(--font-display);font-weight:700;font-stretch:88%;font-size:28px;line-height:1.1;color:var(--teal-light)}
.accent{color:var(--teal)}

/* ---------- Buttons and links ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;font:inherit;font-weight:700;font-size:16px;line-height:1.2;padding:15px 24px;border-radius:var(--radius-sm);text-decoration:none;border:1.5px solid transparent;cursor:pointer;transition:background-color .15s,border-color .15s,color .15s}
.btn-primary{background:var(--teal-bright);color:#0B2A28}
.btn-primary:hover{background:var(--teal-light);color:#0B2A28}
.btn-dark{background:var(--ink);color:var(--on-dark)}
.btn-dark:hover{background:var(--ink-3);color:var(--on-dark)}
.btn-ghost{border-color:#5A6E78;color:var(--on-dark)}
.btn-ghost:hover{border-color:var(--on-dark);color:#fff}
.btn-outline{border-color:var(--line);color:var(--ink);background:var(--paper)}
.btn-outline:hover{border-color:var(--ink);color:var(--ink)}
.btn-row{display:flex;gap:14px;flex-wrap:wrap}
.more{display:inline-flex;align-items:center;gap:8px;font-weight:700;font-size:16px;text-decoration:none;color:var(--teal)}
.more svg{transition:transform .15s}
.more:hover svg,a:hover > .more svg,a:hover .more svg{transform:translateX(3px)}
.section--ink .more,.section--deep .more{color:var(--teal-light)}

/* ---------- Header ---------- */
.site-header{position:sticky;top:0;z-index:50;background:var(--ink);color:var(--on-dark);border-bottom:1px solid rgba(255,255,255,.06)}
.site-header .wrap{display:flex;align-items:center;gap:32px;min-height:72px}
.brand{display:flex;align-items:center;gap:11px;text-decoration:none;color:var(--on-dark)}
.brand:hover{color:#fff}
.brand-name{font-family:var(--font-display);font-weight:800;font-size:21px;font-stretch:92%;letter-spacing:.02em}
.nav{display:flex;align-items:center;gap:22px;margin-left:auto}
.nav a{color:var(--muted-dark-2);text-decoration:none;font-size:15px;font-weight:500;padding-block:6px;border-bottom:2px solid transparent;white-space:nowrap}
.nav a:hover{color:#fff}
.nav a[aria-current="page"]{color:#fff;border-bottom-color:var(--teal-bright)}
.brand svg{flex-shrink:0}
.nav a.nav-cta{font-size:15px;padding:10px 16px;border:1.5px solid rgba(255,255,255,.28);color:var(--on-dark)}
.nav a.nav-cta:hover{border-color:var(--teal-bright);color:#fff}
.nav-toggle{display:none;margin-left:auto;background:none;border:1px solid rgba(255,255,255,.22);border-radius:var(--radius-sm);color:var(--on-dark);width:44px;height:44px;align-items:center;justify-content:center;cursor:pointer}
.nav-toggle svg{width:22px;height:22px}
.nav-toggle .i-close{display:none}
.nav-open .nav-toggle .i-open{display:none}
.nav-open .nav-toggle .i-close{display:block}

/* ---------- Heroes ---------- */
.hero{background:var(--ink);color:var(--on-dark);overflow:hidden}
.hero .wrap{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);gap:72px;align-items:center;padding-block:96px 112px}
.hero-copy{display:flex;flex-direction:column;gap:24px}
.hero .lede{color:var(--muted-dark-2);font-size:20px;max-width:46ch}
.page-hero{background:var(--ink);color:var(--on-dark)}
.page-hero .wrap{padding-block:72px 96px}
.page-hero .inner{display:flex;flex-direction:column;gap:22px;max-width:780px}
.page-hero .lede{color:var(--muted-dark-2)}
.page-hero--split .wrap{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:72px;align-items:center}
.crumbs{font-size:14px;color:var(--muted-dark)}
.crumbs a{color:var(--muted-dark);text-decoration:none}
.crumbs a:hover{color:#fff}
.crumbs span{margin-inline:8px;opacity:.6}

/* ---------- Cards ---------- */
.card{background:var(--paper);border:1px solid var(--line-soft);border-radius:var(--radius);padding:32px;display:flex;flex-direction:column;gap:14px}
.card--flat{border-color:var(--line)}
.card--ink{background:var(--ink-2);border-color:var(--line-dark);color:var(--on-dark)}
.card--ink .body{color:var(--muted-dark-2)}
.card-link{text-decoration:none;color:var(--ink);transition:border-color .15s,box-shadow .15s,transform .15s}
.card-link:hover{color:var(--ink);border-color:var(--line);box-shadow:var(--shadow)}
.card-row{flex-direction:row;gap:24px}
.ico{width:48px;height:48px;border-radius:10px;background:var(--teal-soft);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--teal-deep)}
.ico svg{width:24px;height:24px}
.ico--ring{background:transparent;border:1.5px solid var(--teal-bright);border-radius:50%;width:56px;height:56px;color:var(--teal-light)}
.section--paper .card{background:var(--ground);border-color:transparent}
.tag{display:inline-flex;align-self:flex-start;align-items:center;gap:8px;font-size:13px;font-weight:600;border:1px solid var(--line);border-radius:999px;padding:4px 12px;color:var(--muted)}
.section--ink .tag,.card--ink .tag{border-color:var(--line-dark);color:var(--muted-dark-2)}
.tag--teal{border-color:var(--teal-bright);color:var(--teal-light)}

/* Numbered steps (vertical list) */
.steps{list-style:none;display:grid;gap:0;counter-reset:step}
.steps > li{display:grid;grid-template-columns:64px minmax(0,1fr);gap:24px;padding-block:28px;border-top:1px solid var(--line)}
.steps > li:last-child{border-bottom:1px solid var(--line)}
.steps .n{font-family:var(--font-display);font-weight:800;font-stretch:85%;font-size:40px;line-height:1;color:var(--teal)}
.section--ink .steps > li{border-color:var(--line-dark)}
.section--ink .steps .n{color:var(--teal-light)}

/* Check list */
.checks{list-style:none;display:grid;gap:14px}
.checks li{display:grid;grid-template-columns:22px minmax(0,1fr);gap:12px;align-items:start;color:var(--text)}
.checks li::before{content:"";width:22px;height:22px;margin-top:2px;border-radius:50%;background:var(--teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B4F4C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center/13px no-repeat}
.section--ink .checks li,.card--ink .checks li{color:var(--muted-dark-2)}
.section--ink .checks li::before,.card--ink .checks li::before{background-color:rgba(79,193,186,.16);background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237FD3CC' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E")}

/* Definition rows (label + text, divided) */
.rows{display:grid}
.rows > *{padding-block:20px;border-top:1px solid var(--line)}
.rows > *:last-child{border-bottom:1px solid var(--line)}

/* ---------- Mini dashboard pieces (used in graphics) ---------- */
.panel{background:var(--ink-2);border:1px solid var(--line-dark);border-radius:var(--radius);padding:20px 22px;color:var(--on-dark)}
.panel--light{background:var(--paper);border-color:var(--line);color:var(--ink)}
.panel-label{font-size:13px;font-weight:600;color:var(--muted-dark)}
.panel--light .panel-label{color:var(--muted)}
.kpi{font-family:var(--font-display);font-weight:700;font-stretch:92%;font-size:32px;line-height:1.1;font-variant-numeric:tabular-nums}
.meter{position:relative;height:8px;border-radius:4px;background:var(--line-soft);overflow:visible}
.meter > i{display:block;height:100%;border-radius:4px;background:var(--teal)}
.meter > .tick{position:absolute;top:-4px;bottom:-4px;width:2px;background:var(--ink);border-radius:1px}
.panel .meter{background:rgba(255,255,255,.08)}
.panel .meter > i{background:var(--teal-bright)}
.is-warn{color:var(--warn)}
.panel .is-warn,.section--ink .is-warn{color:var(--warn-dark)}
.panel--light .is-warn{color:var(--warn)}

/* ---------- Table ---------- */
.table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;border:1px solid var(--line);border-radius:var(--radius);background:var(--paper)}
.table{width:100%;border-collapse:collapse;font-size:16px;min-width:620px}
.table th,.table td{text-align:left;padding:18px 22px;border-bottom:1px solid var(--line-soft);vertical-align:top}
.table thead th{font-size:13px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);background:var(--ground);border-bottom-color:var(--line)}
.table tbody tr:last-child td{border-bottom:0}
.table td:first-child{font-weight:700}

/* ---------- FAQ ---------- */
.faq{display:grid;border-top:1px solid var(--line)}
.faq details{border-bottom:1px solid var(--line)}
.faq summary{list-style:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:24px;padding-block:24px;font-weight:700;font-size:19px}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"";width:14px;height:14px;flex-shrink:0;border-right:2px solid var(--teal);border-bottom:2px solid var(--teal);transform:rotate(45deg) translate(-3px,-3px);transition:transform .2s}
.faq details[open] summary::after{transform:rotate(-135deg) translate(-3px,-3px)}
.faq details > div{padding-bottom:24px;color:var(--text);max-width:70ch}

/* ---------- Forms ---------- */
.form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px 20px}
.field{display:flex;flex-direction:column;gap:8px}
.field--full{grid-column:1 / -1}
.field label{font-size:15px;font-weight:600;color:var(--ink)}
.field .hint{font-size:14px;color:var(--muted);font-weight:400}
.field input,.field select,.field textarea{font:inherit;font-size:16px;color:var(--ink);background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-sm);padding:13px 14px;width:100%;transition:border-color .15s,box-shadow .15s}
.field textarea{min-height:120px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 3px rgba(14,122,117,.18)}
.form-foot{grid-column:1 / -1;display:flex;flex-wrap:wrap;gap:16px 24px;align-items:center;justify-content:space-between;padding-top:8px}
.hp{display:none}

/* ---------- CTA band ---------- */
.cta-band{background:var(--ink);color:var(--on-dark)}
.cta-band .wrap{padding-block:104px;display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);gap:72px;align-items:center}
.cta-band .lede{color:var(--muted-dark-2)}
.cta-band .contact{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.cta-band .contact > div{border:1px solid var(--line-dark);border-radius:var(--radius-sm);padding:14px 16px}
.cta-band .contact .xs{color:var(--muted-dark)}
.cta-band .contact a{color:var(--on-dark);text-decoration:none;font-weight:600}
.cta-band .more{color:var(--teal-light)}
.cta-band .eyebrow{color:var(--teal-light)}
.cta-simple .wrap{display:flex;flex-direction:column;align-items:flex-start;gap:28px}

/* ---------- Footer ---------- */
.site-footer{background:var(--ink-deep);color:#8FA1A8;font-size:14px}
.site-footer .wrap{padding-block:56px 32px;display:grid;gap:40px}
.footer-top{display:grid;grid-template-columns:minmax(0,1.4fr) repeat(2,minmax(0,1fr));gap:48px}
.footer-top p{max-width:38ch;margin-top:14px}
.footer-top h2{font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--muted-dark-2);margin-bottom:14px}
.footer-top ul{list-style:none;display:grid;gap:10px}
.site-footer a{color:#B9C7CC;text-decoration:none}
.site-footer a:hover{color:#fff}
.footer-bottom{display:flex;justify-content:space-between;gap:16px 24px;flex-wrap:wrap;padding-top:24px;border-top:1px solid #1E2C35}

/* ==========================================================================
   Page: Home
   ========================================================================== */
/* Pencil elephant drawn faintly behind the hero (inverted to light lines on the dark ground) */
.hero,.pg-story .page-hero{position:relative;isolation:isolate;overflow:hidden}
.hero::before,.pg-story .page-hero::before{content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;background-repeat:no-repeat}
.pg-story .page-hero::before{background-image:url("../img/elephant-hero.jpg");filter:grayscale(1) contrast(1.05);mix-blend-mode:lighten;opacity:.42}
.pg-story .page-hero::after{display:none}
.hero::before{inset:-4% auto -4% max(0px,calc(50% - 520px));aspect-ratio:1/1;height:108%;width:auto;
  background-image:url("../img/elephant-hero.jpg");background-size:cover;background-position:center;
  filter:grayscale(1) contrast(1.05);mix-blend-mode:lighten;opacity:.45;
  -webkit-mask-image:radial-gradient(closest-side at 58% 48%,#000 55%,transparent 100%);mask-image:radial-gradient(closest-side at 58% 48%,#000 55%,transparent 100%)}
.pg-story .page-hero::before{inset:-30% max(0px,calc(50% - 640px)) -30% auto;aspect-ratio:1/1;height:160%;width:auto;background-size:cover;background-position:center;
  -webkit-mask-image:radial-gradient(ellipse 52% 58% at 70% 45%,#000 30%,transparent 100%);mask-image:radial-gradient(ellipse 52% 58% at 70% 45%,#000 30%,transparent 100%)}
@media (max-width:960px){.hero::before{inset:0 -30% auto auto;height:auto;width:110%;opacity:.32}
  .pg-story .page-hero::before{right:-35%;opacity:.3}}
.hero-graphic{display:flex;flex-direction:column;width:100%;max-width:410px;justify-self:end;align-self:end}
.drill-card{padding:16px 18px;background:rgba(31,48,58,.9);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);box-shadow:0 24px 48px -28px rgba(0,0,0,.7)}
.drill-card.panel--light{background:var(--paper)}
.drill-head{display:flex;justify-content:space-between;align-items:baseline;gap:12px;margin-bottom:12px}
.drill-level{font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--teal-light)}
.panel--light .drill-level{color:var(--teal)}
.drill-meta{font-size:12px;color:var(--muted-dark)}
.panel--light .drill-meta{color:var(--muted)}
.drill-kpis{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.drill-kpis .kpi{display:block;font-size:26px;margin:2px 0 8px}
.drill-kpis .meter{height:5px}
.drill-label{display:block;font-size:12px;color:var(--muted-dark)}
.drill-sub{display:block;font-size:11.5px;color:var(--muted-dark);margin-top:7px}
.panel .meter > .tick{background:var(--on-dark)}
.drill-bars{display:grid;gap:9px}
.bar-row{display:grid;grid-template-columns:64px minmax(0,1fr) 40px;gap:12px;align-items:center;font-size:14px}
.bar-row b{text-align:right;font-variant-numeric:tabular-nums}
.drill-bars .meter{height:6px}
.drill-step{display:flex;align-items:center;gap:8px;padding:9px 0 9px 18px;font-size:12px;font-weight:600;color:var(--teal-light)}
.drill-step svg{width:14px;height:14px;flex-shrink:0}
.drill-table{width:100%;border-collapse:collapse;font-size:14px;font-variant-numeric:tabular-nums}
.drill-table th{font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);text-align:right;padding:0 0 6px;border-bottom:1px solid var(--line-soft)}
.drill-table th:first-child,.drill-table td:first-child{text-align:left}
.drill-table td{text-align:right;padding:6px 0;border-bottom:1px solid var(--line-soft)}
.drill-table tr:last-child td{border-bottom:0}
.drill-table .is-warn td{color:var(--warn);font-weight:700}
.drill-note{margin-top:10px;padding:9px 11px;border-radius:6px;background:#FBEFE4;color:#6B3A12;font-size:12.5px;line-height:1.45}

.proof{background:var(--paper);border-bottom:1px solid var(--line)}
.proof .wrap{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:32px;padding-block:32px;font-size:15px;color:var(--text)}
.proof .item{display:flex;gap:12px;align-items:flex-start}
.proof svg{flex-shrink:0;color:var(--teal);width:22px;height:22px;margin-top:2px}
.proof b{color:var(--ink)}

.pipeline{list-style:none;display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:20px;position:relative}
.pipeline::before{content:"";position:absolute;left:28px;right:calc(100% / 6);top:28px;height:1.5px;background:linear-gradient(90deg,var(--teal-bright),rgba(79,193,186,.25))}
.pipeline li{position:relative;display:flex;flex-direction:column;gap:12px}
.pipeline .ico--ring{background:var(--ink)}
.pipeline b{font-size:17px}
.pipeline span.small{color:var(--muted-dark-2)}

.brand-minis{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.brand-mini{border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);background:var(--paper)}
.brand-mini img{width:100%;aspect-ratio:4/5;object-fit:cover;object-position:top left}
.brand-mini figcaption{padding:12px 14px;font-size:14px;font-weight:600;border-top:1px solid var(--line-soft)}

.sample-card{padding:0;overflow:hidden;gap:0}
.sample-card .shot{aspect-ratio:16/10;overflow:hidden;background:var(--ink);border-bottom:1px solid var(--line-soft)}
.sample-card .shot img{width:100%;height:100%;object-fit:cover;object-position:top left;transition:transform .4s}
.sample-card:hover .shot img{transform:scale(1.02)}
.sample-card .body-pad{padding:26px 28px 30px;display:flex;flex-direction:column;gap:10px;flex-grow:1}
.sample-card .more{margin-top:auto;padding-top:6px}

.pipeline-panel{background:var(--ink);color:var(--on-dark);border-radius:14px;padding:56px 48px}
@media (max-width:680px){.pipeline-panel{padding:36px 22px}}
.hero-offer{list-style:none;display:flex;flex-wrap:wrap;gap:8px 0;margin-top:2px;font-size:15px;font-weight:600;color:var(--on-dark)}
.hero-offer li{display:inline-flex;align-items:center}
.hero-offer li+li::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--teal-bright);margin:0 12px}
@media (max-width:680px){.hero-offer{display:grid;grid-template-columns:repeat(2,auto);justify-content:start;gap:8px 20px}.hero-offer li::before,.hero-offer li+li::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--teal-bright);margin:0 10px 0 0}}
.elephant-tagline{color:var(--teal-deep);font-size:30px}
.statement{font-family:var(--font-display);font-weight:800;font-stretch:82%;font-size:60px;line-height:.98;color:var(--teal)}

/* ==========================================================================
   Page-specific rules for measure / design / automation / approach / story
   are appended below.
   ========================================================================== */


/* ==========================================================================
   Page: Operating cadence (article)
   ========================================================================== */
.article{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:80px;align-items:start}
.prose{max-width:66ch;color:var(--text);font-size:18px;line-height:1.7}
.prose > * + *{margin-top:1.1em}
.prose h2{font-family:var(--font-display);font-weight:800;font-stretch:84%;font-size:32px;line-height:1.1;color:var(--ink);margin-top:2em}
.prose h3{font-size:19px;color:var(--ink);margin-top:1.6em}
.prose strong{color:var(--ink)}
.prose ul,.prose ol{padding-left:1.2em}
.prose li + li{margin-top:.5em}
.prose blockquote{margin:2em 0;padding:4px 0 4px 24px;border-left:3px solid var(--teal);font-family:var(--font-display);font-weight:700;font-stretch:88%;font-size:26px;line-height:1.25;color:var(--ink)}
.aside{position:sticky;top:104px;display:flex;flex-direction:column;gap:16px}
.cadence{list-style:none;display:grid;gap:0;border-top:1px solid var(--line)}
.cadence li{display:grid;grid-template-columns:minmax(0,1fr);gap:4px;padding-block:18px;border-bottom:1px solid var(--line)}
.cadence .when{font-size:13px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--teal);padding-top:3px}
.cadence b{display:block;color:var(--ink);margin-bottom:4px}
@media (max-width:960px){.article{grid-template-columns:minmax(0,1fr);gap:48px}.aside{position:static}}
@media (max-width:680px){.prose{font-size:17px}.prose h2{font-size:26px}.prose blockquote{font-size:21px}.cadence li{grid-template-columns:minmax(0,1fr);gap:6px}}



/* Home: executive review path */
.review-path{list-style:none;display:grid;gap:0;background:var(--ink);color:var(--on-dark);border-radius:14px;padding:28px;position:relative;isolation:isolate;overflow:hidden}
.review-path li{position:relative;display:grid;grid-template-columns:110px minmax(0,1fr) auto;gap:14px;align-items:center;padding:14px 16px 14px 18px;margin-left:14px;border-left:2px solid var(--line-dark)}
.review-path li::before{content:"";position:absolute;left:-7px;top:50%;width:12px;height:12px;margin-top:-6px;border-radius:50%;background:var(--ink);border:2px solid var(--muted-dark)}
.review-path li.is-red::before{border-color:#F07A63;background:#F07A63}
.review-path li.is-red .rp-val{color:#F07A63}
.rp-level{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted-dark)}
.rp-name{font-weight:600}
.rp-val{font-family:var(--font-display);font-weight:700;font-stretch:92%;font-size:22px;font-variant-numeric:tabular-nums;white-space:nowrap}
.rp-val small{font-family:var(--font-body);font-size:12px;font-weight:500;color:var(--muted-dark)}
.review-path .rp-action,.review-path .rp-ripple{grid-template-columns:110px minmax(0,1fr);margin-top:10px;border-left-color:transparent;border-radius:8px}
.review-path .rp-action{background:#FBEFE4;color:#6B3A12}
.review-path .rp-action .rp-level{color:#9A4A12}
.review-path .rp-action::before{border-color:#F07A63;background:#FBEFE4}
.review-path .rp-ripple{background:rgba(79,193,186,.12);color:var(--on-dark)}
.review-path .rp-ripple .rp-level{color:var(--teal-light)}
.review-path .rp-ripple::before{border-color:var(--teal-bright);background:var(--teal-bright)}
.review-path .rp-action .rp-name,.review-path .rp-ripple .rp-name{font-weight:500;font-size:15px;line-height:1.5}
@media (max-width:680px){.review-path{padding:20px 16px}.review-path li{grid-template-columns:minmax(0,1fr) auto;row-gap:2px;margin-left:8px}.review-path li .rp-level{grid-column:1 / -1}.review-path .rp-action,.review-path .rp-ripple{grid-template-columns:minmax(0,1fr)}}

/* ---------- Elephant-skin texture on dark fields ---------- */
.page-hero,.section--ink,.section--deep,.cta-band,.pipeline-panel,.site-footer{position:relative;isolation:isolate}
.page-hero::after,.section--ink::after,.section--deep::after,.cta-band::after,.pipeline-panel::after,.site-footer::after,.review-path::after{
  content:"";position:absolute;inset:0;z-index:-2;pointer-events:none;border-radius:inherit;
  background:url("../img/texture-skin.jpg") center top/cover no-repeat;
  filter:grayscale(1) contrast(1.3) brightness(.9);opacity:.07}
.section--deep::after{opacity:.06}
.site-footer::after{opacity:.05}
@media print{.page-hero::after,.section--ink::after,.section--deep::after,.cta-band::after,.pipeline-panel::after,.site-footer::after,.hero::before,.page-hero::before{display:none}}

/* ---------- Responsive ---------- */
@media (max-width:1240px){
  .nav-toggle{display:inline-flex}
  .nav{position:fixed;inset:72px 0 auto 0;flex-direction:column;align-items:stretch;gap:0;background:var(--ink);padding:8px var(--gutter) 24px;border-bottom:1px solid var(--line-dark);box-shadow:0 24px 40px -20px rgba(0,0,0,.6);display:none;max-height:calc(100vh - 72px);overflow-y:auto}
  .nav-open .nav{display:flex}
  .nav a{padding-block:14px;border-bottom:1px solid var(--line-dark);font-size:17px}
  .nav a[aria-current="page"]{border-bottom-color:var(--line-dark);color:var(--teal-light)}
  .nav a.nav-cta{margin-top:16px;border:1.5px solid var(--teal-bright);text-align:center;padding:14px}
}
@media (max-width:1100px){
  :root{--gutter:32px;--section:88px}
  .display{font-size:60px}
  .h1{font-size:54px}
  .hero .wrap{gap:48px}
  .pipeline{grid-template-columns:repeat(3,minmax(0,1fr));row-gap:40px}
  .pipeline::before{display:none}
  .proof .wrap{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:960px){
  .hero .wrap,.page-hero--split .wrap,.split,.cta-band .wrap{grid-template-columns:minmax(0,1fr);gap:56px}
  .hero .wrap{padding-block:72px 88px}
  .hero-graphic{max-width:520px;justify-self:start}
  .section-head{display:flex;flex-direction:column;align-items:flex-start;gap:16px}
  .cols-3,.cols-4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-top{grid-template-columns:minmax(0,1fr) minmax(0,1fr)}
  .footer-top > :first-child{grid-column:1 / -1}
  .statement{font-size:48px}
}
@media (max-width:680px){
  :root{--gutter:16px;--section:72px}
  body{font-size:16px}
  .display{font-size:44px}
  .h1{font-size:42px}
  .h2{font-size:34px}
  .h3{font-size:24px}
  .lede,.hero .lede{font-size:17px}
  .tagline{font-size:23px}
  .hero-offer{font-size:14px}
  .statement{font-size:40px}
  .cols-2,.cols-3,.cols-4,.brand-minis{grid-template-columns:minmax(0,1fr)}
  .brand-minis{grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
  .brand-mini figcaption{font-size:12px;padding:8px 10px}
  .card{padding:24px}
  .card-row{flex-direction:column;gap:16px}
  .page-hero .wrap{padding-block:48px 64px}
  .hero .wrap{padding-block:48px 64px}
  .hero-graphic{max-width:none}
  .drill-kpis{gap:10px}
  .drill-kpis .kpi{font-size:22px}
  .pipeline{grid-template-columns:minmax(0,1fr);row-gap:28px}
  .pipeline li{display:grid;grid-template-columns:56px minmax(0,1fr);column-gap:16px;row-gap:4px}
  .pipeline li .ico{grid-row:span 2}
  .proof .wrap{grid-template-columns:minmax(0,1fr);gap:18px;padding-block:28px}
  .steps > li{grid-template-columns:44px minmax(0,1fr);gap:16px}
  .steps .n{font-size:30px}
  .form{grid-template-columns:minmax(0,1fr)}
  .cta-band .wrap{padding-block:72px}
  .cta-band .contact{grid-template-columns:minmax(0,1fr)}
  .btn-row .btn{flex:1 1 100%}
  .footer-top{grid-template-columns:minmax(0,1fr)}
  .faq summary{font-size:17px}
}

/* ---------- Print ---------- */
@media print{
  .site-header,.nav-toggle,.cta-band,.site-footer .footer-top{display:none}
  body{background:#fff}
  .hero,.page-hero,.section--ink,.section--deep{background:#fff;color:var(--ink)}
}


/* ==========================================================================
   Page: measure
   ========================================================================== */
/* ==========================================================================
   Page: What we measure (.pg-measure)
   ========================================================================== */

/* Drill-down levels: a descending sequence of four levels */
.pg-measure .levels{list-style:none;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:28px;position:relative}
.pg-measure .level{position:relative;display:flex;flex-direction:column;gap:10px;padding:24px 22px 26px;border-radius:var(--radius);background:var(--ink);color:var(--on-dark);border:1px solid transparent}
.pg-measure .level:nth-child(2){background:var(--ink-3)}
.pg-measure .level:nth-child(3){background:var(--teal);color:#fff}
.pg-measure .level:nth-child(4){background:var(--paper);color:var(--ink);border-color:var(--line)}
.pg-measure .level-top{display:flex;align-items:center;justify-content:space-between;gap:12px}
.pg-measure .level-n{font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--muted-dark)}
.pg-measure .level:nth-child(3) .level-n{color:var(--teal-soft)}
.pg-measure .level:nth-child(4) .level-n{color:var(--muted)}
.pg-measure .level-top svg{width:28px;height:28px;color:var(--teal-light)}
.pg-measure .level:nth-child(3) .level-top svg{color:#fff}
.pg-measure .level:nth-child(4) .level-top svg{color:var(--teal)}
.pg-measure .level h3{font-size:20px;font-weight:700;line-height:1.25}
.pg-measure .level p{font-size:15px;color:var(--muted-dark-2)}
.pg-measure .level:nth-child(3) p{color:var(--teal-soft)}
.pg-measure .level:nth-child(4) p{color:var(--text)}
.pg-measure .level-val{margin-top:auto;padding-top:12px;display:flex;align-items:baseline;gap:8px;flex-wrap:wrap}
.pg-measure .level-val .kpi{font-size:36px;font-weight:800;color:#fff}
.pg-measure .level-val span{font-size:15px;font-weight:500;color:var(--muted-dark)}
.pg-measure .level:nth-child(2) .level-val .kpi{color:var(--warn-dark)}
.pg-measure .level:nth-child(3) .level-val span{color:var(--teal-soft)}
.pg-measure .level:nth-child(4) .level-val .kpi{color:var(--warn)}
.pg-measure .level:nth-child(4) .level-val span{color:var(--muted)}
/* Connector arrow between levels */
.pg-measure .level:not(:last-child)::after{content:"";position:absolute;top:50%;right:-22px;width:16px;height:16px;transform:translateY(-50%);background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E7A75' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center/16px no-repeat}
.pg-measure .levels-note{margin-top:20px}

/* Pacing to plan */
.pg-measure .plan-card{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:56px;align-items:center;padding:44px}
.pg-measure .pace{display:flex;flex-direction:column;gap:26px}
.pg-measure .pace-head{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;font-size:15px}
.pg-measure .pace-head span{font-variant-numeric:tabular-nums;color:var(--text)}
.pg-measure .pace .meter{height:12px;border-radius:6px;margin-top:10px}
.pg-measure .pace .meter > i{border-radius:6px}
.pg-measure .pace .meter > .tick{top:-5px;bottom:-5px;width:3px}
.pg-measure .pace .meter > i.is-behind{background:var(--warn)}
.pg-measure .pace-foot{font-size:14px;color:var(--muted);margin-top:8px;font-variant-numeric:tabular-nums}
.pg-measure .legend{display:flex;flex-wrap:wrap;gap:10px 20px;font-size:13px;color:var(--muted);padding-top:18px;border-top:1px solid var(--line-soft)}
.pg-measure .legend span{display:inline-flex;align-items:center;gap:8px}
.pg-measure .sw{display:inline-block;width:14px;height:8px;border-radius:2px;background:var(--teal)}
.pg-measure .sw--warn{background:var(--warn)}
.pg-measure .sw--tick{width:3px;height:14px;border-radius:1px;background:var(--ink)}

/* Cycle time */
.pg-measure .cycle-card{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:40px;align-items:center;padding:44px}
.pg-measure .cycle-card > :first-child{grid-column:span 5}
.pg-measure .cycle-card > :last-child{grid-column:6 / span 7}
.pg-measure .cycle{display:flex;flex-direction:column;gap:12px}
.pg-measure .cycle-track{position:relative;padding-top:26px}
.pg-measure .cycle-bar{display:flex;height:44px;border-radius:var(--radius-sm);overflow:hidden;gap:2px}
.pg-measure .seg{display:flex;align-items:center;justify-content:center;min-width:0;font-size:13px;font-weight:600;color:var(--ink);white-space:nowrap;overflow:hidden}
.pg-measure .seg-in{padding-inline:4px;overflow:hidden;text-overflow:ellipsis}
.pg-measure .s1{flex:5;background:#9CC0C4}
.pg-measure .s2{flex:8;background:#7FB0B6}
.pg-measure .s3{flex:21;background:var(--warn);color:#fff;font-weight:700}
.pg-measure .s4{flex:9;background:#4F9A9A;color:#fff}
.pg-measure .s5{flex:12;background:var(--teal);color:#fff}
.pg-measure .s6{flex:3;background:var(--teal-deep)}
.pg-measure .s7{flex:6;background:var(--ink)}
/* 55-day standard marker: 55 of 64 days */
.pg-measure .std{position:absolute;top:0;bottom:-6px;left:calc(55 / 64 * 100%);border-left:2px dashed var(--ink)}
.pg-measure .std span{position:absolute;top:0;right:6px;font-size:12px;font-weight:700;white-space:nowrap;color:var(--ink);line-height:1.2}
.pg-measure .cycle-axis{display:flex;justify-content:space-between;gap:12px;font-size:14px;color:var(--muted)}
.pg-measure .cycle-sum{font-size:15px;color:var(--text)}
.pg-measure .cycle-sum b{color:var(--ink)}
.pg-measure .cycle-key{list-style:none;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px 16px;font-size:13px;color:var(--text);padding-top:14px;border-top:1px solid var(--line-soft)}
.pg-measure .cycle-key li{display:flex;align-items:center;gap:8px;font-variant-numeric:tabular-nums}
.pg-measure .cycle-key i{flex-shrink:0;width:12px;height:12px;border-radius:3px}
.pg-measure .cycle-key .is-warn{font-weight:700}

/* KPI lists */
.pg-measure .kpi-list{list-style:none;display:grid;margin-top:8px}
.pg-measure .kpi-item{display:grid;grid-template-columns:44px minmax(0,1fr);gap:16px;padding-block:18px;border-top:1px solid var(--line-soft)}
.pg-measure .kpi-item:last-child{border-bottom:1px solid var(--line-soft)}
.pg-measure .kpi-item .ico{width:44px;height:44px}
.pg-measure .kpi-item .ico svg{width:22px;height:22px}
.pg-measure .kpi-item b{display:block;font-size:17px;margin-bottom:2px}
.pg-measure .kpi-item span{color:var(--text);font-size:16px}

/* CTA band variant */
.pg-measure .cta-band .btn-row{justify-content:flex-end}

@media (max-width:1100px){
  .pg-measure .levels{grid-template-columns:repeat(2,minmax(0,1fr))}
  .pg-measure .level:nth-child(2)::after{display:none}
  .pg-measure .cycle-card{grid-template-columns:minmax(0,1fr)}
  .pg-measure .cycle-card > :first-child,.pg-measure .cycle-card > :last-child{grid-column:auto}
}
@media (max-width:960px){
  .pg-measure .plan-card{grid-template-columns:minmax(0,1fr);gap:36px}
  .pg-measure .cta-band .btn-row{justify-content:flex-start}
}
@media (max-width:680px){
  .pg-measure .levels{grid-template-columns:minmax(0,1fr);gap:26px}
  .pg-measure .level:not(:last-child)::after,.pg-measure .level:nth-child(2)::after{display:block;top:auto;bottom:-22px;right:auto;left:50%;transform:translateX(-50%) rotate(90deg)}
  .pg-measure .level-val .kpi{font-size:32px}
  .pg-measure .plan-card,.pg-measure .cycle-card{padding:24px}
  .pg-measure .seg-in{display:none}
  .pg-measure .cycle-bar{height:32px}
  .pg-measure .cycle-key{grid-template-columns:repeat(2,minmax(0,1fr))}
}
.pg-measure .cta-band .eyebrow{color:var(--teal-light)}


/* ==========================================================================
   Page: design
   ========================================================================== */
/* ==========================================================================
   Page: Custom design (design.html)
   ========================================================================== */

/* Before / after graphic */
.pg-design .ba{display:flex;flex-direction:column;gap:14px}
.pg-design .ba-screen{background:var(--paper);border-radius:12px;overflow:hidden}
.pg-design .ba-bar{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 14px;font-size:13px}
.pg-design .ba-name{display:flex;align-items:center;gap:8px;min-width:0}
.pg-design .ba-logo{display:block;flex-shrink:0}
.pg-design .ba-tiles{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;padding:14px}

.pg-design .ba-vendor{opacity:.6}
.pg-design .ba-vendor .ba-bar{background:#E3E6EA;color:#5A6470}
.pg-design .ba-vendor .ba-logo{width:16px;height:16px;background:#9AA3AD;border-radius:4px}
.pg-design .ba-vendor .ba-tiles i{display:block;height:40px;background:#EEF0F2;border-radius:4px}

.pg-design .ba-arrow{display:flex;align-items:center;gap:10px;color:var(--teal-light);font-weight:700;font-size:15px}
.pg-design .ba-arrow svg{flex-shrink:0}

.pg-design .ba-brand{box-shadow:0 24px 48px -24px rgba(0,0,0,.7)}
.pg-design .ba-brand .ba-bar{background:#1F4A3D;color:#F2F3EE;padding:12px 16px}
.pg-design .ba-brand .ba-name{font-weight:800;font-size:15px;letter-spacing:.02em}
.pg-design .ba-brand .ba-logo{width:22px;height:22px;border:2px solid #D8AC68;border-radius:3px}
.pg-design .ba-sub{opacity:.8;text-align:right}
.pg-design .ba-brand .ba-tiles{background:#F2F3EE}
.pg-design .ba-brand .ba-tiles > div{background:#fff;border-radius:4px;padding:8px 10px;display:flex;flex-direction:column;gap:2px}
.pg-design .ba-brand .ba-tiles span{font-size:11px;line-height:1.3;color:#5D6A63}
.pg-design .ba-brand .ba-tiles b{font-size:20px;line-height:1.2;color:#1C2A24;font-variant-numeric:tabular-nums}
.pg-design .ba-brand .ba-tiles b.ba-warn{color:#B8740C}

/* Process steps: icon + text beside the number */
.pg-design-intro{position:sticky;top:112px}
.pg-design .step-body{display:flex;gap:18px;align-items:flex-start}
.pg-design .steps > li{align-items:start}

/* Ownership card */
.pg-design .pg-design-own{background:var(--teal-deep);border-color:var(--teal-deep);color:#EAF4F3}
.pg-design .pg-design-own .body{color:#C3DEDB}
.pg-design .pg-design-own .ico{background:rgba(127,211,204,.14);color:var(--teal-light)}
.pg-design .pg-design-own .more{color:var(--teal-light)}
.pg-design .pg-design-own .more:hover{color:#fff}

@media (max-width:960px){
  .pg-design-intro{position:static}
  .pg-design .ba{max-width:560px}
}
@media (max-width:680px){
  .pg-design .step-body{flex-direction:column;gap:12px}
  .pg-design .ba-bar{flex-wrap:wrap;row-gap:4px}
  .pg-design .ba-brand .ba-tiles b{font-size:18px}
}


/* ==========================================================================
   Page: automation
   ========================================================================== */
/* ==========================================================================
   Page: AI and automation (automation.html)
   ========================================================================== */

/* Agent flow graphic */
.pg-automation .flow{list-style:none;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:48px;margin-top:56px;counter-reset:flow}
.pg-automation .flow > li{position:relative;display:flex;flex-direction:column;gap:10px;background:var(--ink-2);border:1px solid var(--line-dark);border-radius:var(--radius);padding:22px 22px 24px;counter-increment:flow}
.pg-automation .flow > li:not(:last-child)::after{content:"";position:absolute;top:50%;right:-42px;width:36px;height:20px;margin-top:-10px;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 20'%3E%3Cpath d='M3 10h26M23 4l6 6-6 6' fill='none' stroke='%234FC1BA' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat}
.pg-automation .flow .step{font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--muted-dark)}
.pg-automation .flow .step::before{content:"Step " counter(flow)}
.pg-automation .flow svg{width:26px;height:26px;color:var(--teal-light)}
.pg-automation .flow b{font-size:18px;line-height:1.3}
.pg-automation .flow .small{color:var(--muted-dark-2)}
.pg-automation .flow .is-agent{border-color:var(--teal-bright)}
.pg-automation .flow .is-person{background:var(--paper);border-color:var(--paper);color:var(--ink);box-shadow:0 0 0 4px rgba(79,193,186,.35),0 24px 48px -24px rgba(0,0,0,.6)}
.pg-automation .flow .is-person svg{color:var(--teal)}
.pg-automation .flow .is-person .step{color:var(--teal)}
.pg-automation .flow .is-person .small{color:var(--text)}
.pg-automation .flow .badge{position:absolute;top:-13px;left:20px;background:var(--teal-bright);color:#0B2A28;font-size:12px;font-weight:700;letter-spacing:.04em;padding:4px 10px;border-radius:999px}

/* Example agents */
.pg-automation .agent{gap:12px}
.pg-automation .agent .body{flex-grow:1}
.pg-automation .checkpoint{display:grid;grid-template-columns:20px minmax(0,1fr);gap:4px 10px;align-items:start;margin-top:8px;padding:12px 14px;border-left:3px solid var(--teal);background:var(--ground);border-radius:0 var(--radius-sm) var(--radius-sm) 0}
.pg-automation .checkpoint svg{width:20px;height:20px;color:var(--teal);grid-row:span 2;margin-top:1px}
.pg-automation .checkpoint .label{font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--teal)}
.pg-automation .checkpoint .text{font-size:15px;font-weight:600;color:var(--ink);line-height:1.4}

/* Principles */
.pg-automation .principle{display:flex;flex-direction:column;gap:10px}
.pg-automation .principle svg{width:28px;height:28px;color:var(--teal)}
.pg-automation .principles{gap:40px 32px}

@media (max-width:1100px){
  .pg-automation .flow{gap:40px}
  .pg-automation .flow > li:not(:last-child)::after{right:-37px;width:34px}
}
@media (max-width:960px){
  .pg-automation .flow{grid-template-columns:minmax(0,1fr);gap:40px;max-width:560px}
  .pg-automation .flow > li:not(:last-child)::after{top:auto;right:auto;left:50%;bottom:-31px;margin:0 0 0 -17px;width:34px;height:20px;transform:rotate(90deg)}
}
@media (max-width:680px){
  .pg-automation .flow{margin-top:40px}
  .pg-automation .principles{grid-template-columns:minmax(0,1fr)}
}
.pg-automation .cta-band .more{color:var(--teal-light)}
.pg-automation .cta-band .more:hover{color:#fff}
.pg-automation .cta-band .eyebrow{color:var(--teal-light)}


/* ==========================================================================
   Page: approach
   ========================================================================== */
/* ==========================================================================
   Page: How we work (approach.html)
   ========================================================================== */

/* Engagement steps: five cards */
.pg-approach .eng-steps{list-style:none;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:16px}
.pg-approach .eng-steps .card{padding:26px 24px;gap:12px}
.pg-approach .eng-steps .n{font-family:var(--font-display);font-weight:800;font-stretch:85%;font-size:40px;line-height:1;color:var(--teal)}
.pg-approach .eng-steps .more{margin-top:auto;padding-top:4px;font-size:15px}

/* Launch */
.pg-approach .launch{display:grid;grid-template-columns:minmax(0,5fr) minmax(0,7fr);background:var(--paper);border:1px solid var(--line-soft);border-radius:14px;overflow:hidden}
.pg-approach .launch-lead{background:var(--teal-deep);color:var(--on-dark);padding:48px 40px;display:flex;flex-direction:column;gap:18px}
.pg-approach .launch-lead .eyebrow{color:var(--teal-light)}
.pg-approach .launch-lead .h2{color:#fff}
.pg-approach .launch-lead .lede{color:#C3DEDB;font-size:17px}
.pg-approach .launch-ico{color:var(--teal-light)}
.pg-approach .ism{margin-top:8px;background:rgba(255,255,255,.08);border-radius:var(--radius);padding:20px;display:flex;gap:16px;align-items:flex-start}
.pg-approach .ism-ico{width:48px;height:48px;border-radius:50%;background:var(--teal-bright);color:#0B2A28;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.pg-approach .ism .h4{color:#fff;font-size:17px}
.pg-approach .ism p{color:#C3DEDB;margin-top:4px}
.pg-approach .launch-steps{padding:48px 40px;display:flex;flex-direction:column;gap:28px}
.pg-approach .launch-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:32px 28px}
.pg-approach .launch-step{display:flex;flex-direction:column;gap:10px;border-top:3px solid var(--teal);padding-top:18px}
.pg-approach .launch-step svg{color:var(--teal)}
.pg-approach .launch-step .h4{font-size:18px}

/* Fit review */
.pg-approach .fit{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.1fr);gap:64px;align-items:start}
.pg-approach .fit-copy{display:flex;flex-direction:column;gap:16px}
.pg-approach .fit-copy .lede{font-size:18px}
.pg-approach .fit-sub{margin-top:16px}
.pg-approach .next{list-style:none;display:grid;gap:12px}
.pg-approach .next li{display:grid;grid-template-columns:32px minmax(0,1fr);gap:12px;align-items:start;color:var(--text)}
.pg-approach .next .n{width:32px;height:32px;border-radius:50%;border:1.5px solid var(--teal);color:var(--teal);font-weight:700;font-size:15px;display:flex;align-items:center;justify-content:center}
.pg-approach .next b{color:var(--ink)}
.pg-approach .fit-card{background:var(--paper);border:1px solid var(--line);border-radius:14px;padding:36px;box-shadow:var(--shadow);display:flex;flex-direction:column;gap:8px}
.pg-approach .fit-card .form{margin-top:16px}
.pg-approach .req{color:var(--warn);font-weight:700}
.pg-approach .form-foot{flex-direction:column;align-items:stretch;justify-content:flex-start}
.pg-approach .form-foot .btn{width:100%}

/* Security */
.pg-approach .sec-shield{color:var(--teal-light)}
.pg-approach .sec-list{list-style:none;display:grid}
.pg-approach .sec-list li{display:flex;gap:16px;align-items:flex-start;padding-block:20px;border-top:1px solid var(--line-dark)}
.pg-approach .sec-list li:last-child{border-bottom:1px solid var(--line-dark)}
.pg-approach .sec-list svg{color:var(--teal-light);flex-shrink:0;margin-top:2px}
.pg-approach .sec-list .h4{color:#fff;font-size:17px}
.pg-approach .sec-list p{color:var(--muted-dark-2);margin-top:4px}

/* Engagements */
.pg-approach .tiers .card{gap:14px}
.pg-approach .tiers .checks{margin-top:6px;gap:10px}
.pg-approach .ico--dark{background:rgba(79,193,186,.16);color:var(--teal-light)}
.pg-approach .partner{margin-top:24px;flex-direction:row;align-items:center;gap:24px}
.pg-approach .partner .more{white-space:nowrap;margin-left:auto}

/* FAQ */
.pg-approach .faq-split{display:grid;grid-template-columns:minmax(0,4fr) minmax(0,7fr);gap:64px;align-items:start}

@media (max-width:1100px){
  .pg-approach .eng-steps{grid-template-columns:repeat(3,minmax(0,1fr))}
  .pg-approach .launch{grid-template-columns:minmax(0,1fr)}
  .pg-approach .fit{gap:48px}
}
@media (max-width:960px){
  .pg-approach .eng-steps{grid-template-columns:repeat(2,minmax(0,1fr))}
  .pg-approach .fit,.pg-approach .faq-split{grid-template-columns:minmax(0,1fr);gap:40px}
}
@media (max-width:680px){
  .pg-approach .eng-steps{grid-template-columns:minmax(0,1fr)}
  .pg-approach .launch-lead,.pg-approach .launch-steps{padding:32px 22px}
  .pg-approach .launch-grid{grid-template-columns:minmax(0,1fr);gap:24px}
  .pg-approach .fit-card{padding:24px 18px}
  .pg-approach .partner{flex-direction:column;align-items:flex-start;gap:16px}
  .pg-approach .partner .more{margin-left:0}
}


/* ==========================================================================
   Page: story
   ========================================================================== */
/* ==========================================================================
   Page: The elephant in the room (story.html)
   ========================================================================== */

/* Editorial measure */
.pg-story .story-measure{max-width:65ch}
.pg-story .story-measure.stack{margin-bottom:40px}
.pg-story .story-lead{font-size:21px;line-height:1.6;color:var(--ink);margin-top:16px}
.pg-story .story-turn,.pg-story .story-after{font-family:var(--font-display);font-weight:700;font-stretch:88%;font-size:26px;line-height:1.25;color:var(--teal-deep);margin-top:28px;padding-left:20px;border-left:3px solid var(--teal)}
.pg-story .story-after{margin-top:32px}
.pg-story .page-hero .lede{font-size:21px;max-width:46ch}

/* Fable cards */
.pg-story .fable{margin-block:48px}
.pg-story .fable-card{margin:0;gap:12px;padding:32px 30px 36px}
.pg-story .fable-card{overflow:hidden}
.pg-story .fable-art{margin:-32px -30px 10px;background:radial-gradient(120% 90% at 50% 40%,#1B2C36 0%,#101A20 70%);aspect-ratio:16/10;display:flex;align-items:center;justify-content:center;padding:18px 14px 10px;border-bottom:1px solid var(--line-soft)}
.pg-story .fable-fig{width:100%;height:100%}
.pg-story .fig-dim{fill:#2A3D49}
.pg-story .fig-lit{fill:#E4ECEE}
.pg-story .fig-spot{isolation:isolate}
.pg-story .fig-skin{mix-blend-mode:multiply;opacity:.9}
.pg-story .fig-line{stroke:#0E171C;stroke-width:1.6}
.pg-story .fable-part{font-size:15px;font-weight:600;color:var(--muted)}
.pg-story .fable-quote{margin:0;font-family:var(--font-display);font-weight:700;font-stretch:85%;font-size:32px;line-height:1.08;color:var(--ink)}

/* Meeting table */
.pg-story .meeting .table td{padding-block:20px}
.pg-story .meeting .said{color:var(--ink);font-style:italic}

/* Signal vs static graphic */
.pg-story .signal-panel{background:var(--ink);border-radius:14px;padding:32px 30px;display:flex;flex-direction:column;gap:28px}
.pg-story .signal-row{display:flex;flex-direction:column;gap:8px}
.pg-story .signal-row + .signal-row{padding-top:24px;border-top:1px solid var(--line-dark)}
.pg-story .signal-label{font-size:14px;font-weight:700;color:var(--muted-dark)}
.pg-story .signal-label.is-signal{color:var(--teal-light)}
.pg-story .signal-note{font-size:15px;color:var(--muted-dark-2)}

/* Pull-quote */
.pg-story .pull{margin:8px 0 64px;padding:8px 0 8px 32px;border-left:3px solid var(--teal)}
.pg-story .pull p{max-width:26ch;font-family:var(--font-display);font-weight:700;font-stretch:85%;font-size:38px;line-height:1.12;color:var(--ink)}

/* Before / after comparison */
.pg-story .compare{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;align-items:stretch}
.pg-story .compare-col{border-radius:var(--radius);padding:32px;display:flex;flex-direction:column;gap:18px}
.pg-story .compare-col ul{list-style:none;display:grid;gap:12px}
.pg-story .compare-col li{padding-left:22px;position:relative}
.pg-story .compare-col li::before{content:"";position:absolute;left:0;top:.72em;width:10px;height:2px;border-radius:1px;background:currentColor;opacity:.55}
.pg-story .compare-head{display:flex;align-items:center;gap:12px}
.pg-story .compare-head svg{flex-shrink:0}
.pg-story .compare-tag{font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase}
.pg-story .is-before{background:transparent;border:1px dashed var(--line);color:var(--muted)}
.pg-story .is-before .compare-head{color:var(--warn)}
.pg-story .is-before .h4{color:var(--text)}
.pg-story .is-after{background:var(--teal-deep);color:#C3DEDB;box-shadow:var(--shadow)}
.pg-story .is-after .compare-tag{color:var(--teal-light)}
.pg-story .is-after .compare-head{color:var(--teal-light)}
.pg-story .is-after .h4{color:#fff}
.pg-story .is-after li::before{background:var(--teal-bright);opacity:1}

/* Scale: ruled note */
.pg-story .rule-note{display:flex;flex-direction:column;gap:18px;border-left:3px solid var(--teal-bright);padding-left:28px;color:var(--muted-dark-2)}
.pg-story .rule-note .rule-lead{font-size:22px;line-height:1.45;color:#fff}
.pg-story .section--ink .split{gap:72px}

/* Seeing differently */
.pg-story .deep-copy{color:#C3DEDB;font-size:18px;gap:20px;max-width:56ch}
.pg-story .deep-copy .deep-close{color:#fff;font-size:22px;line-height:1.45;font-weight:600}

/* Seat up top */
.pg-story .seat-item{border-top:3px solid var(--teal);padding-top:20px;display:flex;flex-direction:column;gap:8px}
.pg-story .seat-more{margin-top:40px}

/* ---------- Responsive ---------- */
@media (max-width:1100px){
  .pg-story .fable-quote{font-size:28px}
  .pg-story .pull p{font-size:34px}
}
@media (max-width:960px){
  .pg-story .fable{grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
  .pg-story .fable-card{padding:24px 22px 28px}
  .pg-story .fable-art{margin:-24px -22px 8px}
  .pg-story .section--ink .split{gap:48px}
  .pg-story .deep-copy{max-width:65ch}
}
@media (max-width:680px){
  .pg-story .story-lead,.pg-story .page-hero .lede{font-size:18px}
  .pg-story .story-turn,.pg-story .story-after{font-size:21px}
  .pg-story .fable{grid-template-columns:minmax(0,1fr);margin-block:32px}
  .pg-story .fable-card{display:grid;grid-template-columns:120px minmax(0,1fr);column-gap:18px;row-gap:4px;align-items:center;padding:0 20px 0 0}
  .pg-story .fable-art{margin:0;grid-row:span 2;aspect-ratio:4/3;height:100%;padding:8px;border-bottom:0;border-right:1px solid var(--line-soft)}
  .pg-story .fable-quote{font-size:26px}
  .pg-story .pull{padding-left:20px;margin-bottom:44px}
  .pg-story .pull p{font-size:27px}
  .pg-story .compare{grid-template-columns:minmax(0,1fr);gap:16px}
  .pg-story .compare-col{padding:24px}
  .pg-story .signal-panel{padding:24px 20px}
  .pg-story .rule-note{padding-left:20px}
  .pg-story .rule-note .rule-lead,.pg-story .deep-copy .deep-close{font-size:19px}
  .pg-story .deep-copy{font-size:16px}
  .pg-story .seat{gap:32px}
  .pg-story .section--deep .split{gap:24px}
}


/* ==========================================================================
   Page: review
   ========================================================================== */
/* ==========================================================================
   Page: The executive review (.pg-review)
   ========================================================================== */
.pg-review{
  --rv-crit:#C2412D;          /* below plan, on light */
  --rv-crit-dark:#F07A63;     /* below plan, on dark */
  --rv-crit-soft:#F8E4DF;
  --rv-amber:var(--warn);
  --rv-amber-soft:#FBEFE4;
  --rv-ok:var(--teal);
  --rv-ok-soft:#E3F2F0;
}

/* Dashboard shell: a light card on the ink section */
.pg-review .rv-demo{background:var(--paper);color:var(--ink);border-radius:14px;padding:28px;box-shadow:0 30px 60px -32px rgba(0,0,0,.7);display:flex;flex-direction:column;gap:20px}
.pg-review .rv-head{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px 24px;padding-bottom:18px;border-bottom:1px solid var(--line-soft)}
.pg-review .rv-title{font-family:var(--font-display);font-weight:800;font-stretch:88%;font-size:24px;line-height:1.1}
.pg-review .rv-sub{font-size:15px;color:var(--muted);margin-top:4px}
.pg-review .rv-controls{display:flex;flex-wrap:wrap;align-items:center;gap:12px}
.pg-review .rv-controls[hidden]{display:none}
.pg-review .rv-run{padding:12px 20px}
.pg-review .rv-run[hidden]{display:none}
.pg-review .rv-seg{display:inline-flex;border:1px solid var(--line);border-radius:var(--radius-sm);padding:3px;background:var(--ground)}
.pg-review .rv-seg button{font:inherit;font-size:14px;font-weight:600;color:var(--muted);background:transparent;border:0;border-radius:4px;padding:8px 14px;cursor:pointer}
.pg-review .rv-seg button[aria-pressed="true"]{background:var(--paper);color:var(--ink);box-shadow:0 1px 2px rgba(21,34,42,.12)}
.pg-review .rv-seg button:focus-visible{outline:2px solid var(--teal);outline-offset:1px}

/* Review bar */
.pg-review .rv-bar{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px 20px;padding:12px 14px 12px 16px;border:1px solid var(--line-soft);border-left:4px solid var(--rv-crit);border-radius:var(--radius-sm);background:#FDF6F4}
.pg-review .rv-bar[hidden]{display:none}
.pg-review .rv-msg{display:flex;align-items:center;gap:10px;font-size:15px;font-variant-numeric:tabular-nums}
.pg-review .rv-gap{color:var(--rv-crit);font-weight:600}
.pg-review .rv-bar-dot{width:10px;height:10px;border-radius:50%;background:var(--rv-crit);flex-shrink:0}
.pg-review .rv-bar-dot.is-ok{background:var(--rv-ok)}
.pg-review .rv-bar-btns{display:flex;flex-wrap:wrap;gap:8px}
.pg-review .rv-btn{font:inherit;font-size:14px;font-weight:700;line-height:1.2;padding:9px 14px;border-radius:var(--radius-sm);border:1.5px solid var(--line);background:var(--paper);color:var(--ink);cursor:pointer;display:inline-flex;align-items:center;gap:6px}
.pg-review .rv-btn[hidden]{display:none}
.pg-review .rv-btn:hover:not(:disabled){border-color:var(--ink)}
.pg-review .rv-btn:disabled{opacity:.45;cursor:default}
.pg-review .rv-btn span[aria-hidden]{font-size:11px}
.pg-review .rv-btn--crit{background:var(--rv-crit);border-color:var(--rv-crit);color:#fff}
.pg-review .rv-btn--crit:hover:not(:disabled){background:#A5351F;border-color:#A5351F}
.pg-review .rv-btn--crit span[aria-hidden]{font-size:16px;line-height:1}
.pg-review .rv-btn--quiet{border-color:transparent;background:transparent;color:var(--muted)}
.pg-review .rv-btn--quiet:hover:not(:disabled){border-color:var(--line);color:var(--ink)}
.pg-review .rv-btn:focus-visible,.pg-review .rv-crumb:focus-visible,.pg-review .rv-back:focus-visible,.pg-review .rv-row-btn:focus-visible{outline:2px solid var(--teal);outline-offset:2px}

/* Tiles */
.pg-review .rv-tiles{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.pg-review .rv-tile{position:relative;border:1px solid var(--line-soft);border-radius:var(--radius);padding:16px 18px 18px;background:var(--paper);transition:opacity .25s,filter .25s,background-color .25s,box-shadow .25s,outline-color .25s;outline:2px solid transparent;outline-offset:-1px}
.pg-review .rv-tile-top{display:flex;justify-content:space-between;align-items:center;gap:10px}
.pg-review .rv-label{font-size:14px;font-weight:600;color:var(--muted)}
.pg-review .rv-dot{width:9px;height:9px;border-radius:50%;flex-shrink:0;background:var(--rv-ok)}
.pg-review .band-amber .rv-dot{background:var(--rv-amber)}
.pg-review .band-red .rv-dot{background:var(--rv-crit)}
.pg-review .rv-val{font-family:var(--font-display);font-weight:700;font-stretch:92%;font-size:36px;line-height:1.1;margin:6px 0 4px;font-variant-numeric:tabular-nums}
.pg-review .rv-tsub{font-size:13px;color:var(--muted);font-variant-numeric:tabular-nums}

/* Plan lens (review on) */
.pg-review .is-reviewing .rv-tile.band-ok{background:var(--rv-ok-soft);border-color:#C6E3DF}
.pg-review .is-reviewing .rv-tile.band-amber{background:var(--rv-amber-soft);border-color:#F1D6BE}
.pg-review .is-reviewing .rv-tile.band-red{background:var(--rv-crit-soft);border-color:#EFC8BF}
.pg-review .is-reviewing .band-ok .rv-val{color:var(--teal-deep)}
.pg-review .is-reviewing .band-amber .rv-val{color:#A4500F}
.pg-review .is-reviewing .band-red .rv-val{color:var(--rv-crit)}
.pg-review .is-reviewing .rv-tile:not(.is-focus){opacity:.32;filter:saturate(.3)}
.pg-review .is-reviewing .rv-tile[data-go]{cursor:pointer}
.pg-review .is-reviewing .rv-tile[data-go]:not(.is-focus):hover{opacity:.6}
.pg-review .rv-tile.is-focus{outline-color:var(--rv-crit);box-shadow:0 0 0 6px rgba(194,65,45,.16),0 12px 28px -16px rgba(194,65,45,.5)}
.pg-review .rv-legend{list-style:none;display:flex;flex-wrap:wrap;gap:8px 20px;font-size:13px;color:var(--muted);margin-top:-6px}
.pg-review .rv-legend[hidden]{display:none}
.pg-review .rv-legend li{display:inline-flex;align-items:center;gap:8px}
.pg-review .rv-legend i{width:9px;height:9px;border-radius:50%;background:var(--rv-ok)}
.pg-review .rv-legend .band-amber i{background:var(--rv-amber)}
.pg-review .rv-legend .band-red i{background:var(--rv-crit)}

/* Drill panel */
.pg-review .rv-drill{border:1px solid var(--line);border-radius:var(--radius);padding:22px 24px 24px;background:var(--paper);display:flex;flex-direction:column;gap:14px}
.pg-review .rv-drill[hidden]{display:none}
.pg-review .rv-drill-top{display:flex;flex-wrap:wrap;align-items:center;gap:10px 16px;padding-bottom:14px;border-bottom:1px solid var(--line-soft)}
.pg-review .rv-back{font:inherit;font-size:14px;font-weight:700;color:var(--ink);background:var(--ground);border:1px solid var(--line);border-radius:var(--radius-sm);padding:6px 12px;cursor:pointer}
.pg-review .rv-back:hover{border-color:var(--ink)}
.pg-review .rv-crumbs{display:flex;flex-wrap:wrap;align-items:center;gap:4px 6px;font-size:14px;color:var(--muted)}
.pg-review .rv-crumb{font:inherit;color:var(--teal);background:none;border:0;padding:2px 0;cursor:pointer;text-decoration:underline;text-decoration-color:rgba(14,122,117,.35);text-underline-offset:3px}
.pg-review .rv-crumb:hover{color:var(--teal-deep);text-decoration-color:currentColor}
.pg-review .rv-sep{color:var(--line);font-weight:700}
.pg-review .rv-crumbs [aria-current]{color:var(--ink);font-weight:700}
.pg-review .rv-drill-h{font-family:var(--font-display);font-weight:700;font-stretch:88%;font-size:24px;line-height:1.15}
.pg-review .rv-drill-h:focus{outline:none}
.pg-review .rv-drill-h:focus-visible{outline:2px solid var(--teal);outline-offset:3px}
.pg-review .rv-drill-meta{font-size:14px;color:var(--muted);margin-top:-8px}

/* Ranked rows */
.pg-review .rv-rows{list-style:none;display:grid;gap:6px}
.pg-review .rv-row-btn{width:100%;display:grid;grid-template-columns:minmax(0,1.3fr) minmax(0,1.4fr) minmax(0,1.5fr) 72px 92px;gap:16px;align-items:center;padding:11px 14px;border:1px solid var(--line-soft);border-radius:var(--radius-sm);background:var(--paper);font:inherit;font-size:15px;color:var(--ink);text-align:left;font-variant-numeric:tabular-nums}
.pg-review button.rv-row-btn{cursor:pointer}
.pg-review .rv-row-name{font-weight:600}
.pg-review .rv-row-bar{position:relative;height:8px;border-radius:4px;background:var(--line-soft)}
.pg-review .rv-row-bar::after{content:"";position:absolute;left:80%;top:-4px;bottom:-4px;width:2px;border-radius:1px;background:var(--ink);opacity:.55}
.pg-review .rv-row-bar.no-tick::after{display:none}
.pg-review .rv-row-bar i{display:block;height:100%;border-radius:4px;background:var(--rv-ok)}
.pg-review .band-amber .rv-row-bar i{background:var(--rv-amber)}
.pg-review .band-red .rv-row-bar i{background:var(--rv-crit)}
.pg-review .rv-row-val{font-size:14px;color:var(--muted)}
.pg-review .rv-row-pct{font-weight:700;text-align:right}
.pg-review .band-ok .rv-row-pct{color:var(--teal-deep)}
.pg-review .band-amber .rv-row-pct{color:#A4500F}
.pg-review .band-red .rv-row-pct{color:var(--rv-crit)}
.pg-review .rv-row-go{font-size:13px;font-weight:700;color:#fff;background:var(--rv-crit);border-radius:4px;padding:5px 9px;text-align:center;white-space:nowrap}
.pg-review .rv-row.is-hot .rv-row-btn{border:1.5px solid var(--rv-crit);background:var(--rv-crit-soft)}
.pg-review .rv-row.is-hot .rv-row-btn:hover{box-shadow:0 0 0 4px rgba(194,65,45,.14)}

/* Point of action and ripple */
.pg-review .rv-poa{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);gap:16px;align-items:start}
.pg-review .rv-card{border:1px solid var(--line);border-radius:var(--radius);padding:20px 22px}
.pg-review .rv-action{border-left:4px solid var(--rv-crit)}
.pg-review .rv-action dl{margin:0;display:grid;gap:12px}
.pg-review .rv-action dt{font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted)}
.pg-review .rv-action dd{margin:2px 0 0;font-size:15px;line-height:1.5;color:var(--text)}
.pg-review .rv-action > dl > div:first-child dd{font-size:17px;font-weight:700;color:var(--ink)}
.pg-review .rv-own{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;padding-top:12px;border-top:1px solid var(--line-soft)}
.pg-review .rv-own dd{font-weight:600;color:var(--ink)}
.pg-review .rv-ripple{background:var(--ground);border-color:transparent}
.pg-review .rv-ripple-h{font-family:var(--font-display);font-weight:700;font-stretch:88%;font-size:20px}
.pg-review .rv-ripple-sub{font-size:14px;color:var(--muted);margin:4px 0 14px}
.pg-review .rv-ripple ol{list-style:none;display:grid;gap:0;position:relative}
.pg-review .rv-ripple li{position:relative;display:grid;gap:2px;padding:0 0 16px 28px;font-variant-numeric:tabular-nums}
.pg-review .rv-ripple li:last-child{padding-bottom:0}
.pg-review .rv-ripple li::before{content:"";position:absolute;left:5px;top:6px;width:10px;height:10px;border-radius:50%;background:var(--paper);border:2px solid var(--teal)}
.pg-review .rv-ripple li:not(:last-child)::after{content:"";position:absolute;left:10px;top:20px;bottom:2px;width:2px;background:rgba(14,122,117,.35)}
.pg-review .rv-ripple li.is-last::before{background:var(--teal);border-color:var(--teal)}
.pg-review .rv-lvl{font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--teal)}
.pg-review .rv-step{font-size:15px;color:var(--text)}
.pg-review .rv-res{font-size:15px;color:var(--ink)}
.pg-review .rv-ripple li.is-last .rv-res{font-size:17px;color:var(--teal-deep)}

.pg-review .rv-note{margin-top:18px;max-width:none}

/* Responsive */
@media (max-width:1100px){
  .pg-review .rv-row-btn{grid-template-columns:minmax(0,1.3fr) minmax(0,1fr) minmax(0,1.5fr) 64px 88px;gap:12px}
}
@media (max-width:960px){
  .pg-review .rv-poa{grid-template-columns:minmax(0,1fr)}
  .pg-review .rv-row-btn{grid-template-columns:minmax(0,1fr) auto;grid-template-areas:"name pct" "bar bar" "val go";row-gap:8px}
  .pg-review .rv-row-name{grid-area:name}
  .pg-review .rv-row-pct{grid-area:pct}
  .pg-review .rv-row-bar{grid-area:bar}
  .pg-review .rv-row-val{grid-area:val}
  .pg-review .rv-row-go{grid-area:go;justify-self:end}
}
@media (max-width:680px){
  .pg-review .rv-demo{padding:16px;gap:16px;border-radius:12px}
  .pg-review .rv-head{padding-bottom:14px}
  .pg-review .rv-controls{width:100%}
  .pg-review .rv-seg{flex:1 1 auto}
  .pg-review .rv-seg button{flex:1 1 0}
  .pg-review .rv-run{flex:1 1 100%}
  .pg-review .rv-tiles{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .pg-review .rv-tile{padding:12px 12px 14px}
  .pg-review .rv-label{font-size:13px}
  .pg-review .rv-val{font-size:26px}
  .pg-review .rv-tsub{font-size:12px}
  .pg-review .rv-bar{padding:12px}
  .pg-review .rv-bar-btns{width:100%}
  .pg-review .rv-bar-btns .rv-btn{flex:1 1 auto;justify-content:center;padding-inline:10px}
  .pg-review .rv-drill{padding:16px}
  .pg-review .rv-drill-h{font-size:20px}
  .pg-review .rv-card{padding:16px}
  .pg-review .rv-own{grid-template-columns:minmax(0,1fr)}
  .pg-review .rv-keys{display:none}
}

@media (prefers-reduced-motion:reduce){.pg-review .rv-tile{transition:none}}

@media print{
  .pg-review .rv-bar,.pg-review .rv-controls,.pg-review .rv-back{display:none}
  .pg-review .rv-demo{box-shadow:none;border:1px solid var(--line)}
}

/* review.html: point-of-action additions (to merge into site.css) */
.pg-review .rv-watch{padding:10px 12px;border-radius:var(--radius-sm);background:var(--rv-ok-soft);border-left:3px solid var(--teal)}
.pg-review .rv-action .rv-watch dt{color:var(--teal-deep)}
.pg-review .rv-action .rv-watch dd{color:var(--ink)}
.pg-review .rv-own--3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:680px){.pg-review .rv-own--3{grid-template-columns:minmax(0,1fr)}}

/* Review page: static step-by-step (replaces the interactive demo) */
.pg-review .rv-steps{list-style:none;display:grid;gap:56px}
.pg-review .rv-steps li{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,2fr);gap:40px;align-items:center}
.pg-review .rv-step-copy{display:flex;flex-direction:column;gap:12px}
.pg-review .rv-step-copy p{color:var(--muted-dark-2)}
.pg-review .rv-step-n{width:40px;height:40px;border-radius:50%;border:1.5px solid var(--teal-bright);color:var(--teal-light);display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-weight:800}
.pg-review .rv-shot{margin:0;border-radius:12px;overflow:hidden;background:#fff;box-shadow:0 24px 48px -24px rgba(0,0,0,.6)}
.pg-review .rv-shot img{width:100%}
.pg-review .rv-invite{margin-top:64px;padding:28px 32px;border:1px solid var(--line-dark);border-radius:12px;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:20px}
.pg-review .rv-invite p{color:var(--muted-dark-2);max-width:60ch}
.pg-review .rv-invite b{color:var(--on-dark)}
@media (max-width:960px){.pg-review .rv-steps li{grid-template-columns:minmax(0,1fr);gap:20px}}

/* Private walkthrough page */
.wt-flag{margin-left:auto;font-size:13px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--teal-light);border:1px solid var(--line-dark);border-radius:999px;padding:6px 14px}
.pg-wt .wt-card .body-pad p b{color:var(--ink)}
.pg-wt .wt-btns{margin-top:10px}
.pg-wt .wt-btns .btn{padding:11px 16px;font-size:15px}
.pg-wt .wt-next{list-style:none}
.pg-wt .wt-n{width:36px;height:36px;border-radius:50%;background:var(--teal-soft);color:var(--teal-deep);display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-weight:800}
