  :root {
    --bg: #0B0F14;
    --bg-2: #0F151C;
    --bg-3: #121923;
    --line: rgba(214, 200, 168, 0.18);
    --line-strong: rgba(214, 200, 168, 0.32);
    --text: #F2EFE6;            /* brighter warm off-white for body */
    --text-strong: #FBFAF5;     /* near-white for headings + key values */
    --text-muted: #CFCABE;      /* brighter secondary — was #A8A396 */
    --text-dim: #908B7E;        /* less faded labels — was #6E6A60 */
    --accent: #C8B27E;
    --accent-soft: rgba(200, 178, 126, 0.12);
    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 400;
    font-size: 15.5px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.005em;
    overflow-x: hidden;
    overflow-wrap: break-word;
    -webkit-text-size-adjust: 100%;
  }

  ::selection { background: var(--accent-soft); color: var(--text); }

  /* Top compliance banner */
  .compliance-bar {
    background: #07090C;
    border-bottom: 1px solid var(--line);
    padding: 10px 32px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
  }
  .compliance-bar span { color: var(--text-dim); margin: 0 10px; }

  /* Nav */
  nav.top-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 15, 20, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-mark {
    font-family: var(--serif);
    font-size: 18px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 400;
  }
  .nav-mark .dot { color: var(--accent); }
  .nav-meta {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
  }

  /* Layout */
  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 48px;
  }
  section {
    padding: 120px 0;
    border-bottom: 1px solid var(--line);
  }
  section:last-of-type { border-bottom: none; }

  /* Eyebrow */
  .eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    display: inline-block;
  }
  .eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 14px;
    margin-bottom: 3px;
  }

  /* Hero — full-viewport image with bottom-anchored content (Fairmont pattern) */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0;
    border-bottom: 1px solid var(--line);
  }
  /* HERO IMAGE — swap the URL below for a different photograph (e.g. an Aquasitions / Murray-Darling shot) */
  .hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
      linear-gradient(180deg, rgba(11,15,20,0.45) 0%, rgba(11,15,20,0.20) 30%, rgba(11,15,20,0.55) 65%, rgba(7,9,12,0.96) 100%),
      url('https://images.unsplash.com/photo-1437482078695-73f5ca6c96e2?auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    pointer-events: none;
  }
  .hero-glow {
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    z-index: 2;
    background: radial-gradient(circle, rgba(200, 178, 126, 0.10) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.10;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.80 0 0 0 0 0.70 0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  }
  .hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 96px;
  }

  /* Tag chips — Fairmont style */
  .hero-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.78);
    padding: 7px 14px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(11,15,20,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .hero-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.85;
  }

  .hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.04;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 16px 0 22px;
    max-width: 900px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
  }
  .hero .subtitle {
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.74);
    margin-bottom: 36px;
    letter-spacing: 0.005em;
  }
  .hero .intro {
    max-width: 640px;
    color: rgba(255,255,255,0.66);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 56px;
  }

  /* Bottom-aligned meta strip — Fairmont pattern */
  .hero-meta {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.20);
    max-width: 920px;
  }
  .hero-meta-item { display: flex; flex-direction: column; }
  .hero-meta-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(200,178,126,0.90);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .hero-meta-val {
    font-family: var(--serif);
    font-size: 19px;
    color: rgba(255,255,255,0.94);
    font-weight: 400;
    line-height: 1.3;
  }

  .hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-scroll::after {
    content: "";
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, var(--accent), transparent);
  }

  /* Fact tiles */
  .fact-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .fact {
    padding: 32px 28px;
    border-right: 1px solid var(--line);
  }
  .fact:last-child { border-right: none; }
  .fact-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 12px;
  }
  .fact-value {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.3;
  }
  .fact-value .unit {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-left: 4px;
  }

  /* Section headings */
  h2.section-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text);
    max-width: 820px;
    margin-bottom: 28px;
  }
  h2.section-title em {
    font-style: italic;
    color: var(--accent);
  }
  .section-lede {
    max-width: 720px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 64px;
  }

  /* Overview body */
  .overview-body {
    max-width: 820px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.85;
    font-weight: 300;
  }
  .overview-body + .overview-body { margin-top: 24px; }

  /* Sleeves — 3-column grid for the three strategy formats */
  .sleeves {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .sleeve {
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 44px 36px;
    position: relative;
    transition: border-color 0.4s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
  }
  .sleeve:hover { border-color: var(--line-strong); background: var(--bg-3); }
  .sleeve-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 20px;
    letter-spacing: 0.08em;
  }
  .sleeve h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 26px;
    line-height: 1.22;
    color: var(--text);
    margin-bottom: 14px;
  }
  .sleeve h3 .sleeve-sub {
    display: block;
    font-style: italic;
    font-size: 17px;
    color: var(--accent);
    margin-top: 4px;
    letter-spacing: 0.005em;
  }
  .sleeve-role {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }
  .sleeve ul {
    list-style: none;
    margin-bottom: 28px;
  }
  .sleeve ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: var(--text-muted);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
  }
  .sleeve ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    width: 8px;
    height: 1px;
    background: var(--accent);
  }
  .sleeve ul li:last-child { border-bottom: none; }
  .terms-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    margin-top: auto;
    padding-top: 8px;
  }
  .terms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 0;
  }
  .term-item {
    display: flex;
    flex-direction: column;
  }
  .term-key {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 4px;
  }
  .term-val {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--text);
    font-weight: 400;
    line-height: 1.35;
  }
  .term-aside {
    display: block;
    font-family: var(--sans);
    font-style: italic;
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.02em;
  }

  /* Characteristics grid */
  .char-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .char {
    padding: 40px 36px 40px 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .char:nth-child(3n) { border-right: none; }
  .char:nth-child(3n+2), .char:nth-child(3n) { padding-left: 36px; }
  .char-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 12px;
  }
  .char h4 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 12px;
  }
  .char p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* Investor Positioning block */
  .positioning-block {
    margin-top: 72px;
    padding: 48px 48px 44px;
    background: var(--bg-2);
    border: 1px solid var(--line);
  }
  .positioning-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 24px;
    color: var(--text);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    letter-spacing: 0.01em;
  }
  .positioning-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 56px;
    align-items: start;
  }
  .positioning-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .positioning-list li {
    font-size: 15px;
    color: var(--text);
    padding: 10px 0 10px 22px;
    position: relative;
    line-height: 1.55;
  }
  .positioning-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 20px;
    width: 10px; height: 1px;
    background: var(--accent);
  }

  /* Structure section */
  #structure { position: relative; }
  #structure .container { position: relative; z-index: 1; }

  .structure-diagram {
    margin-top: 80px;
    padding: 48px 44px 40px;
    background: var(--bg-2);
    border: 1px solid var(--line);
  }
  .sd-label {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
  }
  .sd-chain {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .sd-node {
    position: relative;
    width: 100%;
    max-width: 620px;
    padding: 22px 28px;
    border: 1px solid var(--line);
    background: var(--bg-3);
    font-family: var(--serif);
    font-size: 18px;
    color: var(--text);
    text-align: center;
    transition: border-color 0.3s;
  }
  .sd-node--accent {
    border-color: var(--line-strong);
    background: var(--bg-2);
  }
  .sd-node--accent .sd-tier { color: var(--accent); }
  .sd-tier {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    font-family: var(--sans);
    font-weight: 500;
  }
  .sd-text { display: inline-block; line-height: 1.4; }
  .sd-text em {
    font-style: italic;
    font-size: 14px;
    color: var(--text-muted);
  }
  .sd-arrow {
    color: var(--accent);
    font-size: 14px;
    opacity: 0.7;
    line-height: 1;
  }

  .structure-closing {
    margin-top: 40px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 820px;
    border-left: 2px solid var(--accent);
    padding: 6px 0 6px 24px;
  }
  .structure-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .structure-narrative {
    color: var(--text);
    font-size: 16px;
    line-height: 1.85;
  }
  .structure-narrative p { margin-bottom: 20px; }
  .structure-facts {
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 40px 36px;
  }
  .structure-facts h4 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 20px;
    color: var(--text);
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    letter-spacing: 0.02em;
  }
  .sf-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .sf-row:last-child { border-bottom: none; }
  .sf-key {
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
  }
  .sf-val {
    color: var(--text);
    font-family: var(--serif);
    font-size: 16px;
    text-align: right;
    max-width: 60%;
  }

  /* Manager / Underlying Strategy Expertise */
  .collab-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin: 48px 0;
  }
  .collab-item {
    background: var(--bg);
    padding: 36px 32px;
  }
  .collab-item-num {
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 10px;
  }
  .collab-item h5 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    color: var(--text);
    margin-bottom: 10px;
  }
  .collab-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
  }
  .closing-line {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-muted);
    max-width: 760px;
    margin-top: 16px;
  }
  .manager-note {
    margin-top: 32px;
    padding: 24px 28px;
    background: var(--bg-2);
    border-left: 2px solid var(--accent);
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 820px;
  }

  /* CTA / Engagement section */
  .cta-section {
    text-align: left;
    padding: 140px 0;
  }
  .cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 48px 0 40px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--text);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
  }
  .btn.primary {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
  }
  .btn.primary:hover {
    background: transparent;
    color: var(--accent);
  }
  .btn .arrow { font-size: 14px; }

  .cta-note {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 640px;
    line-height: 1.8;
    font-style: italic;
    font-family: var(--serif);
    font-size: 17px;
  }

  /* Access form */
  .access-form {
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 44px 40px 40px;
    max-width: 640px;
    margin-top: 24px;
  }
  .access-form label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
    margin-top: 22px;
  }
  .access-form label:first-of-type { margin-top: 0; }
  .access-form label .optional {
    text-transform: none;
    letter-spacing: 0.04em;
    font-style: italic;
    color: var(--text-dim);
    margin-left: 6px;
  }
  .access-form input,
  .access-form textarea,
  .access-form select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    color: var(--text);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
  }
  .access-form input:focus,
  .access-form textarea:focus,
  .access-form select:focus { border-bottom-color: var(--accent); }
  .access-form textarea { resize: vertical; min-height: 80px; }

  .select-wrap {
    position: relative;
  }
  .select-wrap::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    transform: translateY(-75%) rotate(45deg);
    pointer-events: none;
  }
  .access-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 28px;
  }
  .access-form select option {
    background: var(--bg-2);
    color: var(--text);
  }

  .form-submit { margin-top: 36px; }
  .form-note {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 20px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  /* Footer */
  footer {
    background: #07090C;
    border-top: 1px solid var(--line);
    padding: 96px 0 36px;
  }
  .footer-disclaimer {
    border-bottom: 1px solid var(--line);
    padding-bottom: 64px;
    margin-bottom: 80px;
    max-width: 1180px;
  }
  .disclaimer-title {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
  }
  .disclaimer-body {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.85;
    letter-spacing: 0.01em;
    columns: 2;
    column-gap: 64px;
  }
  .disclaimer-body p { margin-bottom: 12px; break-inside: avoid; }

  .footer-cols {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 96px;
    margin-bottom: 72px;
    align-items: start;
  }
  .footer-registered {
    text-align: right;
    justify-self: end;
  }
  .footer-registered .footer-col-label {
    text-align: right;
  }
  .footer-brand h4 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 22px;
    color: var(--text);
    margin-bottom: 22px;
    letter-spacing: 0.005em;
  }
  .footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
    max-width: 420px;
  }
  .footer-col-label {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
  }
  .footer-address {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.85;
    font-style: normal;
  }
  .footer-address strong {
    color: var(--text);
    font-weight: 400;
    display: block;
    margin-bottom: 4px;
  }

  .footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom .cities { letter-spacing: 0.18em; }

  /* Privacy Policy link + modal */
  .pp-link {
    background: none;
    border: none;
    border-bottom: 1px solid rgba(214, 200, 168, 0.28);
    padding: 0;
    margin: 0;
    color: var(--text-dim);
    font: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
  }
  .pp-link:hover,
  .pp-link:focus {
    color: var(--accent);
    border-bottom-color: var(--accent);
    outline: none;
  }
  .footer-bottom .pp-link {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: none;
  }
  .footer-sep {
    color: var(--text-dim);
    margin: 0 10px;
    opacity: 0.6;
  }
  .form-note .pp-link {
    color: var(--accent);
    border-bottom-color: rgba(200, 178, 126, 0.4);
  }
  .form-note .pp-link:hover,
  .form-note .pp-link:focus {
    color: var(--text);
    border-bottom-color: var(--text);
  }
  .form-note.pp-ack { margin-top: 10px; }

  .pp-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(7, 9, 12, 0.86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .pp-overlay.is-open { display: flex; }
  .pp-modal {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--line-strong);
    width: 100%;
    max-width: 880px;
    max-height: calc(100vh - 96px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    margin: auto;
  }
  .pp-header {
    position: relative;
    padding: 36px 64px 24px 44px;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
    background: var(--bg-2);
  }
  .pp-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
  }
  .pp-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 32px;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: 0.005em;
  }
  .pp-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text-muted);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-weight: 300;
    padding: 0;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  }
  .pp-close:hover,
  .pp-close:focus {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-soft);
    outline: none;
  }
  .pp-body {
    padding: 32px 44px 44px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    flex: 1 1 auto;
  }
  .pp-body p.pp-intro {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 18px;
  }
  .pp-body p { margin-bottom: 14px; }
  .pp-body h3 {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 32px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
  }
  .pp-body h3:first-child { margin-top: 0; }
  .pp-body ul {
    list-style: none;
    margin: 10px 0 18px;
    padding: 0;
  }
  .pp-body ul li {
    position: relative;
    padding: 6px 0 6px 22px;
    color: var(--text-muted);
  }
  .pp-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 10px;
    height: 1px;
    background: var(--accent);
  }
  .pp-body ul ul {
    margin: 4px 0 6px;
  }
  .pp-body a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 178, 126, 0.4);
    transition: color 0.3s, border-color 0.3s;
  }
  .pp-body a:hover {
    color: var(--text);
    border-bottom-color: var(--text);
  }
  .pp-table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0 22px;
    font-size: 13px;
  }
  .pp-table th,
  .pp-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
  }
  .pp-table thead th {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    border-bottom: 1px solid var(--line-strong);
  }
  .pp-table td.pp-purpose {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--text);
    width: 22%;
  }
  .pp-table td.pp-desc { width: 44%; color: var(--text-muted); }
  .pp-table td.pp-basis { width: 34%; color: var(--text-muted); }
  .pp-meta {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
  }
  body.pp-lock { overflow: hidden; }

  /* ---------- New v2: Institutional programme page additions ---------- */

  /* Key Terms section — premium institutional two-column grid */
  .key-terms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-top: 32px;
  }
  .key-term {
    padding: 22px 32px 22px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .key-term:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 32px;
  }
  .key-term:nth-child(even) { padding-left: 32px; }
  .key-term:nth-last-child(-n+2) { border-bottom: none; }
  .key-term-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 500;
  }
  .key-term-value {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--text);
    font-weight: 400;
    line-height: 1.35;
  }
  .key-term-aside {
    font-family: var(--sans);
    font-style: italic;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
    margin-top: 2px;
  }

  /* Two-column programme layout (left narrative + right sticky panel) */
  .programme-section { padding: 120px 0; border-bottom: 1px solid var(--line); }
  .programme-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.95fr) minmax(0, 1fr);
    gap: 80px;
    align-items: start;
  }
  .programme-main { min-width: 0; }
  .programme-main .psec {
    padding: 0 0 96px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 96px;
  }
  .programme-main .psec:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .programme-main h2.section-title {
    font-size: clamp(28px, 3.2vw, 42px);
    margin-bottom: 24px;
  }

  /* Sticky institutional summary panel */
  .programme-aside {
    position: sticky;
    top: 120px;
    align-self: start;
  }
  .summary-panel {
    background: linear-gradient(180deg, rgba(15, 21, 28, 0.92) 0%, rgba(11, 15, 20, 0.92) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--line-strong);
    padding: 30px 26px 26px;
  }
  .summary-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
  }
  .summary-panel-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 5px 9px;
    border: 1px solid var(--line);
    background: rgba(7, 9, 12, 0.45);
  }
  .summary-panel-tag::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.9;
  }
  .summary-panel-title {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    padding-bottom: 14px;
    margin-bottom: 2px;
    border-bottom: 1px solid var(--line);
  }
  .summary-panel-table { display: flex; flex-direction: column; }
  .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }
  .summary-row:last-child { border-bottom: none; }
  .summary-row-key {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 500;
    flex-shrink: 0;
  }
  .summary-row-val {
    font-family: var(--serif);
    font-size: 14.5px;
    color: var(--text);
    text-align: right;
    line-height: 1.4;
  }
  .summary-panel-foot {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 10.5px;
    letter-spacing: 0.04em;
    color: var(--text-dim);
    font-style: italic;
    font-family: var(--serif);
    line-height: 1.55;
  }

  /* Programme-main typography */
  .programme-main .eyebrow { margin-bottom: 22px; }
  .programme-main p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.85;
    font-weight: 300;
  }
  .programme-main p + p { margin-top: 18px; }
  .programme-main .section-lede { color: var(--text-muted); margin-bottom: 0; }

  /* Why Water list */
  .why-list {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
  }
  .why-list li {
    padding: 18px 0 18px 28px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.55;
    position: relative;
  }
  .why-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    width: 14px;
    height: 1px;
    background: var(--accent);
  }

  /* Programme architecture diagram */
  .arch-diagram {
    margin-top: 28px;
    padding: 36px 32px 28px;
    background: var(--bg-2);
    border: 1px solid var(--line);
  }
  .arch-label {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 26px;
  }
  .arch-chain { display: flex; flex-direction: column; gap: 0; }
  .arch-node {
    position: relative;
    padding: 18px 22px 18px 76px;
    border: 1px solid var(--line);
    background: var(--bg-3);
  }
  .arch-node--issuer {
    border-color: var(--line-strong);
    background: var(--bg-2);
  }
  .arch-node--issuer .arch-tier { color: var(--accent); }
  .arch-tier {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    font-family: var(--sans);
    font-weight: 500;
  }
  .arch-name {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--text);
    line-height: 1.3;
    font-weight: 400;
  }
  .arch-sub {
    display: block;
    font-style: italic;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 3px;
    font-family: var(--serif);
    font-weight: 300;
  }
  .arch-arrow {
    text-align: center;
    color: var(--accent);
    font-size: 13px;
    opacity: 0.55;
    line-height: 1;
    padding: 8px 0;
  }
  .arch-foot {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
  }

  /* Governance grid */
  .gov-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
    margin-top: 28px;
  }
  .gov-item {
    padding: 24px 24px 24px 0;
    border-bottom: 1px solid var(--line);
  }
  .gov-item:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 24px;
  }
  .gov-item:nth-child(even) { padding-left: 24px; }
  .gov-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 8px;
    letter-spacing: 0.06em;
  }
  .gov-title {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 6px;
    font-weight: 400;
  }
  .gov-desc {
    font-size: 13.5px !important;
    color: var(--text-muted) !important;
    line-height: 1.7 !important;
  }

  /* Portfolio snapshot table */
  .portfolio-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 28px;
    border-top: 1px solid var(--line);
  }
  .portfolio-table th,
  .portfolio-table td {
    padding: 16px 18px 16px 0;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }
  .portfolio-table th {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--accent);
    border-bottom: 1px solid var(--line-strong);
  }
  .portfolio-table td {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--text);
    font-weight: 400;
  }
  .portfolio-table td:first-child,
  .portfolio-table th:first-child { padding-left: 4px; }
  .portfolio-table tr.portfolio-total td {
    font-weight: 500;
    color: var(--accent);
    border-bottom: none;
    border-top: 1px solid var(--line-strong);
    padding-top: 18px;
  }
  .portfolio-note {
    margin-top: 24px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px !important;
    color: var(--text-muted) !important;
    line-height: 1.6 !important;
    max-width: 640px;
  }

  /* Informational callouts */
  .info-callout {
    margin-top: 28px;
    padding: 20px 22px;
    background: var(--bg-2);
    border-left: 2px solid var(--accent);
    font-size: 14px !important;
    color: var(--text-muted) !important;
    line-height: 1.7 !important;
  }
  .info-callout strong {
    color: var(--text);
    font-weight: 400;
    font-family: var(--serif);
    font-size: 15.5px;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
  }

  /* About / manager paragraph styling within programme-main */
  .manager-disclaimer {
    margin-top: 22px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 14.5px !important;
    color: var(--text-muted) !important;
    line-height: 1.6 !important;
  }

  /* Simplified "Why this opportunity" bullet list */
  .simple-list {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .simple-list li {
    padding: 18px 0 18px 28px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.4;
    position: relative;
  }
  .simple-list li:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 24px;
  }
  .simple-list li:nth-child(even) { padding-left: 48px; }
  .simple-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    width: 16px;
    height: 1px;
    background: var(--accent);
  }
  .simple-list li:nth-child(even)::before { left: 20px; }

  /* Support boxes — three additional service providers under main chain */
  .arch-support {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
  }
  .arch-support-item {
    padding: 18px 20px;
    border: 1px solid var(--line);
    background: var(--bg-3);
  }
  .arch-support-name {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--text);
    line-height: 1.3;
    font-weight: 400;
  }
  .arch-support-role {
    display: block;
    font-style: italic;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    font-family: var(--serif);
    font-weight: 300;
  }

  /* Simplified governance list (replaces the 9-item grid) */
  .gov-list {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
  }
  .gov-list li {
    padding: 18px 0 18px 36px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.45;
    position: relative;
  }
  .gov-list li::before {
    counter-increment: gov;
    content: counter(gov, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 20px;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-weight: 500;
  }
  .gov-list { counter-reset: gov; }

  @media (max-width: 700px) {
    .simple-list {
      grid-template-columns: 1fr;
    }
    .simple-list li {
      padding: 16px 0 16px 28px !important;
      border-right: none !important;
    }
    .simple-list li::before { left: 0 !important; top: 26px; }
    .arch-support { grid-template-columns: 1fr; gap: 8px; }
    .gov-list li { font-size: 15.5px; padding: 16px 0 16px 32px; }
  }

  /* Programme-layout — mobile/tablet: stack and remove sticky */
  @media (max-width: 980px) {
    .programme-layout {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .programme-aside {
      position: static;
      top: auto;
      order: -1;
    }
    .summary-panel { padding: 26px 22px 22px; }
    .key-terms { grid-template-columns: 1fr; }
    .key-term {
      padding: 20px 0 !important;
      border-right: none !important;
    }
    .gov-grid { grid-template-columns: 1fr; }
    .gov-item {
      padding: 22px 0 !important;
      border-right: none !important;
    }
    .programme-section { padding: 80px 0; }
  }
  @media (max-width: 600px) {
    .programme-main .psec {
      padding-bottom: 56px;
      margin-bottom: 56px;
    }
    .arch-diagram { padding: 24px 18px 20px; }
    .arch-node { padding: 16px 16px 16px 16px; }
    .arch-tier {
      position: static;
      transform: none;
      display: block;
      margin-bottom: 6px;
      color: var(--accent);
    }
    .arch-name { font-size: 15px; }
    .arch-sub { font-size: 12px; }
    .portfolio-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .portfolio-table th,
    .portfolio-table td { padding: 12px 10px 12px 0; font-size: 14px; white-space: nowrap; }
    .portfolio-table th { font-size: 9px; }
    .summary-row-val { font-size: 13.5px; }
    .why-list li { font-size: 14.5px; padding: 14px 0 14px 24px; }
    .why-list li::before { top: 23px; }
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .sleeves { grid-template-columns: 1fr; gap: 24px; }
  }

  @media (max-width: 900px) {
    .container { padding: 0 28px; }
    nav.top-nav { padding: 18px 28px; }
    section { padding: 80px 0; }
    .hero { min-height: 88vh; }
    .hero .container { padding-top: 96px; padding-bottom: 64px; }
    .hero-img { background-position: center center; }
    .hero-meta { gap: 32px; padding-top: 22px; }
    .hero-meta-val { font-size: 16px; }
    .hero-scroll { display: none; }
    #structure::before { display: none; }
    .access-form { padding: 32px 24px 28px; }
    .positioning-block { padding: 32px 24px; }
    .positioning-cols { grid-template-columns: 1fr; gap: 8px; }
    .structure-diagram { padding: 32px 20px; }
    .sd-node { padding: 18px 16px 18px 48px; font-size: 15px; }
    .sd-tier { left: 14px; }
    footer { padding: 64px 0 32px; }
    .disclaimer-body { columns: 1; }
    .footer-cols { grid-template-columns: 1fr; gap: 48px; }
    .footer-registered, .footer-registered .footer-col-label { text-align: left; justify-self: start; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; font-size: 10px; }
    .footer-disclaimer { padding-bottom: 48px; margin-bottom: 56px; }
    .sleeves { grid-template-columns: 1fr; gap: 24px; }
    .char-grid { grid-template-columns: 1fr; }
    .char { padding: 32px 0 !important; border-right: none; }
    .structure-wrap { grid-template-columns: 1fr; gap: 40px; }
    .collab-list { grid-template-columns: 1fr; }
    .nav-meta { display: none; }
    .compliance-bar { padding: 10px 16px; font-size: 9px; line-height: 1.6; }
    .compliance-bar span { margin: 0 6px; }
    .cta-section { padding: 100px 0; }
    .structure-facts { padding: 32px 24px; }
  }

  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    nav.top-nav { padding: 14px 20px; }
    .nav-mark { font-size: 14px; letter-spacing: 0.22em; }
    section { padding: 60px 0; border-bottom: 1px solid var(--line); }
    .hero { min-height: 84vh; }
    .hero .container { padding-top: 80px; padding-bottom: 48px; }
    .hero h1 { font-size: clamp(34px, 9vw, 50px); margin-bottom: 18px; }
    .hero .subtitle { font-size: 17px; margin-bottom: 28px; }
    .hero .intro { font-size: 15px; margin-bottom: 36px; }
    .hero-tags { gap: 8px; margin-bottom: 22px; }
    .hero-tag { font-size: 9px; padding: 6px 11px; letter-spacing: 0.14em; }
    .hero-meta { gap: 24px 36px; padding-top: 20px; }
    .hero-meta-label { font-size: 9px; letter-spacing: 0.18em; margin-bottom: 6px; }
    .hero-meta-val { font-size: 15px; }
    .eyebrow { font-size: 10px; letter-spacing: 0.22em; margin-bottom: 20px; }
    h2.section-title { font-size: clamp(28px, 7.5vw, 38px); margin-bottom: 20px; }
    .section-lede { font-size: 15px; line-height: 1.7; margin-bottom: 40px; }
    .overview-body { font-size: 15.5px; line-height: 1.75; }
    .sleeve { padding: 32px 24px; }
    .sleeve h3 { font-size: 22px; }
    .sleeve h3 .sleeve-sub { font-size: 15px; }
    .sleeve-role { font-size: 14px; margin-bottom: 22px; padding-bottom: 16px; }
    .sleeve ul li { font-size: 13.5px; padding: 9px 0 9px 16px; }
    .terms-label { margin-top: 4px; }
    .term-key { font-size: 10px; }
    .term-val { font-size: 16px; }
    .term-aside { font-size: 11.5px; }
    .char h4 { font-size: 19px; }
    .char p { font-size: 13.5px; }
    .positioning-block { padding: 28px 20px; }
    .positioning-title { font-size: 19px; margin-bottom: 20px; padding-bottom: 14px; }
    .positioning-list li { font-size: 14px; padding: 8px 0 8px 20px; }
    .structure-facts { padding: 28px 20px; }
    .structure-facts h4 { font-size: 18px; margin-bottom: 22px; padding-bottom: 14px; }
    .sf-row { padding: 12px 0; }
    .sf-key { font-size: 10px; }
    .sf-val { font-size: 14px; max-width: 60%; }
    .structure-narrative { font-size: 15px; }
    .structure-diagram { padding: 28px 16px; margin-top: 56px; }
    .sd-label { margin-bottom: 24px; }
    .sd-node {
      padding: 18px 16px;
      font-size: 14px;
      text-align: center;
    }
    .sd-tier {
      position: static;
      transform: none;
      display: block;
      margin-bottom: 8px;
      color: var(--accent);
    }
    .sd-text { display: block; line-height: 1.45; }
    .sd-text em { font-size: 12px; }
    .structure-closing { font-size: 15px; padding: 4px 0 4px 16px; margin-top: 28px; }
    .collab-item { padding: 26px 22px; }
    .collab-item h5 { font-size: 18px; }
    .collab-item p { font-size: 13.5px; }
    .closing-line { font-size: 17px; }
    .manager-note { padding: 20px 22px; font-size: 14.5px; }
    .cta-section { padding: 72px 0 84px; }
    .access-form { padding: 28px 20px 24px; }
    .access-form input, .access-form textarea, .access-form select { font-size: 14.5px; }
    .form-submit { width: 100%; justify-content: center; padding: 16px 20px; font-size: 11px; }
    .btn { padding: 16px 22px; font-size: 11px; }
    footer { padding: 56px 0 28px; }
    .footer-disclaimer { padding-bottom: 36px; margin-bottom: 44px; }
    .disclaimer-title { margin-bottom: 18px; }
    .disclaimer-body { font-size: 11.5px; line-height: 1.75; }
    .footer-cols { gap: 40px; margin-bottom: 56px; }
    .footer-brand h4 { font-size: 19px; margin-bottom: 16px; }
    .footer-brand p { font-size: 13.5px; }
    .footer-address { font-size: 13.5px; }
    .footer-bottom { font-size: 9.5px; letter-spacing: 0.12em; padding-top: 22px; }
    .compliance-bar { font-size: 8.5px; padding: 8px 14px; letter-spacing: 0.10em; line-height: 1.7; }
    .compliance-bar span { margin: 0 5px; }
    .access-form select option { white-space: normal; }

    /* Privacy modal — mobile */
    .pp-overlay { padding: 16px; }
    .pp-modal { max-height: calc(100vh - 32px); }
    .pp-header { padding: 28px 56px 18px 22px; }
    .pp-title { font-size: 22px; }
    .pp-eyebrow { font-size: 9px; letter-spacing: 0.22em; margin-bottom: 10px; }
    .pp-close { top: 12px; right: 12px; width: 34px; height: 34px; font-size: 20px; }
    .pp-body { padding: 22px 22px 28px; font-size: 13px; line-height: 1.75; }
    .pp-body p.pp-intro { font-size: 13.5px; }
    .pp-body h3 { font-size: 10px; letter-spacing: 0.20em; margin: 24px 0 12px; padding-bottom: 8px; }
    .pp-body ul li { padding: 5px 0 5px 18px; }
    .pp-body ul li::before { top: 13px; width: 8px; }
    .pp-table { font-size: 12px; display: block; }
    .pp-table thead { display: none; }
    .pp-table tbody, .pp-table tr, .pp-table td { display: block; width: 100%; }
    .pp-table tr {
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
    }
    .pp-table tr:last-child { border-bottom: none; }
    .pp-table td {
      padding: 4px 0;
      border-bottom: none;
    }
    .pp-table td.pp-purpose {
      font-size: 15px;
      color: var(--accent);
      margin-bottom: 4px;
    }
    .pp-table td.pp-desc::before {
      content: "Description — ";
      color: var(--text-dim);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .pp-table td.pp-basis::before {
      content: "Legal basis — ";
      color: var(--text-dim);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
  }

  @media (max-width: 380px) {
    .container { padding: 0 16px; }
    nav.top-nav { padding: 12px 16px; }
    .nav-mark { font-size: 12px; letter-spacing: 0.18em; }
    .hero h1 { font-size: 30px; }
    h2.section-title { font-size: 26px; }
    .sleeve { padding: 26px 18px; }
    .sleeve h3 { font-size: 20px; }
  }

  /* ---------- v4: Compression + visual hierarchy ---------- */

  /* Compressed bullet rail (replaces simple-list for opportunity bullets) */
  .pill-rail {
    list-style: none;
    margin: 16px 0 32px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .pill-rail li {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding: 10px 16px;
    border: 1px solid var(--line-strong);
    background: var(--bg-2);
  }
  .pill-rail li::before { content: none; }

  /* "Why Now" stat row — two prominent stat tiles */
  .stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .stat {
    padding: 28px 28px 28px 0;
    border-bottom: none;
  }
  .stat:first-child {
    border-right: 1px solid var(--line);
    padding-right: 32px;
  }
  .stat:last-child { padding-left: 32px; }
  .stat-value {
    font-family: var(--serif);
    font-size: clamp(28px, 3.4vw, 38px);
    color: var(--text-strong);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.01em;
  }
  .stat-label {
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 12px;
  }

  /* Portfolio top-line — 4 compact stat tiles */
  .top-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .top-stat {
    padding: 24px 20px 24px 0;
    border-right: 1px solid var(--line);
  }
  .top-stat:nth-child(2),
  .top-stat:nth-child(3) { padding-left: 20px; }
  .top-stat:last-child { border-right: none; padding-left: 20px; }
  .top-stat-value {
    font-family: var(--serif);
    font-size: clamp(22px, 2.6vw, 30px);
    color: var(--text-strong);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.005em;
  }
  .top-stat-label {
    font-size: 10px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 10px;
  }

  .full-breakdown-note {
    margin-top: 20px !important;
    font-family: var(--serif) !important;
    font-style: italic !important;
    font-size: 14.5px !important;
    color: rgba(255,255,255,0.55) !important;
    line-height: 1.55 !important;
  }

  /* Compact governance — 4-up grid of mini cards */
  .gov-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid var(--line);
  }
  .gov-compact-item {
    padding: 22px 24px 22px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    gap: 16px;
  }
  .gov-compact-item:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 24px;
  }
  .gov-compact-item:nth-child(even) { padding-left: 24px; }
  .gov-compact-num {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-weight: 500;
    flex-shrink: 0;
  }
  .gov-compact-label {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--text-strong);
    line-height: 1.35;
  }

  /* Aquasitions — compressed key facts */
  .aq-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .aq-stat {
    padding: 24px 20px 24px 0;
    border-right: 1px solid var(--line);
  }
  .aq-stat:nth-child(2) { padding-left: 20px; }
  .aq-stat:last-child { padding-left: 20px; border-right: none; }
  .aq-stat-value {
    font-family: var(--serif);
    font-size: clamp(22px, 2.6vw, 30px);
    color: var(--text-strong);
    line-height: 1.1;
    font-weight: 400;
  }
  .aq-stat-label {
    font-size: 10px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 10px;
  }

  /* ===== Sticky panel — headline metrics dominate ===== */
  .panel-metrics {
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-top: 4px;
    margin-bottom: 22px;
  }
  .panel-metric {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .panel-metric:last-child { border-bottom: none; }
  .panel-metric-label {
    font-size: 9.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-bottom: 4px;
  }
  .panel-metric-val {
    font-family: var(--serif);
    color: #FFFFFF;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.005em;
  }
  .panel-metric--xl .panel-metric-val { font-size: 30px; }
  .panel-divider {
    height: 1px;
    background: var(--line);
    margin: 4px 0 12px;
  }
  .panel-subtitle {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 8px;
  }

  /* Responsive compression */
  @media (max-width: 980px) {
    .stat-row { grid-template-columns: 1fr; }
    .stat { border-right: none !important; padding: 22px 0 !important; border-bottom: 1px solid var(--line) !important; }
    .stat:last-child { border-bottom: none !important; }
    .top-stats { grid-template-columns: 1fr 1fr; }
    .top-stat { padding: 20px 16px 20px 0 !important; border-bottom: 1px solid var(--line); }
    .top-stat:nth-child(2) { border-right: none; padding-left: 16px !important; }
    .top-stat:nth-child(3) { border-right: 1px solid var(--line); padding-left: 0 !important; }
    .top-stat:nth-child(4) { padding-left: 16px !important; }
    .gov-compact { grid-template-columns: 1fr; }
    .gov-compact-item { border-right: none !important; padding: 18px 0 !important; }
    .aq-stats { grid-template-columns: 1fr; }
    .aq-stat { border-right: none !important; padding: 18px 0 !important; border-bottom: 1px solid var(--line); }
    .aq-stat:last-child { border-bottom: none; }
    .panel-metric-val { font-size: 22px; }
    .panel-metric--xl .panel-metric-val { font-size: 26px; }
  }
  @media (max-width: 600px) {
    .top-stats { grid-template-columns: 1fr; }
    .top-stat { border-right: none !important; padding: 18px 0 !important; }
  }

  /* ---------- v5: Investment-memo card grid system ---------- */

  /* Reusable card grid */
  .cards-grid {
    display: grid;
    gap: 14px;
    margin-top: 32px;
  }
  .cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

  .icard {
    padding: 26px 24px 24px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    transition: border-color 0.35s ease, background 0.35s ease;
    display: flex;
    flex-direction: column;
  }
  .icard:hover {
    border-color: var(--line-strong);
    background: var(--bg-3);
  }
  .icard-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 12.5px;
    color: var(--accent);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
  }
  .icard-title {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--text-strong);
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 8px;
  }
  .icard-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.62);
    line-height: 1.7;
    margin: 0;
  }

  /* Opportunity highlight cards — bigger title, no description */
  .icard--tag .icard-title {
    font-size: 19px;
    margin-bottom: 0;
    font-style: italic;
  }
  .icard--tag .icard-num {
    margin-bottom: 18px;
  }

  /* Key highlights — value + label compact cards */
  .icard--hl {
    padding: 22px 22px;
  }
  .icard-value {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--text-strong);
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 6px;
  }
  .icard-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dim);
    line-height: 1.5;
  }

  /* Simplified portfolio metric table (5 rows) */
  .port-metrics {
    margin-top: 28px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .port-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    gap: 24px;
  }
  .port-row:last-child { border-bottom: none; }
  .port-key {
    font-size: 11px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 500;
  }
  .port-val {
    font-family: var(--serif);
    font-size: 21px;
    color: var(--text-strong);
    font-weight: 400;
    text-align: right;
  }

  /* Responsive */
  @media (max-width: 980px) {
    .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .port-val { font-size: 19px; }
  }
  @media (max-width: 600px) {
    .cards-grid--4,
    .cards-grid--3,
    .cards-grid--2 { grid-template-columns: 1fr; }
    .icard { padding: 22px 20px; }
    .icard-title { font-size: 18px; }
    .icard-value { font-size: 20px; }
    .port-val { font-size: 18px; }
    .port-row { padding: 16px 0; }
  }

  /* ---------- Readability layer (Apollo / Bloomberg-style institutional) ---------- */

  /* Brighten and slightly soften headings */
  h2.section-title,
  .hero h1 { color: var(--text-strong); }

  .hero .subtitle { color: rgba(255,255,255,0.82); }
  .hero .intro {
    color: rgba(255,255,255,0.78);
    font-size: 17px;
    line-height: 1.85;
  }
  .hero-meta-val { color: rgba(255,255,255,0.96); }
  .hero-meta-label { color: rgba(200,178,126,0.95); }

  /* Main narrative paragraphs — brighter and roomier */
  .programme-main p {
    color: var(--text);
    font-size: 16.5px;
    line-height: 1.9;
    font-weight: 400;
  }
  .programme-main p + p { margin-top: 22px; }
  .programme-main .section-lede {
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    line-height: 1.85;
  }
  .programme-main h2.section-title { margin-bottom: 28px; }
  .programme-main .psec { padding-bottom: 104px; margin-bottom: 104px; }

  /* "Why this opportunity" simple list — sharper and roomier */
  .simple-list li {
    color: var(--text-strong);
    font-size: 18px;
    line-height: 1.5;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  /* Governance numbered list — sharper, more readable */
  .gov-list li {
    color: var(--text);
    font-size: 17.5px;
    line-height: 1.55;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .gov-list li::before { color: var(--accent); top: 22px; }

  /* Architecture diagram — sharper text */
  .arch-diagram { padding: 40px 36px 32px; }
  .arch-node { padding: 22px 24px 22px 80px; }
  .arch-name { font-size: 18px; color: var(--text-strong); }
  .arch-sub { color: rgba(255,255,255,0.66); font-size: 13.5px; }
  .arch-tier { color: rgba(200,178,126,0.9); }
  .arch-node--issuer .arch-tier { color: var(--accent); }
  .arch-support-name { font-size: 16px; color: var(--text-strong); }
  .arch-support-role { color: rgba(255,255,255,0.65); font-size: 12.5px; }

  /* Portfolio table — brighter values, more breathing room */
  .portfolio-table th,
  .portfolio-table td { padding-top: 20px; padding-bottom: 20px; }
  .portfolio-table td { color: var(--text-strong); font-size: 17px; }
  .portfolio-table th {
    color: var(--accent);
    font-size: 10.5px;
    letter-spacing: 0.22em;
  }
  .portfolio-table tr.portfolio-total td { color: var(--accent); }

  /* Eyebrow stays gold but slightly clearer */
  .eyebrow { color: var(--accent); }

  /* ===== Sticky summary panel — Bloomberg-style clarity ===== */
  .summary-panel {
    background: linear-gradient(180deg, rgba(18,25,33,0.94) 0%, rgba(13,18,24,0.94) 100%);
    border-color: rgba(214, 200, 168, 0.36);
    padding: 32px 28px 28px;
  }
  .summary-panel-title {
    color: var(--accent);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    padding-bottom: 16px;
  }
  .summary-row { padding: 14px 0; }
  .summary-row-key {
    color: rgba(255,255,255,0.55);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    font-weight: 500;
  }
  .summary-row-val {
    color: var(--text-strong);
    font-size: 15.5px;
    font-weight: 400;
    letter-spacing: 0.005em;
  }
  /* Anchor values that matter most stand out a touch more */
  .summary-row.is-key .summary-row-val {
    color: #FFFFFF;
    font-size: 16.5px;
  }
  .summary-panel-tag {
    color: rgba(255,255,255,0.72);
    border-color: rgba(214,200,168,0.28);
  }
  .summary-panel-foot {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
  }

  /* Manager disclaimer + form labels — readable, calm */
  .manager-disclaimer { color: rgba(255,255,255,0.62) !important; font-size: 15px !important; }
  .access-form label { color: rgba(255,255,255,0.6); font-size: 10.5px; letter-spacing: 0.22em; }
  .access-form input,
  .access-form textarea,
  .access-form select { color: var(--text-strong); font-size: 15.5px; }
  .form-note { color: rgba(255,255,255,0.55); font-size: 12px; line-height: 1.85; }

  /* Section dividers slightly more visible */
  section { border-bottom-color: rgba(214,200,168,0.22); }

  /* Footer text contrast */
  .footer-brand p,
  .footer-address { color: rgba(255,255,255,0.7); font-size: 14.5px; }
  .footer-bottom { color: rgba(255,255,255,0.55); }
  .disclaimer-body { color: rgba(255,255,255,0.55); font-size: 12.5px; line-height: 1.9; }

  /* ---------- Mobile readability lift ---------- */
  @media (max-width: 900px) {
    body { font-size: 16px; line-height: 1.78; }
    .programme-main p { font-size: 16.5px; line-height: 1.9; }
    .programme-main .section-lede { font-size: 16.5px; line-height: 1.85; }
    .simple-list li { font-size: 17px; padding-top: 18px; padding-bottom: 18px; }
    .gov-list li { font-size: 16.5px; padding-top: 18px; padding-bottom: 18px; }
    .summary-row-val { font-size: 15px; }
    .summary-row.is-key .summary-row-val { font-size: 16px; }
    .arch-name { font-size: 16.5px; }
    .arch-sub { font-size: 13px; }
    .portfolio-table td { font-size: 15.5px; padding-top: 16px; padding-bottom: 16px; }
    .programme-main .psec { padding-bottom: 72px; margin-bottom: 72px; }
    .hero .intro { font-size: 16.5px; line-height: 1.85; }
  }
  @media (max-width: 600px) {
    body { font-size: 16px; line-height: 1.8; }
    .programme-main p { font-size: 16px; line-height: 1.9; }
    .programme-main .section-lede { font-size: 16px; }
    .simple-list li { font-size: 16.5px; }
    .gov-list li { font-size: 16px; padding-top: 16px; padding-bottom: 16px; }
    .programme-main .psec { padding-bottom: 56px; margin-bottom: 56px; }
    .hero .intro { font-size: 16px; line-height: 1.85; }
    .access-form label { font-size: 10px; }
    .access-form input,
    .access-form textarea,
    .access-form select { font-size: 16px; }
  }

  /* ============================================================
     v6 — Tearsheet layer
     Bigger / brighter / bolder titles, denser sections, less stylised
     ============================================================ */

  /* Bright clean section titles — no faded gold */
  .programme-main h2.section-title {
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 600;
    letter-spacing: -0.018em;
    color: rgba(255,255,255,0.96);
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .programme-main h2.section-title em {
    font-style: italic;
    color: rgba(255,255,255,0.96);
    font-weight: 600;
  }
  .programme-main .eyebrow {
    font-size: 10.5px;
    letter-spacing: 0.26em;
    margin-bottom: 14px;
  }

  /* Tighter sections + denser body */
  .programme-section { padding: 80px 0; }
  .programme-main .psec {
    padding-bottom: 56px;
    margin-bottom: 56px;
  }
  .programme-main p {
    color: rgba(255,255,255,0.82);
    font-size: 16.5px;
    line-height: 1.75;
  }
  .programme-main p + p { margin-top: 14px; }
  .programme-main .section-lede {
    color: rgba(255,255,255,0.78);
    font-size: 16.5px;
    margin-bottom: 20px;
  }

  /* Brighter hero h1 — slightly tighter */
  .hero h1 {
    font-weight: 500;
    color: rgba(255,255,255,0.98);
    letter-spacing: -0.02em;
  }
  .hero h1 em {
    font-weight: 500;
    color: rgba(255,255,255,0.98);
  }

  /* Compact Key Points list — PDF tear-sheet style */
  .kp-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
  }
  .kp-list li {
    padding: 14px 0 14px 26px;
    border-bottom: 1px solid var(--line);
    font-size: 15.5px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
    position: relative;
  }
  .kp-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    width: 14px;
    height: 1px;
    background: var(--accent);
  }
  .kp-list .kp-title {
    font-family: var(--serif);
    font-size: 17px;
    color: rgba(255,255,255,0.96);
    font-weight: 500;
    margin-right: 6px;
    letter-spacing: -0.005em;
  }
  .kp-list .kp-desc { color: rgba(255,255,255,0.72); }

  /* Side-by-side paired block: Why Water + Manager */
  .paired-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    margin-top: 8px;
  }
  .paired-col { display: flex; flex-direction: column; }
  .paired-col h3 {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 600;
    color: rgba(255,255,255,0.96);
    line-height: 1.25;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line-strong);
    letter-spacing: -0.01em;
  }
  .paired-col p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    margin: 0 0 12px;
  }
  .paired-col p:last-of-type { margin-bottom: 0; }
  .paired-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .paired-col ul li {
    padding: 10px 0 10px 22px;
    border-bottom: 1px solid var(--line);
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
  }
  .paired-col ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 12px;
    height: 1px;
    background: var(--accent);
  }
  .paired-col ul li:last-child { border-bottom: none; }
  .paired-col .small-disc {
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    margin-top: 10px;
  }

  /* Horizontal structure flow — 4 nodes + 3 arrows in one row */
  .flow-horizontal {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 8px;
    align-items: stretch;
    margin-top: 24px;
  }
  .flow-node {
    padding: 18px 14px;
    background: var(--bg-3);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 90px;
  }
  .flow-node--key {
    border-color: var(--line-strong);
    background: var(--bg-2);
  }
  .flow-node-name {
    font-family: var(--serif);
    font-size: 15.5px;
    color: rgba(255,255,255,0.96);
    font-weight: 500;
    line-height: 1.25;
  }
  .flow-node-sub {
    display: block;
    margin-top: 6px;
    font-style: italic;
    font-size: 11.5px;
    color: rgba(255,255,255,0.6);
    font-family: var(--serif);
    line-height: 1.35;
  }
  .flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 14px;
    opacity: 0.55;
    padding: 0 4px;
  }
  .flow-support {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
  }
  .flow-support-item {
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: var(--bg-3);
    font-family: var(--serif);
    font-size: 14px;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
  }
  .flow-support-item em {
    font-style: italic;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    display: block;
    margin-top: 2px;
    font-weight: 400;
  }

  /* Compact governance bullets — no card grid */
  .gov-bullets {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
  }
  .gov-bullets li {
    padding: 12px 0 12px 26px;
    border-bottom: 1px solid var(--line);
    color: rgba(255,255,255,0.86);
    font-family: var(--serif);
    font-size: 16.5px;
    line-height: 1.45;
    position: relative;
    font-weight: 500;
  }
  .gov-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    width: 14px;
    height: 1px;
    background: var(--accent);
  }

  /* Contact when inline inside programme-main */
  .contact-inline .access-form {
    margin-top: 20px;
    padding: 28px 28px 24px;
    background: var(--bg-2);
    border: 1px solid var(--line);
  }
  .contact-inline .access-form .form-submit { margin-top: 28px; }

  /* Tighter portfolio metric table */
  .port-row { padding: 16px 0; }
  .port-val { font-size: 19px; }
  .port-key { font-size: 10.5px; }

  /* Mobile responsive lifts */
  @media (max-width: 980px) {
    .paired-block { grid-template-columns: 1fr; gap: 36px; }
    .paired-col h3 { font-size: 19px; }
    .flow-horizontal {
      grid-template-columns: 1fr;
      gap: 0;
    }
    .flow-arrow {
      padding: 6px 0;
      transform: rotate(90deg);
    }
    .flow-support { grid-template-columns: 1fr; }
    .programme-section { padding: 56px 0; }
    .programme-main .psec { padding-bottom: 44px; margin-bottom: 44px; }
  }
  @media (max-width: 600px) {
    .programme-main h2.section-title { font-size: 24px; }
    .kp-list .kp-title { font-size: 15.5px; }
    .kp-list li { font-size: 14.5px; padding-top: 12px; padding-bottom: 12px; }
    .kp-list li::before { top: 22px; }
    .paired-col p,
    .paired-col ul li { font-size: 14.5px; }
    .gov-bullets li { font-size: 15.5px; }
    .contact-inline .access-form { padding: 22px 20px; }
  }

  /* =====================================================
     v7 — Excellium Digital Tear Sheet (light surface theme)
     Dark hero remains. Programme section sits on warm paper.
     Inter sans-serif for all section titles.
     ===================================================== */

  .tearsheet {
    --paper-bg:        #faf8f5;
    --paper-bg-soft:   #f2efe7;
    --paper-bg-card:   #ffffff;
    --paper-bg-deep:   #ede9df;
    --ink:             #0f1418;
    --ink-body:        rgba(15,20,24,0.82);
    --ink-muted:       rgba(15,20,24,0.60);
    --ink-dim:         rgba(15,20,24,0.42);
    --ink-line:        rgba(15,20,24,0.10);
    --ink-line-strong: rgba(15,20,24,0.20);
    background: var(--paper-bg);
    color: var(--ink-body);
    padding: 88px 0 96px;
    border-bottom: 1px solid var(--ink-line);
  }
  .tearsheet .container { background: transparent; }

  /* Eyebrow stays gold but a touch heavier weight on light */
  .tearsheet .eyebrow {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.24em;
  }
  .tearsheet .eyebrow::before { background: var(--accent); }

  /* Section titles — clean sans-serif on light */
  .tearsheet h2.section-title,
  .tearsheet .programme-main h2.section-title {
    font-family: var(--sans);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-size: clamp(24px, 2.8vw, 30px);
    line-height: 1.2;
  }
  .tearsheet h2.section-title em,
  .tearsheet .programme-main h2.section-title em {
    font-style: normal;
    font-weight: 600;
    color: var(--ink);
  }
  .tearsheet .paired-col h3 {
    font-family: var(--sans);
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
    border-bottom-color: var(--ink-line-strong);
    font-size: 18px;
  }

  /* Body text */
  .tearsheet .programme-main p {
    color: var(--ink-body);
    font-size: 16px;
    line-height: 1.75;
  }
  .tearsheet .programme-main .section-lede {
    color: var(--ink-muted);
  }
  .tearsheet .paired-col p { color: var(--ink-body); font-size: 14.5px; }
  .tearsheet .paired-col ul li { color: var(--ink-body); }
  .tearsheet .small-disc,
  .tearsheet .full-breakdown-note,
  .tearsheet .manager-disclaimer {
    color: var(--ink-dim) !important;
  }

  /* Bullet markers + dividers */
  .tearsheet .kp-list,
  .tearsheet .kp-list li,
  .tearsheet .gov-bullets,
  .tearsheet .gov-bullets li,
  .tearsheet .port-metrics,
  .tearsheet .port-metrics .port-row,
  .tearsheet .paired-col ul li {
    border-color: var(--ink-line);
  }
  .tearsheet .kp-list .kp-title { color: var(--ink); }
  .tearsheet .kp-list .kp-desc { color: var(--ink-muted); }
  .tearsheet .kp-list li,
  .tearsheet .gov-bullets li,
  .tearsheet .paired-col ul li { color: var(--ink-body); }
  .tearsheet .gov-bullets li { color: var(--ink); }
  .tearsheet .port-key { color: var(--ink-dim); }
  .tearsheet .port-val { color: var(--ink); font-weight: 500; }

  /* Section dividers between psec blocks */
  .tearsheet .programme-main .psec {
    border-bottom-color: var(--ink-line);
  }

  /* Horizontal flow diagram on light surface */
  .tearsheet .flow-horizontal,
  .tearsheet .flow-support { margin-top: 24px; }
  .tearsheet .flow-node {
    background: var(--paper-bg-card);
    border-color: var(--ink-line-strong);
  }
  .tearsheet .flow-node .flow-node-name { color: var(--ink); }
  .tearsheet .flow-node .flow-node-sub { color: var(--ink-muted); }
  .tearsheet .flow-node--key {
    background: var(--ink);
    border-color: var(--ink);
  }
  .tearsheet .flow-node--key .flow-node-name { color: #ffffff; }
  .tearsheet .flow-node--key .flow-node-sub { color: rgba(255,255,255,0.7); }
  .tearsheet .flow-arrow { color: var(--accent); opacity: 0.7; }
  .tearsheet .flow-support-item {
    background: var(--paper-bg-card);
    border-color: var(--ink-line-strong);
    color: var(--ink);
  }
  .tearsheet .flow-support-item em { color: var(--ink-muted); }

  /* ===== Sticky panel — institutional factsheet on light ===== */
  .tearsheet .summary-panel {
    background: var(--paper-bg-card);
    border: 1px solid var(--ink-line-strong);
    padding: 28px 26px 24px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .tearsheet .summary-panel-tags { margin-bottom: 24px; }
  .tearsheet .summary-panel-tag {
    color: var(--ink-muted);
    border-color: var(--ink-line-strong);
    background: transparent;
    font-weight: 600;
  }
  .tearsheet .summary-panel-tag::before { background: var(--accent); }

  /* Grouped panel section title */
  .panel-group { margin-top: 26px; }
  .panel-group:first-of-type { margin-top: 0; }
  .tearsheet .panel-group-title {
    font-family: var(--sans);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 10px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--ink-line-strong);
    position: relative;
  }
  .tearsheet .panel-group-title::before {
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 10px;
  }
  .tearsheet .panel-group-sub {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 12px;
    color: var(--ink-muted);
    margin-top: 4px;
    letter-spacing: 0.01em;
    text-transform: none;
    font-weight: 400;
  }

  .tearsheet .summary-panel-table .summary-row {
    border-bottom-color: var(--ink-line);
    padding: 11px 0;
  }
  .tearsheet .summary-row-key {
    color: var(--ink-dim);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .tearsheet .summary-row-val {
    color: var(--ink);
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: -0.005em;
  }
  .tearsheet .summary-row.is-key .summary-row-val {
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
  }
  .tearsheet .summary-panel-foot {
    color: var(--ink-dim);
    border-top-color: var(--ink-line);
    margin-top: 18px;
    padding-top: 16px;
  }

  /* ===== Form on light surface ===== */
  .tearsheet .contact-inline .access-form {
    background: var(--paper-bg-card);
    border: 1px solid var(--ink-line-strong);
  }
  .tearsheet .access-form label {
    color: var(--ink-dim);
    font-weight: 600;
  }
  .tearsheet .access-form label .optional { color: var(--ink-muted); }
  .tearsheet .access-form input,
  .tearsheet .access-form textarea,
  .tearsheet .access-form select {
    color: var(--ink);
    border-bottom: 1px solid var(--ink-line-strong);
    background: transparent;
  }
  .tearsheet .access-form input:focus,
  .tearsheet .access-form textarea:focus,
  .tearsheet .access-form select:focus {
    border-bottom-color: var(--accent);
  }
  .tearsheet .access-form select option {
    background: var(--paper-bg-card);
    color: var(--ink);
  }
  .tearsheet .select-wrap::after {
    border-color: var(--accent);
  }
  .tearsheet .form-note {
    color: var(--ink-dim);
    font-size: 11px;
    line-height: 1.75;
    margin-top: 18px;
  }
  .tearsheet .form-note.pp-ack { margin-top: 10px; }
  .tearsheet .btn {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink-line-strong);
  }
  .tearsheet .btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(200,178,126,0.10);
  }
  .tearsheet .btn.primary {
    background: var(--ink);
    color: #ffffff;
    border-color: var(--ink);
  }
  .tearsheet .btn.primary:hover {
    background: var(--accent);
    color: var(--ink);
    border-color: var(--accent);
  }
  .tearsheet .pp-link {
    color: var(--ink-muted);
    border-bottom-color: var(--ink-line-strong);
  }
  .tearsheet .pp-link:hover,
  .tearsheet .pp-link:focus {
    color: var(--accent);
    border-bottom-color: var(--accent);
  }
  .tearsheet .form-note .pp-link {
    color: var(--accent);
    border-bottom-color: rgba(200,178,126,0.4);
  }
  .tearsheet .form-note .pp-link:hover {
    color: var(--ink);
    border-bottom-color: var(--ink);
  }

  /* Hide legacy panel-metrics block when inside tearsheet (replaced by grouped tables) */
  .tearsheet .panel-metrics { display: none; }

  @media (max-width: 980px) {
    .tearsheet { padding: 56px 0 64px; }
  }

  /* =====================================================
     v8 — Information design pass
     Stronger headers, more grids, productised panel anchors
     ===================================================== */

  /* Cleaner, heavier institutional section titles */
  .tearsheet h2.section-title,
  .tearsheet .programme-main h2.section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 2.8vw, 30px);
    letter-spacing: -0.03em;
    color: #111111;
    line-height: 1.15;
    margin-bottom: 18px;
  }
  .tearsheet h2.section-title em,
  .tearsheet .programme-main h2.section-title em {
    font-style: normal;
    color: #111111;
    font-weight: 700;
  }
  .tearsheet .paired-col h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.02em;
    color: #111111;
    border-bottom-color: var(--ink-line-strong);
    padding-bottom: 10px;
    margin-bottom: 14px;
  }
  .tearsheet .eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
  }
  .tearsheet .eyebrow::before {
    width: 22px;
    background: var(--accent);
  }

  /* Horizontal split — text left, bullets right */
  .split-row {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 44px;
    margin-top: 18px;
  }
  .split-left p { margin: 0 0 12px; }
  .split-left p:last-child { margin-bottom: 0; }
  .split-right .kp-list { margin-top: 0; }

  /* Strengthen paired-col bullets (Manager block conviction list) */
  .paired-col ul li {
    padding: 11px 0 11px 22px;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
  }
  .tearsheet .paired-col ul li { color: var(--ink); }
  .paired-col ul li::before { top: 21px; }
  .paired-col .bullet-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-right: 8px;
    text-transform: uppercase;
  }

  /* Compress kp-list spacing */
  .tearsheet .kp-list { margin-top: 6px; }
  .tearsheet .kp-list li {
    padding: 12px 0 12px 24px;
    font-size: 14.5px;
    line-height: 1.55;
  }
  .tearsheet .kp-list .kp-title {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .tearsheet .kp-list .kp-desc {
    font-family: 'Inter', sans-serif;
    color: var(--ink-muted);
    font-weight: 400;
  }
  .tearsheet .kp-list li::before { top: 20px; }

  /* Body paragraph weight + clarity */
  .tearsheet .programme-main p {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ink-body);
    font-weight: 400;
  }

  /* ===== Sticky panel anchor block — 4 productised values dominate ===== */
  .panel-anchors {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ink-line-strong);
  }
  .panel-anchor {
    padding: 12px 0;
    border-bottom: 1px dashed var(--ink-line);
  }
  .panel-anchor:last-child { border-bottom: none; padding-bottom: 0; }
  .panel-anchor-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 6px;
  }
  .panel-anchor-val {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.05;
    letter-spacing: -0.025em;
  }
  .panel-anchor--xl .panel-anchor-val { font-size: 28px; }
  .panel-anchor-val .anchor-unit {
    font-weight: 500;
    font-size: 0.55em;
    color: var(--ink-muted);
    letter-spacing: -0.005em;
    margin-left: 5px;
  }
  /* Small italic secondary subtitle inside a panel-anchor value (e.g. AUD equivalent) */
  .panel-anchor-val .anchor-sub {
    display: inline-block;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 0.46em;
    color: var(--ink-dim);
    letter-spacing: 0;
    margin-left: 8px;
    vertical-align: middle;
  }
  /* Multi-line descriptive panel-anchor (e.g. Liquidity) */
  .panel-anchor--note .panel-anchor-val {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -0.005em;
    color: var(--ink);
    white-space: normal;
  }
  /* Footnote block immediately below the panel-anchors */
  .panel-anchor-notes {
    margin-top: 6px;
    padding: 14px 0 4px;
    border-top: 1px solid var(--ink-line);
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    line-height: 1.55;
    color: var(--ink-dim);
    font-style: italic;
    letter-spacing: -0.005em;
  }
  .panel-anchor-notes p { margin: 0 0 8px; }
  .panel-anchor-notes p:last-child { margin-bottom: 0; }

  /* Per-group footnote inside sticky panel */
  .tearsheet .panel-group-note {
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-style: italic;
    color: var(--ink-dim);
    line-height: 1.55;
    letter-spacing: -0.005em;
  }

  /* De-emphasise old is-key rows since anchors now dominate */
  .tearsheet .summary-row.is-key .summary-row-val {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
  }

  /* Panel group titles — tighter Inter */
  .tearsheet .panel-group-title {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.20em;
  }
  .tearsheet .panel-group-sub {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 11.5px;
    color: var(--ink-muted);
    font-weight: 500;
    text-transform: none;
    letter-spacing: -0.005em;
    margin-top: 3px;
  }

  /* Panel summary rows — pure Inter for consistency */
  .tearsheet .summary-row-val {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--ink);
  }

  /* Tighter section spacing on tearsheet */
  .tearsheet .programme-main .psec {
    padding-bottom: 44px;
    margin-bottom: 44px;
  }

  /* Flow node typography → Inter for consistency */
  .tearsheet .flow-node-name,
  .tearsheet .flow-support-item {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .tearsheet .flow-node-sub,
  .tearsheet .flow-support-item em {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
  }

  /* Port metrics — Inter values */
  .tearsheet .port-val {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.015em;
    font-size: 17px;
  }
  .tearsheet .port-key {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
  }

  /* Governance bullets → Inter */
  .tearsheet .gov-bullets li {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--ink);
    letter-spacing: -0.005em;
  }

  /* Form labels + inputs Inter */
  .tearsheet .access-form label,
  .tearsheet .access-form input,
  .tearsheet .access-form textarea,
  .tearsheet .access-form select { font-family: 'Inter', sans-serif; }

  @media (max-width: 980px) {
    .split-row { grid-template-columns: 1fr; gap: 28px; }
    .panel-anchor-val { font-size: 20px; }
    .panel-anchor--xl .panel-anchor-val { font-size: 24px; }
  }
  @media (max-width: 600px) {
    .tearsheet h2.section-title { font-size: 22px; }
    .panel-anchor-val { font-size: 19px; }
    .panel-anchor--xl .panel-anchor-val { font-size: 22px; }
  }

  /* =====================================================
     v9 — Investor Access additions
     Password gate · Water Intelligence Room · FAQ · Offer request
     All built from existing tokens — same dark institutional language.
     ===================================================== */

  /* ---------- Password access gate ---------- */
  .gate-wrap {
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 96px;
    position: relative;
    overflow: hidden;
  }
  /* Subtle accent glow, echoing the hero */
  .gate-wrap::before {
    content: "";
    position: absolute;
    top: -240px;
    right: -200px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(200, 178, 126, 0.08) 0%, transparent 62%);
    pointer-events: none;
    z-index: 0;
  }
  .gate-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    background: var(--bg-2);
    border: 1px solid var(--line-strong);
    padding: 56px 48px 48px;
  }
  .gate-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
    display: inline-block;
  }
  .gate-eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 14px;
    margin-bottom: 3px;
  }
  .gate-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--text-strong);
    margin-bottom: 18px;
  }
  .gate-intro {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 420px;
  }
  .gate-form label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 10px;
  }
  .gate-form input[type="password"] {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-strong);
    padding: 14px 0;
    color: var(--text-strong);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.12em;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
  }
  .gate-form input[type="password"]:focus { border-bottom-color: var(--accent); }
  .gate-form .form-submit { margin-top: 32px; width: 100%; justify-content: center; }
  .gate-error {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.65;
    color: #D9A78F;
    letter-spacing: 0.01em;
    min-height: 1px;
    display: none;
  }
  .gate-error.is-visible { display: block; }
  .gate-foot {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
  }
  .gate-foot span { color: var(--accent); opacity: 0.7; margin: 0 8px; }

  @media (max-width: 600px) {
    .gate-card { padding: 40px 26px 34px; }
    .gate-wrap { min-height: calc(100vh - 80px); padding: 56px 18px 72px; }
  }

  /* ---------- Water Intelligence Room (AI) ---------- */
  .air-section { padding: 120px 0; border-bottom: 1px solid var(--line); }
  .air-lede {
    max-width: 720px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 44px;
  }
  .air-panel {
    background: var(--bg-2);
    border: 1px solid var(--line-strong);
    padding: 40px 38px 36px;
    max-width: 880px;
  }
  .air-field { position: relative; }
  .air-input-row {
    display: flex;
    gap: 14px;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  .air-input-col { flex: 1 1 320px; min-width: 0; }
  .air-input-col label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 10px;
  }
  .air-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-strong);
    padding: 13px 0;
    color: var(--text-strong);
    font-family: var(--sans);
    font-size: 15.5px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
  }
  .air-input:focus { border-bottom-color: var(--accent); }
  .air-input::placeholder { color: var(--text-dim); }
  .air-ask-btn { flex: 0 0 auto; }

  /* Suggested prompt chips */
  .air-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
  }
  .air-prompt {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 9px 15px;
    border: 1px solid var(--line);
    background: var(--bg-3);
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
    line-height: 1.3;
    text-align: left;
  }
  .air-prompt:hover,
  .air-prompt:focus {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
    outline: none;
  }

  /* Answer / loading / error card */
  .air-answer {
    margin-top: 30px;
    border-top: 1px solid var(--line);
    padding-top: 28px;
    display: none;
  }
  .air-answer.is-visible { display: block; }
  .air-answer-label {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .air-answer-body {
    color: var(--text);
    font-size: 16px;
    line-height: 1.85;
    font-weight: 300;
  }
  .air-answer-body p { margin-bottom: 14px; }
  .air-answer-body p:last-child { margin-bottom: 0; }
  /* The mandatory compliance line at the foot of every answer */
  /* Sources Used — sits between the answer and the disclaimer */
  .air-answer-body .air-sources {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    color: var(--text-muted);
  }
  .air-answer-body .air-sources .air-sources-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 10px;
    color: var(--accent);
    margin-right: 8px;
  }
  .air-answer-body .air-disclaimer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--text-dim);
    font-style: italic;
    font-family: var(--serif);
  }
  /* When sources already drew the divider, soften the disclaimer's */
  .air-answer-body .air-sources + .air-disclaimer {
    border-top: none;
    padding-top: 8px;
    margin-top: 10px;
  }
  .air-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .air-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: airPulse 1.1s ease-in-out infinite;
  }
  @keyframes airPulse {
    0%, 100% { opacity: 0.25; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
  }
  .air-error-note {
    margin-top: 18px;
    padding: 18px 20px;
    background: var(--bg-3);
    border-left: 2px solid var(--accent);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    display: none;
  }
  .air-error-note.is-visible { display: block; }

  /* Anonymous analytics privacy note (small, restrained) */
  .air-privacy-note {
    margin-top: 18px;
    max-width: 880px;
    font-size: 11.5px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: var(--text-dim);
  }

  @media (max-width: 900px) {
    .air-section { padding: 80px 0; }
    .air-panel { padding: 30px 22px 26px; }
    .air-ask-btn { width: 100%; justify-content: center; margin-top: 4px; }
  }
  @media (max-width: 600px) {
    .air-section { padding: 60px 0; }
    .air-answer-body { font-size: 15.5px; }
  }

  /* ---------- Important Notice block (AI + form) ---------- */
  .notice-block {
    margin-top: 40px;
    padding: 28px 30px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-left: 2px solid var(--accent);
    max-width: 880px;
  }
  .notice-title {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .notice-body {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--text-muted);
  }

  /* ---------- Request Offer Documents — success state ---------- */
  .offer-success {
    display: none;
    margin-top: 8px;
    padding: 28px 30px;
    background: var(--bg-2);
    border: 1px solid var(--line-strong);
    border-left: 2px solid var(--accent);
    max-width: 640px;
  }
  .offer-success.is-visible { display: block; }
  .offer-success .os-title {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--text-strong);
    margin-bottom: 8px;
    font-weight: 400;
  }
  .offer-success .os-text {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.7;
  }
  /* Success card on the light tearsheet surface */
  .tearsheet .offer-success {
    background: var(--paper-bg-card);
    border-color: var(--ink-line-strong);
  }
  .tearsheet .offer-success .os-title { color: var(--ink); font-family: var(--sans); font-weight: 700; letter-spacing: -0.02em; }
  .tearsheet .offer-success .os-text { color: var(--ink-muted); }

  /* =====================================================
     Admin Intelligence Portal (/admin) — internal only.
     Reuses the dark institutional theme tokens.
     ===================================================== */
  .adm-dash { padding: 56px 0 96px; }
  .adm-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 28px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--line);
  }
  .adm-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-strong);
    line-height: 1.1;
    margin-top: 10px;
  }
  .adm-actions { display: flex; gap: 10px; flex-wrap: wrap; }
  .adm-actions .btn { padding: 12px 18px; font-size: 11px; }
  .adm-note {
    margin-bottom: 24px;
    padding: 16px 18px;
    background: var(--bg-2);
    border-left: 2px solid var(--accent);
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
  }

  .adm-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 36px;
  }
  .adm-stat { padding: 30px 28px; border-right: 1px solid var(--line); }
  .adm-stat:last-child { border-right: none; }
  .adm-stat-value {
    font-family: var(--serif);
    font-size: clamp(32px, 5vw, 46px);
    color: var(--text-strong);
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .adm-stat-label {
    margin-top: 12px;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .adm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
  }
  .adm-panel {
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 26px 26px 22px;
    margin-bottom: 18px;
  }
  .adm-panel-title {
    font-size: 10.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
    padding-bottom: 14px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }
  .adm-ranked { list-style: none; counter-reset: r; margin: 0; padding: 0; }
  .adm-ranked li {
    counter-increment: r;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0 12px 32px;
    border-bottom: 1px solid var(--line);
    position: relative;
    color: var(--text);
    font-size: 15px;
    line-height: 1.45;
  }
  .adm-ranked li:last-child { border-bottom: none; }
  .adm-ranked li::before {
    content: counter(r, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 13px;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 600;
  }
  .adm-ranked--q li { font-family: var(--serif); font-size: 16px; }
  .adm-rank-label { padding-right: 8px; }
  .adm-rank-count {
    flex-shrink: 0;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
  }
  .adm-keywords { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; }
  .adm-kw {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text);
    padding: 8px 12px;
    border: 1px solid var(--line);
    background: var(--bg-3);
  }
  .adm-kw em { font-style: normal; color: var(--accent); font-size: 11px; font-variant-numeric: tabular-nums; }

  .adm-table { width: 100%; border-collapse: collapse; }
  .adm-table td {
    padding: 13px 12px 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    color: var(--text);
    vertical-align: top;
    line-height: 1.5;
  }
  .adm-table tr:last-child td { border-bottom: none; }
  .adm-table .adm-num { text-align: right; color: var(--accent); font-variant-numeric: tabular-nums; }
  .adm-table--recent .adm-when { white-space: nowrap; color: var(--text-dim); font-size: 12.5px; font-variant-numeric: tabular-nums; }
  .adm-table--recent .adm-meta { white-space: nowrap; color: var(--text-dim); font-size: 12px; text-align: right; }
  .adm-empty { color: var(--text-dim); font-style: italic; font-size: 13.5px; }

  @media (max-width: 760px) {
    .adm-grid { grid-template-columns: 1fr; }
    .adm-stats { grid-template-columns: 1fr; }
    .adm-stat { border-right: none; border-bottom: 1px solid var(--line); }
    .adm-stat:last-child { border-bottom: none; }
    .adm-table--recent .adm-meta { display: none; }
  }
