/* ============================================================
   TWO6 — Asset management capability
   Shared stylesheet
   Brand: ink + warm paper, industrial "signal" clay accent,
   recurring lifecycle device, hand-drawn maintenance-card contrast.
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Caveat:wght@500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Neutrals — brand navy + cool greys */
  --ink:        #003362;   /* brand navy */
  --ink-2:      #08406f;   /* lighter navy (cards/sections on dark) */
  --ink-3:      #115488;   /* navy hover */
  --paper:      #f5f7f9;   /* light cool grey background */
  --paper-2:    #ffffff;   /* cards / white surface */
  --paper-3:    #e9edf1;   /* alt section grey */
  --steel:      #4f5b67;   /* secondary text */
  --steel-2:    #8a929b;   /* muted text (brand grey family) */
  --line:       #dce1e6;   /* cool border */
  --line-ink:   rgba(255,255,255,0.12);

  /* Brand yellow accent + navy for readable text accents on light */
  --signal:      #feb616;   /* brand yellow — fills, highlights, on-dark accents */
  --signal-deep: #003362;   /* navy — readable accent text on light backgrounds */
  --signal-press:#e5a200;   /* darker yellow — button hover */
  --signal-soft: #fff2d1;   /* light yellow tint */
  --signal-tint: rgba(254,182,22,0.16);

  /* Supporting */
  --slate:      #003362;

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-hand:    'Caveat', 'Comic Sans MS', cursive;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --t: 280ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
::selection { background: var(--signal); color: var(--ink); }

/* ---------- Type scale ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }
.h-display { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 600; line-height: 1.02; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.15rem; letter-spacing: -0.01em; }
p { color: var(--steel); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.32rem); line-height: 1.55; color: var(--ink-2); }
strong { color: var(--ink); font-weight: 600; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section-sm { padding: clamp(50px, 7vw, 90px) 0; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--signal-deep);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--signal); display: inline-block; }
.eyebrow.center-eb { justify-content: center; }
.section-head { max-width: 740px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head p { margin-top: 18px; font-size: 1.12rem; }

/* Dark surface */
.ink { background: var(--ink); color: var(--paper); }
.ink h1, .ink h2, .ink h3, .ink h4 { color: #fff; }
.ink p { color: #b9c0c9; }
.ink .eyebrow { color: var(--signal); }
.ink strong { color: #fff; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: 15px 26px; border-radius: 100px;
  transition: transform var(--t) var(--ease), background var(--t), color var(--t), box-shadow var(--t);
  will-change: transform; line-height: 1;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t) var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--signal); color: var(--ink); box-shadow: 0 8px 24px -10px rgba(254,182,22,.7); }
.btn-primary:hover { background: var(--signal-press); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.ink .btn-ghost { border-color: rgba(255,255,255,.25); color: #fff; }
.ink .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-text {
  font-family: var(--font-display); font-weight: 600; color: var(--signal-deep);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-text svg { width: 16px; height: 16px; transition: transform var(--t) var(--ease); }
.btn-text:hover svg { transform: translateX(4px); }
.ink .btn-text { color: var(--signal); }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,245,240,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand-mark { width: auto; height: 40px; flex: none; }
.brand-word { width: auto; height: 27px; flex: none; }
@media (max-width: 420px){ .brand-mark { height: 34px; } .brand-word { height: 23px; } }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: .92rem;
  color: var(--ink-2); padding: 9px 11px; border-radius: 9px; white-space: nowrap;
  transition: color var(--t), background var(--t); position: relative;
}
.nav-links a:hover { background: rgba(20,24,29,.05); }
.nav-links a.active { color: var(--signal-deep); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta { padding: 11px 20px !important; }
.nav-links .mobile-cta { display: none; } /* only shown inside the open mobile menu */
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 10px; }
.menu-toggle svg { width: 24px; height: 24px; }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-right .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--paper-2); border-bottom: 1px solid var(--line);
    padding: 14px var(--gutter) 24px; box-shadow: 0 24px 40px -28px rgba(0,0,0,.4);
  }
  .nav-links.open a { padding: 14px 12px; font-size: 1.05rem; }
  .nav-links.open .mobile-cta { display: inline-flex; margin-top: 12px; text-align: center; justify-content: center; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(60px, 9vw, 120px) 0 clamp(70px, 9vw, 120px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.hero-eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 26px; }
.hero .lead { max-width: 30ch; }
.hero-copy p + p { margin-top: 16px; }
.hero-actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-sub { margin-top: 34px; display: flex; gap: 26px; flex-wrap: wrap; }
.hero-sub div { }
.hero-sub .k { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: .95rem; }
.hero-sub .v { font-size: .86rem; color: var(--steel); }

/* faint industrial grid texture */
.grid-texture::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 62%);
          mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 62%);
  opacity: .5;
}
.ink .grid-texture::before {
  background-image:
    linear-gradient(var(--line-ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-ink) 1px, transparent 1px);
}
.hero > .wrap { position: relative; z-index: 1; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .lead { max-width: 46ch; }
  .hero-visual { order: -1; margin: 0 auto; max-width: 460px; }
}

/* ============================================================
   Lifecycle device (recurring)
   ============================================================ */
.lifecycle {
  position: relative; width: 100%; max-width: 460px; margin: 0 auto; aspect-ratio: 1;
}
.lifecycle svg { width: 100%; height: 100%; overflow: visible; }
.lc-track { fill: none; stroke: var(--line); stroke-width: 1.5; }
.ink .lc-track { stroke: var(--line-ink); }
.lc-progress {
  fill: none; stroke: var(--ink); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.in-view .lc-progress { stroke-dashoffset: 0; }
.lc-hub {
  position: absolute; inset: 0; display: grid; place-content: center; text-align: center;
}
.lc-hub .lab { font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--signal-deep); }
.ink .lc-hub .lab { color: var(--signal); }
.lc-hub .val { font-family: var(--font-display); font-weight: 600; font-size: 1.42rem; letter-spacing: -.02em; color: var(--ink); margin-top: 4px; max-width: 8.5ch; line-height: 1.12; }
.ink .lc-hub .val { color: #fff; }
.lc-node {
  position: absolute; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px; width: 116px; text-align: center;
}
.lc-dot {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--paper-2); border: 1.5px solid var(--line);
  display: grid; place-content: center; color: var(--ink);
  box-shadow: 0 10px 22px -16px rgba(0,0,0,.5);
  transition: transform var(--t) var(--ease), border-color var(--t), background var(--t), color var(--t);
}
.lc-dot svg { width: 22px; height: 22px; }
.ink .lc-dot { background: var(--ink-2); border-color: var(--line-ink); color: #fff; }
.lc-node:hover .lc-dot, .lc-node.is-active .lc-dot { transform: scale(1.1); border-color: var(--signal); background: var(--signal); color: var(--ink); }
.lc-node .n-label { font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--ink); }
.ink .lc-node .n-label { color: #fff; }
.lc-node .n-pos { display:none; }
@media (max-width: 420px){ .lc-node { width: 92px; } .lc-dot { width: 42px; height: 42px; } }

/* Lifecycle as horizontal strip (used on inner pages) */
.lc-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: lc; }
.lc-strip .lc-step {
  position: relative; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px 28px;
  transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t);
}
.lc-strip .lc-step:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -28px rgba(0,0,0,.35); border-color: var(--signal); }
.lc-step .lc-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--signal-soft); color: var(--signal-deep); display: grid; place-content: center; margin-bottom: 18px; }
.lc-step .lc-ico svg { width: 24px; height: 24px; }
.lc-step .lc-num { position: absolute; top: 20px; right: 22px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--line); }
.lc-step h4 { margin-bottom: 9px; }
.lc-step p { font-size: .96rem; }
.lc-step::after {
  content: ""; position: absolute; top: 44px; right: -13px; width: 18px; height: 18px;
  border-top: 2px solid var(--signal-deep); border-right: 2px solid var(--signal-deep);
  transform: rotate(45deg); z-index: 2; opacity: .5;
}
.lc-strip .lc-step:last-child::after { display: none; }
@media (max-width: 860px){ .lc-strip { grid-template-columns: 1fr 1fr; } .lc-step:nth-child(2)::after{ display:none; } }
@media (max-width: 520px){ .lc-strip { grid-template-columns: 1fr; } .lc-step::after{ display:none; } }

/* ============================================================
   Cards / grids
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 900px){ .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 30px 50px -34px rgba(0,0,0,.4); border-color: #c6cdd4; }
.card .card-ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-content: center; margin-bottom: 22px;
  background: var(--ink); color: #fff;
}
.card .card-ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 1rem; }

/* Programme cards */
.prog-card { position: relative; display: flex; flex-direction: column; }
.prog-card .tag { font-family: var(--font-display); font-weight: 600; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); margin-bottom: 14px; }
.prog-card .card-ico { background: var(--signal); color: var(--ink); }
.prog-card .blurb { margin-bottom: 20px; }
.prog-card .mini { margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--line); }
.prog-card .mini .btn-text { font-size: .92rem; }

/* Failure modes list */
.fail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 900px){ .fail-grid { grid-template-columns: 1fr; } }
.fail-item {
  background: rgba(255,255,255,.04); border: 1px solid var(--line-ink); border-radius: var(--radius);
  padding: 26px; position: relative;
}
.fail-item .fx { font-family: var(--font-display); font-weight: 700; color: var(--signal); font-size: .9rem; letter-spacing:.1em; margin-bottom: 14px; display:block; }
.fail-item p { color: #c3cad3; font-size: 1.02rem; }
.fail-item strong { color: #fff; }

/* How we work — step list */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width: 860px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .steps { grid-template-columns: 1fr; } }
.step { padding: 26px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); }
.step .s-num { font-family: var(--font-display); font-weight: 700; color: var(--signal); font-size: 1.4rem; margin-bottom: 14px; }
.step h4 { margin-bottom: 8px; }
.step p { font-size: .95rem; }

/* ============================================================
   Maintenance cards (hand-drawn, controlled contrast)
   ============================================================ */
.mcards-band { background: var(--ink-2); position: relative; overflow: hidden; }
.mcards-band .eyebrow { color: var(--signal); }
.mcards-band h2 { color: #fff; }
.mcards-band .mcards-head p { color: #d7dee6; }
.mcards-band .mcards-head p strong { color: #fff; }
.mcards-head { max-width: 720px; }
.mcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 52px; }
@media (max-width: 900px){ .mcards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .mcards { grid-template-columns: 1fr; } }

.mcard {
  background: #fdfcf7; border-radius: 6px; padding: 22px 22px 20px;
  position: relative; transform: rotate(var(--rot, -1.5deg));
  box-shadow: 0 18px 36px -20px rgba(0,0,0,.6);
  transition: transform var(--t) var(--ease), box-shadow var(--t);
  border: 1px solid #e7e1d2;
}
.mcard::before { /* sketch double-border */
  content: ""; position: absolute; inset: 7px; border: 1.5px solid var(--ink);
  border-radius: 4px; opacity: .82;
  -webkit-mask-image: none;
}
.mcard:hover { transform: rotate(0deg) translateY(-6px) scale(1.02); box-shadow: 0 30px 50px -22px rgba(0,0,0,.7); z-index: 3; }
.mcard .tape {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 84px; height: 26px; background: rgba(254,182,22,.32);
  border: 1px dashed rgba(229,162,0,.6); border-radius: 2px;
}
.mcard-inner { position: relative; z-index: 1; padding: 8px 6px 2px; }
.mcard .doodle { width: 100%; height: 132px; margin: 4px 0 14px; }
.mcard .doodle svg { width: 100%; height: 100%; }
.mcard h4 { font-family: var(--font-hand); font-weight: 700; font-size: 1.6rem; letter-spacing: 0; color: var(--ink); line-height: 1.05; }
.mcard .role { font-family: var(--font-display); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--signal-deep); margin-top: 4px; }
.mcard .cap { font-size: .92rem; color: #3a4049; margin-top: 12px; line-height: 1.45; }
.mcard .cap-hand { font-family: var(--font-hand); font-size: 1.18rem; color: #444; }

.hand-note { font-family: var(--font-hand); font-size: 1.5rem; color: var(--signal); transform: rotate(-3deg); display: inline-block; }
.ink .hand-note { color: var(--signal); }

/* ---------- Real maintenance card images (taped frame) ---------- */
.deck-card {
  margin: 0; position: relative; cursor: pointer; background: #fff; padding: 8px;
  border-radius: 7px; border: 1px solid var(--line);
  transform: rotate(var(--rot, 0deg));
  box-shadow: 0 14px 28px -18px rgba(0,0,0,.55);
  transition: transform var(--t) var(--ease), box-shadow var(--t);
}
.deck-card:hover { transform: rotate(0deg) translateY(-6px) scale(1.03); box-shadow: 0 28px 46px -20px rgba(0,0,0,.6); z-index: 3; }
.deck-card .card-img { width: 100%; display: block; border-radius: 4px; }
.deck-card .tape { position: absolute; top: -11px; left: 50%; transform: translateX(-50%) rotate(-3deg); width: 86px; height: 26px; background: rgba(254,182,22,.32); border: 1px dashed rgba(229,162,0,.6); border-radius: 2px; z-index: 4; }
a.deck-card { display: block; }

/* Decorative scattered cards (peeking accents) */
.deco-layer { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.deco-card { position: absolute; width: var(--w, 120px); background: #fff; border: 5px solid #fff; border-radius: 7px;
  box-shadow: 0 18px 34px -18px rgba(0,20,40,.45); transform: rotate(var(--rot, 0deg)); }
.deco-card img { width: 100%; display: block; border-radius: 3px; }
@media (max-width: 980px){ .deco-layer { display: none; } }

/* Deck gallery on the dedicated page */
.deck-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: clamp(18px, 2.4vw, 30px); }
@media (max-width: 480px){ .deck-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px;
  background: rgba(0,20,40,.88); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.lightbox.open { display: flex; }
.lightbox-img { max-width: min(92vw, 480px); max-height: 90vh; border-radius: 10px; background: #fff; box-shadow: 0 40px 90px -20px rgba(0,0,0,.7); }
.lightbox-close { position: absolute; top: 18px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 2rem; line-height: 1; display: grid; place-content: center; transition: background var(--t); }
.lightbox-close:hover { background: rgba(255,255,255,.26); }

/* ============================================================
   Proof points
   ============================================================ */
.proofs { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 900px){ .proofs { grid-template-columns: 1fr; } }
.proof {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; position: relative; overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t);
}
.proof:hover { transform: translateY(-5px); box-shadow: 0 30px 50px -34px rgba(0,0,0,.4); }
.proof .p-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--signal-deep); background: var(--signal-soft); padding: 7px 13px; border-radius: 100px; margin-bottom: 20px; }
.proof h4 { margin-bottom: 12px; font-size: 1.22rem; }
.proof p { font-size: .98rem; }
.proof .p-num { position: absolute; bottom: -18px; right: 4px; font-family: var(--font-display); font-weight: 700; font-size: 5rem; color: var(--paper-3); z-index: 0; line-height: 1; }
.proof > * { position: relative; z-index: 1; }

/* ============================================================
   Feature / split blocks
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; } }
.split-rev .split-media { order: 2; }
@media (max-width: 880px){ .split-rev .split-media { order: -1; } }

.checklist li { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.checklist li:last-child { border-bottom: none; }
.checklist .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--signal-soft); color: var(--signal-deep); display: grid; place-content: center; margin-top: 2px; }
.checklist .ck svg { width: 15px; height: 15px; }
.checklist span { color: var(--ink-2); }
.ink .checklist li { border-color: var(--line-ink); }
.ink .checklist span { color: #cfd5dc; }
.ink .checklist .ck { background: var(--signal-tint); color: var(--signal); }

/* Founder block */
.founder { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px,5vw,64px); align-items: center; }
@media (max-width: 880px){ .founder { grid-template-columns: 1fr; } }
.founder-portrait {
  aspect-ratio: 4/4.4; max-width: 340px; border-radius: var(--radius-lg); position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line-ink); display: grid; place-content: center;
}
.initials { display: flex; gap: 16px; }
.init-badge { width: 108px; height: 108px; border-radius: 50%; background: var(--signal); color: var(--ink); display: grid; place-content: center; font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; box-shadow: 0 20px 40px -18px rgba(254,182,22,.7); }
.init-badge.alt { background: var(--paper-2); color: var(--ink); }
/* Founder photo */
.founder-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.founder-portrait .pcap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px 24px 20px; background: linear-gradient(to top, rgba(0,20,40,.92), rgba(0,20,40,.55) 45%, rgba(0,20,40,0)); }
.founder-portrait .pcap .nm { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.16rem; letter-spacing: -.01em; }
.founder-portrait .pcap .rl { font-size: .84rem; color: #d3dae1; margin-top: 2px; }
.founder-portrait .pcap .rl b { color: var(--signal); font-weight: 600; }
/* Two-up founder team */
.team { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: clamp(32px,4vw,46px); max-width: 500px; }
@media (max-width: 680px){ .team { gap: 16px; } }
.team-card { margin: 0; }
.team-photo { position: relative; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(160deg, var(--ink-2), var(--ink)); transition: transform var(--t) var(--ease), box-shadow var(--t); }
.team-card:hover .team-photo { transform: translateY(-4px); box-shadow: 0 30px 50px -34px rgba(0,0,0,.45); }
.team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 16%; }
.team-card figcaption { padding: 16px 4px 0; }
.team-card .nm { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.18rem; letter-spacing: -.01em; }
.team-card .rl { font-size: .9rem; color: var(--steel); margin-top: 2px; }
.team-card .rl b { color: var(--signal-deep); font-weight: 600; }
.li-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-family: var(--font-display); font-weight: 600; font-size: .82rem; color: var(--ink); padding: 6px 12px 6px 10px; border: 1px solid var(--line); border-radius: 100px; transition: background var(--t), border-color var(--t), color var(--t), transform var(--t); }
.li-link svg { width: 16px; height: 16px; color: #0a66c2; transition: color var(--t); }
.li-link::after { content: "Connect"; }
.li-link:hover { background: #0a66c2; border-color: #0a66c2; color: #fff; transform: translateY(-1px); }
.li-link:hover svg { color: #fff; }

/* ============================================================
   Programme deep sections (capability page)
   ============================================================ */
.prog-block { padding: clamp(54px,7vw,84px) 0; border-top: 1px solid var(--line); }
.prog-block:first-of-type { border-top: none; }
.prog-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 8px; }
.prog-head .idx { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--signal); }
.prog-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,4vw,56px); }
@media (max-width: 900px){ .prog-layout { grid-template-columns: 1fr; } }
.prog-detail h5 { font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--signal-deep); margin: 22px 0 8px; }
.prog-detail h5:first-child { margin-top: 0; }
.prog-detail p { font-size: 1.02rem; }
.outcome-box { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 30px; }
.outcome-box h5 { color: var(--signal); }
.outcome-box p { color: #cfd5dc; }
.outcome-box .proof-inline { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-ink); }
.outcome-box .proof-inline .p-tag { color: var(--signal); background: var(--signal-tint); }
.credential {
  background: var(--signal-soft); border: 1px solid #f3e0a6; border-radius: var(--radius);
  padding: 22px 24px; margin-top: 22px; display: flex; gap: 16px;
}
.credential .c-ico { flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--signal); color: var(--ink); display:grid; place-content:center; }
.credential .c-ico svg { width: 22px; height: 22px; }
.credential p { color: var(--ink-2); font-size: .96rem; }
.partner-chip { display:inline-flex; align-items:center; gap:8px; font-size:.88rem; color:var(--steel); border:1px dashed var(--line); border-radius:100px; padding:7px 14px; margin-top:14px; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: 18px; }
.cta-inner p { font-size: 1.15rem; margin-bottom: 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Contact form
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px,5vw,68px); align-items: start; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-aside .lead { margin-bottom: 26px; }
.contact-aside .info-item { display:flex; gap:14px; padding:16px 0; border-top:1px solid var(--line); }
.contact-aside .info-item:first-of-type { border-top:none; }
.contact-aside .info-item .ck { flex:none; width:30px; height:30px; border-radius:8px; background:var(--signal-soft); color:var(--signal-deep); display:grid; place-content:center; }
.contact-aside .info-item .ck svg{ width:17px; height:17px; }
.contact-aside .info-item .k { font-family:var(--font-display); font-weight:600; color:var(--ink); font-size:.96rem; }
.contact-aside .info-item .v { font-size:.9rem; }

.form-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,4vw,42px); box-shadow: 0 30px 60px -44px rgba(0,0,0,.4); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 8px; }
.field .req { color: var(--signal-press); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 11px;
  padding: 14px 16px; transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--steel-2); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--signal); background: var(--paper-2);
  box-shadow: 0 0 0 4px var(--signal-tint);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px){ .field-row { grid-template-columns: 1fr; } }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .82rem; color: var(--steel); margin-top: 16px; text-align: center; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .sx { width: 64px; height: 64px; border-radius: 50%; background: var(--signal-soft); color: var(--signal-deep); display: grid; place-content: center; margin: 0 auto 20px; }
.form-success .sx svg { width: 32px; height: 32px; }

/* ============================================================
   Stat / trust strip
   ============================================================ */
.trust-strip { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; }
.trust-strip .ts { display:flex; flex-direction:column; }
.trust-strip .ts b { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.trust-strip .ts span { font-size: .84rem; color: var(--steel); }
.ink .trust-strip .ts b { color: #fff; }

.sector-row { display:flex; flex-wrap:wrap; gap:10px; margin-top: 26px; }
.sector-chip { font-family: var(--font-display); font-weight:500; font-size:.86rem; color:var(--ink-2); background:var(--paper-2); border:1px solid var(--line); border-radius:100px; padding:9px 16px; }
.ink .sector-chip { background: rgba(255,255,255,.05); border-color: var(--line-ink); color:#cfd5dc; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: #aeb6bf; padding: clamp(56px,7vw,84px) 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-ink); }
@media (max-width: 760px){ .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { max-width: 34ch; font-size: .96rem; }
.footer-col h5 { font-family: var(--font-display); color: #fff; font-size: .82rem; letter-spacing:.12em; text-transform: uppercase; margin-bottom: 16px; font-weight:600; }
.footer-col a { display: block; padding: 7px 0; color: #aeb6bf; font-size: .96rem; transition: color var(--t); }
.footer-col a:hover { color: var(--signal); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: .84rem; color: #7c858f; }
.footer-bottom a { color: #7c858f; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: .08s; }
.reveal[data-delay="2"]{ transition-delay: .16s; }
.reveal[data-delay="3"]{ transition-delay: .24s; }
.reveal[data-delay="4"]{ transition-delay: .32s; }
.reveal[data-delay="5"]{ transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .lc-progress { stroke-dashoffset: 0 !important; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: clamp(54px,8vw,104px) 0 clamp(40px,5vw,64px); position: relative; overflow: hidden; }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 { margin-bottom: 22px; max-width: 16ch; }
.page-hero .lead { max-width: 56ch; }
.breadcrumb { font-size:.84rem; color:var(--steel); margin-bottom: 26px; font-family: var(--font-display); }
.breadcrumb a:hover { color: var(--signal-deep); }

/* utility */
.mt-s{margin-top:14px}.mt-m{margin-top:26px}.mt-l{margin-top:42px}
.divider-soft{height:1px;background:var(--line);border:none;margin:0}
