  /* ============ TOKENS ============ */
  :root{
    --ink:#06462A;
    --ink-soft:#0B4C30;
    --green:#3B7A5A;
    --paper:#FFFFFF;
    --paper-2:#F6F5F2;
    --card:#FFFFFF;
    --line:#D7E2D9;
    --line-soft:#E6EDE7;
    --brass:#B8891F;
    --brass-light:#D9AE4F;
    --sage:#217436;
    --sage-light:#E6F0E8;
    --brick:#B24A3B;
    --brick-light:#F5E6E1;
    --text:#171B19;
    --text-soft:#5C6460;
    --text-on-ink:#F5F8F7;
    --text-on-ink-soft:#BED0C4;
    --radius-lg:28px;
    --radius-md:18px;
    --radius-sm:10px;
    --shadow-1:0 1px 2px rgba(6,70,42,.06), 0 8px 24px -12px rgba(6,70,42,.18);
    --shadow-2:0 20px 60px -20px rgba(6,70,42,.32);
    --glass-bg:rgba(247,250,247,.92);
    --glass-bg-strong:rgba(244,248,245,.98);
    --glass-brd:#E3EAE4;
    --glass-blur:blur(24px) saturate(180%);
    --glass-shadow:inset 0 1px 0 rgba(255,255,255,.8), 0 4px 14px -10px rgba(6,70,42,.15);
    --spring-rise:linear(0, 0.0196 2.1%, 0.0714 4.2%, 0.1463 6.2%, 0.2361 8.3%, 0.3341 10.4%, 0.4347 12.5%, 0.5336 14.6%, 0.6274 16.7%, 0.7138 18.8%, 0.7912 20.8%, 0.8588 22.9%, 0.9163 25%, 0.9639 27.1%, 1.0019 29.2%, 1.0312 31.2%, 1.0527 33.3%, 1.0672 35.4%, 1.0799 39.6%, 1.065 47.9%, 1.0494 52.1%, 1.0336 56.2%, 1.0197 60.4%, 1.0047 66.7%, 1);
    --maxw:1180px;
    --font-display:'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body:'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:'IBM Plex Mono', ui-monospace, Menlo, monospace;
  }

  *,*::before,*::after{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  section[id]{ scroll-margin-top:88px; }
  body{
    margin:0;
    font-family:var(--font-body);
    color:var(--text);
    background:
      linear-gradient(var(--paper),var(--paper)) ,
      repeating-linear-gradient(0deg, rgba(6,70,42,.028) 0 1px, transparent 1px 42px);
    background-blend-mode:normal;
    -webkit-font-smoothing:antialiased;
    line-height:1.5;
  }
  img,svg{ display:block; max-width:100%; }
  a{ color:inherit; text-decoration:none; }
  ul{ margin:0; padding:0; list-style:none; }
  h1,h2,h3,h4{
    margin:0; font-family:var(--font-display); font-weight:700; letter-spacing:-.03em; color:var(--text);
    text-wrap:balance;
  }
  p{ margin:0; }
  button{ font-family:inherit; }
  .container{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }

  :focus-visible{ outline:2px solid var(--brass); outline-offset:3px; border-radius:4px; }

  .skip-link{
    position:absolute; left:-999px; top:0; background:var(--ink); color:var(--text-on-ink);
    padding:12px 18px; border-radius:0 0 8px 0; z-index:200;
  }
  .skip-link:focus{ left:0; }

  /* ============ TYPE UTILITIES ============ */
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family:var(--font-mono); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
    color:var(--brass); font-weight:600;
  }
  .eyebrow::before{ content:""; width:16px; height:1px; background:var(--brass); }
  .fs-h1{
    font-size:clamp(2.4rem, 1.4rem + 3.9vw, 4.2rem); line-height:1.0; font-weight:800;
    letter-spacing:-.042em;
  }
  .fs-h2{
    font-size:clamp(1.75rem, 1.2rem + 1.9vw, 2.6rem); line-height:1.06;
    letter-spacing:-.035em; font-weight:800;
  }
  .fs-h1 .accent, .fs-h2 .accent{ color:var(--brick); }
  .lede{ font-size:1.08rem; color:var(--text-soft); line-height:1.65; }
  .on-ink .lede{ color:var(--text-on-ink-soft); }
  .on-ink h2, .on-ink h3, .on-ink h4{ color:var(--text-on-ink); }

  /* ============ BUTTONS ============ */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:14px 26px; border-radius:100px; font-weight:600; font-size:.95rem;
    border:1px solid transparent; cursor:pointer; transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space:nowrap;
  }
  .btn:active{ transform:translateY(1px); }
  .btn-primary{ background:var(--brick); color:#fff; box-shadow:var(--shadow-1); }
  .btn-primary:hover{ background:#9c3d30; }
  .btn-line{ background:transparent; border-color:var(--line); color:var(--text); }
  .btn-line:hover{ border-color:var(--text); }
  .btn-line.on-ink-btn{ border-color:rgba(243,241,230,.35); color:var(--text-on-ink); }
  .btn-line.on-ink-btn:hover{ border-color:var(--text-on-ink); }
  .btn-ghost{ background:var(--brass); color:#1B2420; }
  .btn-ghost:hover{ background:var(--brass-light); }
  .btn-sm{ padding:10px 18px; font-size:.85rem; }
  .btn svg{ width:16px; height:16px; }

  /* ============ SIGNATURE: BALANCE LINE ============ */

  /* ============ HEADER ============ */
  .site-header{
    position:sticky; top:0; z-index:100;
    background:rgba(255,255,255,.72);
    -webkit-backdrop-filter:blur(26px) saturate(180%);
    backdrop-filter:blur(26px) saturate(180%);
    border-bottom:1px solid rgba(255,255,255,.5);
    transition:border-color .25s ease, box-shadow .25s ease, background .25s ease;
  }
  .site-header.is-scrolled{
    background:rgba(255,255,255,.9);
    border-bottom-color:var(--line-soft);
    box-shadow:0 6px 24px -18px rgba(6,70,42,.36);
  }
  .header-inner{ position:relative; display:flex; align-items:center; gap:28px; padding:16px 24px; max-width:var(--maxw); margin:0 auto; }
  .logo{ position:relative; display:block; flex:none; width:96px; height:34px; overflow:hidden; }
  .logo-image{ position:absolute; display:block; max-width:none; width:136px; height:auto; left:-17px; top:-14px; }
  .main-nav{ display:flex; gap:26px; margin-right:auto; }
  .main-nav a{ display:inline-flex; align-items:center; font-size:.92rem; font-weight:500; color:var(--text-soft); transition:color .15s ease; }
  .main-nav a:hover{ color:var(--text); }
  .main-nav a.is-current, .mobile-nav a.is-current{ color:var(--text); font-weight:600; }

  .nav-dropdown{ position:relative; }
  .nav-dropdown-trigger{ display:inline-flex; align-items:center; gap:5px; font:inherit; background:none; border:none; padding:0; cursor:pointer; color:var(--text-soft); font-size:.92rem; font-weight:500; }
  .nav-dropdown-trigger:hover{ color:var(--text); }
  .nav-dropdown-trigger svg{ width:11px; height:11px; margin-top:-2px; transition:transform .15s ease; }
  .nav-dropdown:hover .nav-dropdown-trigger svg, .nav-dropdown:focus-within .nav-dropdown-trigger svg{ transform:rotate(180deg); }
  .nav-dropdown-menu{
    position:absolute; top:100%; left:0; transform:translateY(2px);
    background:var(--card); border:1px solid var(--line-soft); border-radius:var(--radius-md);
    box-shadow:var(--shadow-2); padding:8px; min-width:210px; margin-top:14px;
    opacity:0; visibility:hidden; pointer-events:none; transition:opacity .15s ease, visibility .15s ease;
    z-index:60;
  }
  .nav-dropdown-menu::before{ content:""; position:absolute; top:-14px; left:0; right:0; height:14px; }
  .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu{
    opacity:1; visibility:visible; pointer-events:auto;
  }
  .nav-dropdown-menu a{ display:block; padding:10px 12px; border-radius:8px; font-size:.88rem; font-weight:500; color:var(--text-soft); white-space:nowrap; }
  .nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus{ background:var(--paper-2); color:var(--text); }

  /* Blur the rest of the page while the Services dropdown is open */
  main, .site-footer, .cookie-bar{ transition:filter .25s ease; }
  body.nav-dropdown-active main, body.nav-dropdown-active .site-footer, body.nav-dropdown-active .cookie-bar{
    filter:blur(6px); pointer-events:none;
  }
  .header-phone{ font-family:var(--font-mono); font-size:.85rem; font-weight:600; color:var(--text-soft); transition:color .15s ease; }
  .header-phone:hover{ color:var(--text); }
  .header-page-label{
    position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
    color:var(--green); font-family:var(--font-mono); font-size:.92rem; font-weight:700;
    letter-spacing:.11em; text-transform:uppercase; white-space:nowrap;
  }
  .header-actions{ display:flex; align-items:center; gap:18px; }
  .burger{
    display:none; flex:none; width:40px; height:40px; border-radius:10px; border:1px solid var(--line);
    background:var(--card); align-items:center; justify-content:center; cursor:pointer;
  }
  .burger svg{ width:18px; height:18px; }
  .mobile-nav{
    display:none; flex-direction:column; gap:2px; padding:8px 24px 20px; border-top:1px solid var(--line-soft);
  }
  .mobile-nav a{ padding:12px 4px; font-weight:500; border-bottom:1px solid var(--line-soft); }
  .mobile-nav a.mobile-nav-sub{ padding-left:18px; font-size:.9rem; font-weight:400; color:var(--text-soft); }
  .mobile-nav .btn{ margin-top:14px; width:100%; }
  .site-header.nav-open .mobile-nav{ display:flex; }

  @media (max-width:1180px){
    .main-nav, .header-phone, .header-page-label{ display:none; }
    .burger{ display:flex; }
  }
  @media (max-width:420px){
    .header-inner{ gap:12px; padding:14px 16px; }
    .header-actions{ gap:10px; }
    .header-actions .btn{ padding-left:16px; padding-right:16px; font-size:.86rem; }
    .logo{ width:86px; height:30px; }
    .logo-image{ width:123px; left:-15px; top:-12px; }
  }

  /* ============ HERO ============ */
  .hero{ padding:60px 0 72px; }
  .hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
  .hero-copy .eyebrow{ margin-bottom:18px; }
  .hero-copy h1{ margin-bottom:20px; }
  .hero-copy .lede{ max-width:46ch; margin-bottom:32px; }
  .hero-points-grid{
    list-style:none; display:grid; grid-template-columns:repeat(3,1fr);
    gap:14px; margin:44px 0 0; padding:0;
  }
  .section-head-flush{ margin-bottom:0; }
  .section-tinted{ background:var(--paper-2); }
  .process-list-narrow{ max-width:740px; margin:0 auto; }
  .hero-point{
    padding:22px 24px 24px; border-radius:var(--radius-md);
    background:var(--glass-bg);
    -webkit-backdrop-filter:var(--glass-blur);
    backdrop-filter:var(--glass-blur);
    border:1px solid var(--glass-brd);
    box-shadow:var(--glass-shadow);
  }
  .hero-point-bolt{ width:16px; height:16px; color:var(--brick); display:block; margin-bottom:14px; }
  .hero-point-title{
    margin:0 0 8px; font-size:1rem; font-weight:700; letter-spacing:-.01em;
    color:var(--text); line-height:1.3;
  }
  .hero-point p{ font-size:.9rem; font-weight:400; color:var(--text-soft); line-height:1.5; }
  .hero-ctas{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
  .hero-ctas .hint{ font-size:.82rem; color:var(--text-soft); }
  .hero-copy > .hint{ display:block; margin-top:14px; font-size:.82rem; color:var(--text-soft); }
  .hero-punch{ font-family:var(--font-body); font-weight:700; font-size:1.15rem; color:var(--text); margin-bottom:30px; line-height:1.35; }
  @media (max-width:640px){
    .hero-points-grid{ grid-template-columns:1fr; gap:10px; }
    .hero-point{ padding:18px 20px; }
    .hero-point-bolt{ margin-bottom:10px; }
  }

  .hero-visual{ position:relative; display:flex; align-items:center; justify-content:center; }
  .hero-visual img{ display:block; width:100%; height:auto; }

  .hero-chip{
    position:absolute; display:flex; align-items:center; gap:8px;
    background:rgba(250,249,244,.9); color:var(--text); border-radius:100px;
    -webkit-backdrop-filter:blur(18px) saturate(180%); backdrop-filter:blur(18px) saturate(180%);
    border:1px solid rgba(255,255,255,.55);
    padding:9px 14px 9px 10px; font-size:.78rem; font-weight:600; box-shadow:var(--shadow-1);
  }
  .hero-chip .dot{ width:8px; height:8px; border-radius:50%; background:var(--sage); flex:none; }
  .hero-chip.chip-1{ top:16%; left:6%; }
  .hero-chip.chip-2{ bottom:14%; right:6%; }
  .hero-chip.chip-2 .dot{ background:var(--brick); }

  @media (max-width:960px){
    .hero-grid{ grid-template-columns:1fr; gap:40px; }
    .hero-visual{ order:-1; min-height:320px; }
  }

  /* ============ MARQUEE ============ */
  .marquee-wrap{ background:var(--brick); overflow:hidden; padding:16px 0; border-top:1px solid rgba(255,255,255,.12); border-bottom:1px solid rgba(255,255,255,.12); }
  .marquee{ display:flex; width:max-content; gap:0; animation:scroll-x 32s linear infinite; }
  .marquee span{
    font-family:var(--font-display); font-style:italic; font-weight:500; font-size:1.15rem;
    color:rgba(255,255,255,.86); white-space:nowrap; padding:0 28px; display:flex; align-items:center; gap:28px;
  }
  .marquee span::after{ content:"✦"; color:var(--brass); font-size:.8rem; }
  @keyframes scroll-x{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

  /* ============ SECTION SHELL ============ */
  .section{ padding:72px 0; }
  .section-tight{ padding:56px 0; }
  .section-head{ max-width:640px; margin-bottom:38px; }
  .section-head.center{ max-width:860px; margin-inline:auto; text-align:center; }
  .section-head h2{ margin-top:14px; }
  .section-head .lede{ margin-top:14px; }
  #services .section-head{ max-width:none; margin-inline:auto; text-align:center; }
  @media (min-width:901px){ #services .section-head h2{ white-space:nowrap; } }
  #faq.section{ padding:44px 0 48px; }
  #faq .section-head{ margin-bottom:20px; }
  .section-top-row{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:38px; }
  @media (max-width:700px){
    .hero{ padding:46px 0 58px; }
    .section{ padding:58px 0; }
    .section-tight{ padding:48px 0; }
    .section-head, .section-top-row{ margin-bottom:32px; }
    .section-head-flush{ margin-bottom:0; }
  }

  /* ============ ROLE SECTION ============ */
  .role-section{ background:var(--paper-2); }
  .role-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; align-items:center; }
  .role-art{
    aspect-ratio:4/3.1; border-radius:var(--radius-lg); background:linear-gradient(160deg,var(--sage-light),var(--paper));
    border:1px solid var(--line-soft); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden;
  }
  .role-art svg{ width:62%; }
  .role-art img{ width:100%; height:100%; object-fit:cover; display:block; }
  .role-copy .btn{ margin-top:26px; }
  @media (max-width:960px){ .role-grid{ grid-template-columns:1fr; } .role-art{ order:-1; } }

  .model-copy h2{ max-width:15ch; margin-bottom:22px; }
  .model-prose{ max-width:58ch; display:grid; gap:17px; }
  .model-prose p{ color:var(--text-soft); font-size:.94rem; line-height:1.62; }
  .model-prose strong{ color:var(--text); }

  /* ============ SERVICE OFFERS (big panel + selector cards) ============ */
  .offer-stack{ display:grid; gap:20px; }
  .offer-panels{ display:grid; }

  .offer-hero{
    grid-area:1 / 1; position:relative; overflow:hidden; border-radius:var(--radius-lg);
    padding:54px 56px; color:var(--text-on-ink);
    visibility:hidden; opacity:0; pointer-events:none;
    transition:opacity .25s ease, visibility .25s ease;
    background-size:100% 100%, cover; background-position:center, right -70px bottom; background-repeat:no-repeat;
    box-shadow:0 34px 74px -44px rgba(6,70,42,.65);
  }
  .offer-hero.is-active{ visibility:visible; opacity:1; pointer-events:auto; }
  #offer-panel-xray{ background-image:linear-gradient(100deg, rgba(32,35,45,.985) 0%, rgba(32,35,45,.93) 52%, rgba(32,35,45,.55) 70%, rgba(32,35,45,.1) 100%), url("panel-xray.jpg"); }
  #offer-panel-cfo{ background-image:linear-gradient(100deg, rgba(32,35,45,.985) 0%, rgba(32,35,45,.93) 52%, rgba(32,35,45,.55) 70%, rgba(32,35,45,.1) 100%), url("panel-cfo.jpg"); }
  #offer-panel-fix{ background-image:linear-gradient(100deg, rgba(32,35,45,.985) 0%, rgba(32,35,45,.93) 52%, rgba(32,35,45,.55) 70%, rgba(32,35,45,.1) 100%), url("panel-bi.jpg"); }
  #offer-panel-demo{ background-image:linear-gradient(100deg, rgba(32,35,45,.985) 0%, rgba(32,35,45,.93) 52%, rgba(32,35,45,.55) 70%, rgba(32,35,45,.1) 100%), url("panel-demo.jpg"); }

  .offer-hero-copy{ position:relative; z-index:1; max-width:38rem; }
  .offer-hero-tag{
    display:block; margin-bottom:9px; color:var(--brass-light);
    font-family:var(--font-body); font-size:.74rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  }
  .offer-hero-title{ font-size:clamp(2rem,1.45rem + 2.1vw,3rem); color:var(--text-on-ink); margin-bottom:14px; }
  .offer-hero-lede{ color:var(--text-on-ink-soft); font-size:1.05rem; line-height:1.6; margin-bottom:28px; max-width:32rem; }
  .offer-hero-list{ display:flex; flex-direction:column; gap:13px; margin-bottom:32px; }
  .offer-hero-list li{ display:flex; gap:10px; font-size:.97rem; line-height:1.5; color:var(--text-on-ink); }
  .offer-hero-list svg{ flex:none; width:18px; height:18px; margin-top:3px; color:var(--brass-light); }
  .offer-hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
  .offer-hero-cta{ background:var(--brick); color:#fff; }
  .offer-hero-note{
    display:flex; align-items:center; gap:8px; margin-top:18px;
    color:var(--text-on-ink-soft); font-size:.85rem; font-weight:500;
  }
  .offer-hero-note svg{ flex:none; width:16px; height:16px; color:var(--brass-light); }
  .offer-hero-cta:hover{ background:#9c3d30; }

  .offer-more{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
  .offer-card{
    position:relative; overflow:hidden; display:flex; flex-direction:column; text-align:left;
    border-radius:var(--radius-lg); padding:24px 24px 22px; cursor:pointer;
    background:var(--paper-2); border:1px solid transparent; font-family:inherit; width:100%;
    transition:background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  .offer-card[aria-selected="true"]{
    background:var(--glass-bg-strong); border-color:var(--brick);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.9), 0 4px 18px -10px rgba(178,74,59,.35);
  }
  .offer-card:hover:not([aria-selected="true"]),
  .offer-card:focus-visible:not([aria-selected="true"]){
    background:var(--glass-bg-strong); border-color:rgba(178,74,59,.3);
    transform:translateY(-3px);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.9), 0 16px 34px -18px rgba(6,70,42,.34);
  }
  .offer-card:focus-visible{ outline:2px solid var(--brick); outline-offset:3px; }
  @media (hover:none){
    .offer-card:hover:not([aria-selected="true"]){ transform:none; box-shadow:var(--glass-shadow); }
  }
  .offer-card-tag{
    font-family:var(--font-body); font-size:.7rem; font-weight:600;
    letter-spacing:.08em; text-transform:uppercase; color:var(--text-soft);
  }
  .offer-card[aria-selected="true"] .offer-card-tag{ color:var(--brick); }
  .offer-card-title{
    display:block; margin:9px 0 9px; font-family:var(--font-body); font-weight:700;
    font-size:1.14rem; line-height:1.28; color:var(--text); transition:color .2s ease;
  }
  .offer-card[aria-selected="true"] .offer-card-title,
  .offer-card:hover .offer-card-title{ color:var(--brick); }
  .offer-card-text{ display:block; color:var(--text-soft); font-size:.86rem; line-height:1.5; margin-bottom:18px; }
  .offer-card-link{
    margin-top:auto; display:inline-flex; align-items:center; gap:7px;
    font-size:.8rem; font-weight:700; color:var(--brick);
  }
  .offer-card-link-on{ display:none; }
  .offer-card[aria-selected="true"] .offer-card-link-idle{ display:none; }
  .offer-card[aria-selected="true"] .offer-card-link-on{ display:inline; color:var(--text-soft); }
  .offer-card[aria-selected="true"] .offer-card-link{ color:var(--text-soft); }
  .offer-card-arrow{ width:15px; height:15px; flex:none; transition:transform .2s ease; }
  .offer-card:hover:not([aria-selected="true"]) .offer-card-arrow{ transform:translateX(4px); }
  .offer-card[aria-selected="true"] .offer-card-arrow{ transform:rotate(-90deg); }

  /* the free card reads as an offer, not a service */
  .offer-card.offer-card-free{
    background:linear-gradient(165deg, #FDF3F0 0%, var(--brick-light) 100%);
    border-color:rgba(178,74,59,.32);
  }
  .offer-card.offer-card-free:hover:not([aria-selected="true"]){
    background:linear-gradient(165deg, #FEF7F5 0%, #F8EBE6 100%);
    border-color:rgba(178,74,59,.5);
  }
  .offer-card.offer-card-free[aria-selected="true"]{
    background:linear-gradient(165deg, #FDF3F0 0%, var(--brick-light) 100%);
    border-color:var(--brick);
  }
  .offer-card-free .offer-card-text{ color:#7A5148; }
  .offer-card-free .offer-card-tag{ color:var(--brick); }
  .offer-card-free::before{
    content:"FREE"; position:absolute; top:-1px; right:22px; z-index:1;
    min-width:66px; padding:6px 12px 7px; border-radius:0 0 10px 10px;
    background:linear-gradient(135deg,#c95b48,var(--brick)); color:#fff;
    box-shadow:0 10px 20px -12px rgba(178,74,59,.9), inset 0 1px 0 rgba(255,255,255,.3);
    font-size:.6rem; line-height:1; font-weight:800; letter-spacing:.13em; text-align:center;
  }
  .offer-card-free{ padding-top:32px; }

  @media (max-width:1080px){
    .offer-more{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  }
  @media (max-width:960px){
    .offer-hero{ padding:38px 32px; }
    .offer-hero-copy, .offer-hero-lede{ max-width:none; }
  }
  @media (max-width:760px){
    .offer-hero{
      background-image:linear-gradient(168deg, rgba(32,35,45,.99) 0%, rgba(32,35,45,.955) 58%, rgba(32,35,45,.78) 100%), url("panel-xray.jpg");
      background-position:center, right -40px bottom -10px;
    }
    #offer-panel-cfo{ background-image:linear-gradient(168deg, rgba(32,35,45,.99) 0%, rgba(32,35,45,.955) 58%, rgba(32,35,45,.78) 100%), url("panel-cfo.jpg"); }
    #offer-panel-fix{ background-image:linear-gradient(168deg, rgba(32,35,45,.99) 0%, rgba(32,35,45,.955) 58%, rgba(32,35,45,.78) 100%), url("panel-bi.jpg"); }
    #offer-panel-demo{ background-image:linear-gradient(168deg, rgba(32,35,45,.99) 0%, rgba(32,35,45,.955) 58%, rgba(32,35,45,.78) 100%), url("panel-demo.jpg"); }
    .offer-more{ grid-template-columns:1fr; }
  }
  @media (max-width:640px){
    .offer-hero{ padding:30px 24px; }
    .offer-hero-ctas{ flex-direction:column; align-items:stretch; }
    .offer-hero-ctas .btn{ width:100%; justify-content:center; text-align:center; }
  }

  /* ============ CAPABILITIES ACCORDION ============ */
  .cap-stack{ display:flex; flex-direction:column; gap:14px; }
  .cap-item{
    border:1px solid var(--line-soft); border-radius:var(--radius-lg);
    background:var(--paper-2); overflow:hidden;
    transition:border-color .22s ease, background .22s ease, box-shadow .22s ease;
  }
  .cap-item:hover:not(.is-open){ border-color:rgba(178,74,59,.3); background:var(--card); }
  .cap-item.is-open{
    border-color:var(--brick); background:linear-gradient(180deg,#FDF8F6 0%,#FCF5F2 100%);
    box-shadow:0 14px 34px -24px rgba(178,74,59,.5);
  }
  .cap-head{
    display:flex; align-items:center; justify-content:space-between; gap:20px; width:100%;
    padding:24px 30px; border:0; background:transparent; cursor:pointer; text-align:left;
  }
  .cap-head:focus-visible{ outline:2px solid var(--brick); outline-offset:-3px; border-radius:var(--radius-lg); }
  .cap-tag{
    display:block; margin-bottom:6px; font-family:var(--font-body); font-size:.7rem; font-weight:600;
    letter-spacing:.09em; text-transform:uppercase; color:var(--text-soft);
  }
  .cap-item.is-open .cap-tag{ color:var(--brick); }
  .cap-title{
    display:block; font-family:var(--font-display); font-weight:700; letter-spacing:-.02em;
    font-size:1.36rem; line-height:1.2; color:var(--text);
  }
  .cap-x{ color:var(--brick); }
  .cap-icon{
    position:relative; flex:none; width:34px; height:34px; border-radius:50%;
    border:1px solid var(--line); display:grid; place-items:center;
    transition:border-color .2s ease, background .2s ease;
  }
  .cap-icon i{
    position:absolute; left:50%; top:50%; width:13px; height:2px; border-radius:2px;
    background:var(--text-soft); transform:translate(-50%,-50%);
    transition:transform .25s ease, background .2s ease;
  }
  .cap-icon i:last-child{ transform:translate(-50%,-50%) rotate(90deg); }
  .cap-head:hover .cap-icon{ border-color:var(--brick); }
  .cap-head:hover .cap-icon i{ background:var(--brick); }
  .cap-item.is-open .cap-icon{ border-color:var(--brick); background:var(--brick); }
  .cap-item.is-open .cap-icon i{ background:#fff; }
  .cap-item.is-open .cap-icon i:last-child{ transform:translate(-50%,-50%) rotate(0deg); }

  .cap-panel-inner{ padding:0 30px 28px; }
  .cap-lede{
    max-width:56ch; margin:0 0 20px; padding-top:2px;
    color:var(--text-soft); font-size:.95rem; line-height:1.6;
  }
  .cap-list{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px 30px; margin-bottom:22px; }
  .cap-list li{
    position:relative; padding-left:26px; font-size:.95rem; line-height:1.45; color:var(--text);
  }
  .cap-list li::before{
    content:""; position:absolute; left:0; top:.44em; width:14px; height:14px; border-radius:50%;
    background:var(--brick-light);
  }
  .cap-list li::after{
    content:""; position:absolute; left:4px; top:.72em; width:6px; height:6px; border-radius:50%;
    background:var(--brick); opacity:.85;
  }
  .cap-link{
    display:inline-flex; align-items:center; gap:8px;
    font-size:.88rem; font-weight:700; color:var(--brick);
  }
  .cap-link svg{ width:16px; height:16px; transition:transform .2s ease; }
  .cap-link:hover svg{ transform:translateX(4px); }
  @media (max-width:760px){
    .cap-head{ padding:20px 22px; gap:14px; }
    .cap-title{ font-size:1.18rem; }
    .cap-panel-inner{ padding:0 22px 24px; }
    .cap-list{ grid-template-columns:1fr; gap:11px; }
  }

  /* ============ SCROLL REVEAL ============ */
  /* Cards arrive with momentum: a damped spring (zeta .63, 8% overshoot) encoded
     as linear(), so they rise, slightly overshoot and settle like something with mass.
     Opacity and blur ride a plain decelerate curve — a spring that overshoots past
     opacity 1 flickers. Shared by every card grid; keep it out of section blocks. */
  @keyframes card-rise{
    from{ transform:translateY(42px) scale(.94); }
    to  { transform:none; }
  }
  @keyframes card-settle{
    from{ opacity:0; filter:blur(6px); }
    to  { opacity:1; filter:blur(0);  }
  }
  .reveal{ opacity:0; }
  .reveal.is-in{
    animation:card-rise 1150ms var(--spring-rise) both,
              card-settle 560ms cubic-bezier(.05,.7,.1,1) both;
  }

  /* ============ ADVANTAGES (bento grid) ============ */
  /* Each card shows one of the supplied finance and analytics workspaces. The
     previous glass artworks stay in assets for a future switch-back. */
  .ecosystem-window{
    overflow:hidden; border:1px solid rgba(6,70,42,.16); border-radius:30px;
    background:#f7faf7;
    box-shadow:0 30px 72px -48px rgba(6,70,42,.48);
  }
  .ecosystem-window-bar{
    min-height:58px; padding:0 22px;
    display:grid; grid-template-columns:1fr auto 1fr; align-items:center;
    background:#fff; border-bottom:1px solid rgba(6,70,42,.12);
  }
  .ecosystem-window-dots{ display:flex; align-items:center; gap:7px; }
  .ecosystem-window-dots i{ width:9px; height:9px; border-radius:50%; background:#d8dfda; }
  .ecosystem-window-dots i:first-child{ background:#b24a3b; }
  .ecosystem-window-dots i:nth-child(2){ background:#b8891f; }
  .ecosystem-window-dots i:last-child{ background:#3b7a5a; }
  .ecosystem-window-title{
    font-family:var(--font-display); font-size:.82rem; line-height:1;
    font-weight:750; letter-spacing:.14em; text-transform:uppercase; color:var(--ink);
  }
  .ecosystem-window .section-head{ padding:38px 24px 0; }
  .bento-grid{
    display:grid; grid-template-columns:repeat(3,1fr);
    grid-auto-rows:1fr; gap:16px; padding:22px;
  }

  /* Copy stays inside the screenshot on a compact, high-contrast caption. */
  .bento-card{
    position:relative; margin:0; aspect-ratio:3 / 2; overflow:hidden;
    border-radius:var(--radius-lg);
    display:flex; flex-direction:column; justify-content:center; align-items:center;
    padding:18px;
    background-color:#f7f7f5; background-size:contain; background-position:center; background-repeat:no-repeat;
    border:1px solid rgba(18,33,29,.1);
    box-shadow:0 18px 48px -32px rgba(18,33,29,.42);
    transition:transform .3s cubic-bezier(.05,.7,.1,1), box-shadow .3s ease;
  }
  .bento-card:hover{ transform:translateY(-4px); box-shadow:0 24px 56px -30px rgba(18,33,29,.5); }
  @media (hover:none){ .bento-card:hover{ transform:none; } }

  .bento-app-logo{
    position:absolute; top:16px; left:16px; z-index:2;
    display:grid; place-items:center; width:44px; height:44px;
    border-radius:13px; background:rgba(255,255,255,.84);
    -webkit-backdrop-filter:blur(10px) saturate(130%);
    backdrop-filter:blur(10px) saturate(130%);
    border:1px solid rgba(255,255,255,.78);
    box-shadow:0 12px 26px -16px rgba(18,33,29,.55);
  }
  .bento-app-logo img{ width:28px; height:28px; object-fit:contain; }
  .bento-plain .bento-app-logo img{ width:31px; height:31px; }

  .bento-confidential{ background-image:url("tool-excel.png"); }
  .bento-europe{ background-image:url("tool-power-bi.png"); }
  .bento-learn{ background-image:url("tool-sql-server.png"); }
  .bento-profit{ background-image:url("tool-python.png"); }
  .bento-plain{ background-image:url("tool-tableau.png"); }
  .bento-community{ background-image:url("tool-powerpoint.png"); }

  .bento-copy{
    width:min(84%, 320px); padding:15px 18px 17px; border-radius:18px;
    text-align:center;
    background:rgba(255,255,255,.68);
    -webkit-backdrop-filter:blur(12px) saturate(125%);
    backdrop-filter:blur(12px) saturate(125%);
    border:1px solid rgba(255,255,255,.72);
    box-shadow:0 14px 30px -22px rgba(18,33,29,.48), inset 0 1px 0 rgba(255,255,255,.55);
  }
  .bento-heading{ display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:8px; }
  .bento-icon{
    display:grid; place-items:center; flex:none; width:32px; height:32px;
    border-radius:10px; color:var(--ink);
    background:rgba(255,255,255,.78); border:1px solid rgba(6,70,42,.12);
    box-shadow:0 5px 16px -10px rgba(6,70,42,.5);
  }
  .bento-icon svg{ width:18px; height:18px; }

  .bento-card h3{ font-size:1.02rem; line-height:1.2; color:var(--text); margin:0; text-shadow:0 1px 8px rgba(255,255,255,.95); }
  .bento-card p{ font-size:.78rem; line-height:1.42; color:rgba(27,36,32,.78); text-shadow:0 1px 8px rgba(255,255,255,.98); }

  /* Fractional CFO — aligned scope cards */
  .scope-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); grid-auto-rows:1fr; gap:18px; padding:0; }
  .bento-card.scope-card{
    min-height:300px; aspect-ratio:auto; justify-content:flex-start; align-items:stretch;
    padding:28px; text-align:left; background:#fbfcfa; border-color:rgba(59,122,90,.14);
    box-shadow:0 20px 48px -40px rgba(18,33,29,.34); transition:none;
  }
  .bento-card.scope-card:nth-child(even){ background:#f3f7f4; }
  .bento-card.scope-card:hover{ transform:none; box-shadow:0 20px 48px -40px rgba(18,33,29,.34); }
  .scope-card-copy{ max-width:32ch; }
  .scope-index{ display:block; margin-bottom:15px; color:var(--green); font:700 .7rem/1 var(--font-mono); letter-spacing:.08em; }
  .scope-card h3{ margin-bottom:10px; font-size:1.08rem; text-shadow:none; }
  .scope-card p{ font-size:.84rem; line-height:1.55; color:var(--text-soft); text-shadow:none; }
  .scope-visual{
    width:128px; height:88px; margin:auto 0 0 auto; color:var(--green);
    stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
  }
  .scope-visual .scope-accent{ stroke:var(--brass); }
  @media (max-width:900px){ .scope-grid{ grid-template-columns:1fr 1fr; } }
  @media (max-width:560px){ .scope-grid{ grid-template-columns:1fr; } .bento-card.scope-card{ min-height:280px; aspect-ratio:auto; padding:24px; } }

  @media (max-width:900px){
    .bento-grid{ grid-template-columns:1fr 1fr; }
  }
  @media (max-width:560px){
    .ecosystem-window{ border-radius:22px; }
    .ecosystem-window-bar{ min-height:52px; padding:0 14px; grid-template-columns:40px 1fr 40px; }
    .ecosystem-window-title{ text-align:center; font-size:.68rem; letter-spacing:.1em; }
    .ecosystem-window-dots{ gap:5px; }
    .ecosystem-window-dots i{ width:7px; height:7px; }
    .ecosystem-window .section-head{ padding:30px 18px 0; }
    .bento-grid{ grid-template-columns:1fr; gap:14px; }
    .bento-card{ aspect-ratio:3 / 2; padding:14px; }
    .bento-app-logo{ top:14px; left:14px; width:40px; height:40px; border-radius:12px; }
    .bento-app-logo img{ width:25px; height:25px; }
    .bento-copy{ width:88%; padding:14px 15px 15px; }
    .bento-card h3{ font-size:1.08rem; }
    .bento-card p{ font-size:.82rem; }
  }

  /* Fractional CFO — founder problem stories */
  .founder-problems{
    grid-template-columns:repeat(2,minmax(0,1fr)); grid-auto-rows:auto;
    gap:18px; padding:0;
  }
  .founder-problem-card{
    min-height:320px; aspect-ratio:auto; justify-content:flex-start; align-items:stretch;
    padding:26px 28px; text-align:left; background:#f8faf8;
  }
  .founder-problem-card h3{
    font-size:1.28rem; line-height:1.18; letter-spacing:-.025em; text-shadow:none;
  }
  .founder-problem-card > p{
    max-width:46ch; margin-top:8px; font-size:.93rem; line-height:1.55;
    color:var(--text-soft); text-shadow:none;
  }
  .problem-visual{
    position:relative; height:152px; margin-top:auto; overflow:hidden;
    border-radius:20px; border:1px solid rgba(6,70,42,.09);
    background:#edf4ef;
  }
  .problem-visual.problem-visual-image-frame{
    height:auto; aspect-ratio:2.45/1; border:0; background:#fbf7ed;
    box-shadow:0 18px 38px -30px rgba(6,70,42,.34);
  }
  .problem-visual-image{
    display:block; width:100%; height:100%; object-fit:contain;
    border-radius:inherit;
  }
  .problem-visual-image-frame.graph-strategy{ aspect-ratio:2/1; background:#f2f6f2; }
  .problem-visual-image-frame.graph-dividend{ aspect-ratio:2/1; }

  .problem-visibility{
    background:linear-gradient(135deg,#edf4ef,#f5f7f5);
  }
  .visibility-dashboard-head{
    position:absolute; left:14px; right:14px; top:10px; display:flex; align-items:center; justify-content:space-between;
  }
  .visibility-dashboard-head > span{ color:#6b7770; font:600 .53rem var(--font-mono); letter-spacing:.05em; text-transform:uppercase; }
  .visibility-dashboard-head strong{
    display:flex; align-items:center; gap:5px; padding:4px 7px; border-radius:999px;
    background:#f8e8e3; color:var(--brick); font-size:.5rem;
  }
  .visibility-dashboard-head strong i{ width:6px; height:6px; border-radius:50%; background:var(--brick); box-shadow:0 0 0 3px rgba(178,74,59,.09); }
  .visibility-primary{
    position:absolute; left:14px; top:35px; bottom:34px; width:46%; padding:11px 12px; overflow:hidden;
    border:1px solid rgba(6,70,42,.08); border-radius:13px; background:rgba(255,255,255,.9);
    box-shadow:0 12px 24px -22px rgba(18,33,29,.85);
  }
  .visibility-primary-copy{ position:relative; z-index:3; }
  .visibility-primary-copy small,.visibility-secondary small{ display:block; color:#78837d; font-size:.52rem; }
  .visibility-primary-copy strong{ display:inline-block; margin-top:2px; color:var(--ink); font-size:.82rem; }
  .visibility-primary-copy em{ margin-left:5px; color:var(--green); font-size:.48rem; font-style:normal; font-weight:700; }
  .visibility-trend{ position:absolute; left:12px; right:10px; bottom:13px; height:28px; }
  .visibility-trend::after{
    content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(58,126,89,.16),transparent);
    clip-path:polygon(0 72%,24% 49%,47% 62%,72% 18%,100% 32%,100% 100%,0 100%);
  }
  .visibility-trend i{ position:absolute; z-index:2; height:3px; border-radius:3px; background:var(--green); transform-origin:left center; }
  .visibility-trend i::after{ content:""; position:absolute; right:-3px; top:-2px; width:7px; height:7px; border-radius:50%; background:inherit; }
  .visibility-trend i:nth-child(1){ left:0; top:20px; width:26%; transform:rotate(-12deg); }
  .visibility-trend i:nth-child(2){ left:24%; top:14px; width:25%; transform:rotate(7deg); }
  .visibility-trend i:nth-child(3){ left:47%; top:18px; width:28%; transform:rotate(-18deg); }
  .visibility-trend i:nth-child(4){ left:72%; top:5px; width:28%; transform:rotate(7deg); }
  .visibility-secondary{
    position:absolute; left:49%; right:14px; top:35px; bottom:34px; display:grid; grid-template-columns:1fr 1fr; gap:7px;
  }
  .visibility-secondary > span{
    position:relative; min-width:0; padding:11px 9px; border:1px solid rgba(6,70,42,.08); border-radius:13px;
    background:rgba(255,255,255,.9); box-shadow:0 12px 24px -22px rgba(18,33,29,.85);
  }
  .visibility-secondary strong{ display:block; margin-top:3px; color:var(--ink); font-size:.69rem; white-space:nowrap; }
  .visibility-secondary em{
    position:absolute; left:8px; right:8px; bottom:8px; padding-top:5px; border-top:1px solid rgba(178,74,59,.14);
    color:var(--brick); font-size:.46rem; font-style:normal; white-space:nowrap;
  }
  .visibility-sources{
    position:absolute; left:14px; right:14px; bottom:8px; display:flex; align-items:center; gap:5px;
  }
  .visibility-sources span{
    padding:3px 6px; border:1px solid rgba(6,70,42,.1); border-radius:6px; background:rgba(255,255,255,.7);
    color:#617068; font:500 .43rem var(--font-mono);
  }
  .visibility-sources strong{ margin-left:auto; color:var(--brick); font:650 .44rem var(--font-mono); }

  .problem-cash{
    overflow:hidden; background-color:#fbf5e8;
    background-image:
      linear-gradient(rgba(184,137,31,.075) 1px,transparent 1px),
      linear-gradient(90deg,rgba(184,137,31,.075) 1px,transparent 1px),
      linear-gradient(135deg,rgba(255,255,255,.38),transparent);
    background-size:31px 31px,31px 31px,auto;
  }
  .cash-chart-head{
    position:absolute; z-index:5; left:15px; right:15px; top:11px; display:flex; align-items:center; justify-content:space-between;
    color:#6f746f; font-size:.58rem;
  }
  .cash-chart-head > span{ font-weight:650; color:#59665f; }
  .cash-legend{ display:flex; gap:12px; }
  .cash-legend i{ position:relative; padding-left:13px; font-style:normal; }
  .cash-legend i::before{ content:""; position:absolute; left:0; top:50%; width:8px; height:3px; margin-top:-1px; border-radius:3px; background:var(--green); }
  .cash-legend i:nth-child(2)::before{ background:var(--brick); }
  .cash-pressure-zone{
    position:absolute; z-index:1; left:0; right:0; bottom:25px; height:35px;
    border-top:1px dashed rgba(178,74,59,.4); background:linear-gradient(180deg,rgba(178,74,59,.035),rgba(178,74,59,.09));
  }
  .cash-pressure-zone span{
    position:absolute; right:12px; top:5px; color:rgba(178,74,59,.78); font:600 .45rem var(--font-mono); letter-spacing:.07em; text-transform:uppercase;
  }
  .cash-area-fill{
    position:absolute; z-index:1; inset:0;
    background:linear-gradient(180deg,rgba(58,126,89,.18),rgba(58,126,89,.015));
    clip-path:polygon(6% 48%,23% 38%,40% 51%,56% 32%,72% 55%,72% 84%,6% 84%);
  }
  .cash-series i{
    position:absolute; z-index:3; height:4px; border-radius:999px; transform-origin:left center;
    background:var(--green); box-shadow:0 3px 9px rgba(6,70,42,.16);
  }
  .cash-series i::after{
    content:""; position:absolute; right:-4px; top:-3px; width:10px; height:10px; border-radius:50%;
    background:inherit; box-shadow:0 0 0 3px rgba(255,255,255,.7);
  }
  .cash-actual i:nth-child(1){ left:6%; top:76px; width:18%; transform:rotate(-9deg); }
  .cash-actual i:nth-child(2){ left:23%; top:62px; width:18%; transform:rotate(11deg); }
  .cash-actual i:nth-child(3){ left:40%; top:78px; width:18%; transform:rotate(-15deg); }
  .cash-actual i:nth-child(4){ left:56%; top:53px; width:18%; transform:rotate(19deg); background:linear-gradient(90deg,var(--green),var(--brass)); }
  .cash-forecast i{ height:3px; background:repeating-linear-gradient(90deg,var(--brick) 0 7px,transparent 7px 11px); box-shadow:none; }
  .cash-forecast i::after{ background:var(--brick); }
  .cash-forecast i:nth-child(1){ left:72%; top:82px; width:10%; transform:rotate(-9deg); }
  .cash-forecast i:nth-child(2){ left:81%; top:75px; width:10%; transform:rotate(14deg); }
  .cash-forecast i:nth-child(3){ left:90%; top:91px; width:8%; transform:rotate(9deg); }
  .cash-axis{
    position:absolute; z-index:4; left:6%; right:5%; bottom:7px; display:flex; justify-content:space-between;
    color:#8b8e88; font:500 .43rem var(--font-mono);
  }
  .cash-current{
    position:absolute; z-index:5; right:10px; top:103px; display:flex; align-items:baseline; gap:4px; padding:4px 7px;
    border-radius:8px; background:rgba(255,255,255,.88); box-shadow:0 7px 16px -13px rgba(25,43,35,.8);
  }
  .cash-current small{ color:#777e78; font-size:.45rem; }
  .cash-current strong{ color:var(--brass); font-size:.58rem; }

  .problem-strategy{
    overflow:hidden; background:linear-gradient(135deg,#f2f7f3,#edf4ef);
  }
  .strategy-start{
    position:absolute; z-index:3; left:14px; top:50%; translate:0 -50%; padding:12px 15px;
    border-radius:13px; background:var(--green-dark); color:#fff; font-size:.66rem; font-weight:700;
    box-shadow:0 12px 24px -18px rgba(6,70,42,.58);
  }
  .strategy-trunk,.strategy-branch{
    position:absolute; z-index:1; display:block; height:2px; transform-origin:left center;
    background:repeating-linear-gradient(90deg,rgba(58,126,89,.52) 0 7px,transparent 7px 12px);
  }
  .strategy-trunk{ left:70px; top:50%; width:37%; }
  .strategy-question{
    position:absolute; z-index:3; left:48%; top:50%; translate:-50% -50%; display:grid; place-items:center;
    width:38px; height:38px; border:8px solid rgba(178,74,59,.08); border-radius:50%;
    background:#f8d9d2; color:var(--brick); font:800 .9rem var(--font-mono);
  }
  .strategy-branch{ left:50%; top:50%; width:36%; }
  .strategy-branch-a{ transform:rotate(-15deg); }
  .strategy-branch-b{ transform:none; }
  .strategy-branch-c{ transform:rotate(15deg); }
  .strategy-choices{
    position:absolute; z-index:3; right:10px; top:8px; bottom:8px; display:flex; flex-direction:column; justify-content:space-between;
  }
  .strategy-choice{
    min-width:58px; padding:7px 10px; border:1px solid rgba(6,70,42,.11); border-radius:9px;
    background:rgba(255,255,255,.92); color:var(--green-dark); font-size:.57rem; font-weight:700; text-align:center;
    box-shadow:0 10px 20px -18px rgba(18,33,29,.8);
  }

  .problem-dividend{ padding:0; overflow:hidden; background:#f7f2e8; }
  .dividend-flow{
    position:relative; height:100%; overflow:hidden; border-radius:inherit;
    background:
      linear-gradient(rgba(184,137,31,.075) 1px,transparent 1px),
      linear-gradient(90deg,rgba(184,137,31,.075) 1px,transparent 1px),
      linear-gradient(135deg,#fbf7ed 0%,#f7f2e8 56%,#f8eee9 100%);
    background-size:28px 28px,28px 28px,auto;
  }
  .dividend-flow svg{ position:absolute; z-index:1; inset:0; width:100%; height:100%; }
  .dividend-flow path{ fill:none; stroke-linecap:round; vector-effect:non-scaling-stroke; }
  .dividend-flow-in{ stroke:rgba(58,126,89,.34); stroke-width:30; }
  .dividend-flow-out{ stroke-linecap:butt; }
  .flow-costs{ stroke:rgba(184,137,31,.43); stroke-width:21; }
  .flow-capital{ stroke:rgba(105,143,116,.44); stroke-width:12; }
  .flow-owner{ stroke:rgba(178,74,59,.4); stroke-width:5; }
  .dividend-flow-node{ fill:var(--green); }
  .flow-center-node{ fill:#3e7080; }
  .flow-cost-node{ fill:var(--brass); }
  .flow-capital-node{ fill:#6d967c; }
  .flow-owner-node{ fill:var(--brick); }
  .dividend-flow-label,.dividend-flow-results span{
    position:absolute; z-index:3; display:flex; align-items:baseline; gap:5px; padding:5px 7px;
    border:1px solid rgba(6,70,42,.08); border-radius:8px; background:rgba(255,255,255,.9);
    box-shadow:0 8px 18px -14px rgba(25,43,35,.65); white-space:nowrap;
  }
  .dividend-flow-label small,.dividend-flow-results small{ color:var(--muted); font-size:.45rem; }
  .dividend-flow-label strong,.dividend-flow-results strong{ color:var(--green); font-size:.56rem; }
  .flow-revenue-label{ left:10px; top:58px; }
  .flow-center-label{ left:40%; top:58px; }
  .flow-center-label strong{ color:#3e7080; }
  .dividend-flow-results{
    position:absolute; z-index:3; right:8px; top:7px; bottom:7px; display:flex; flex-direction:column; justify-content:space-between;
  }
  .dividend-flow-results span{ position:static; }
  .dividend-flow-results span:nth-child(1) strong{ color:#9c741a; }
  .dividend-flow-results span:nth-child(2) strong{ color:#617e6b; }
  .dividend-flow-results .flow-owner-result{ border-color:transparent; background:var(--brick); }
  .dividend-flow-results .flow-owner-result small,.dividend-flow-results .flow-owner-result strong{ color:#fff; }

  @media (max-width:900px){ .founder-problems{ grid-template-columns:1fr; } }
  @media (max-width:560px){
    .founder-problem-card{ min-height:300px; padding:22px; }
    .problem-visual{ height:146px; }
    .visibility-kpis > span{ padding:12px 9px; }
    .visibility-kpis strong{ font-size:.74rem; }
    .strategy-question{ left:47%; }
    .strategy-trunk{ width:34%; }
    .strategy-branch{ width:34%; }
    .flow-center-label{ left:37%; }
  }

  /* ============ CASES SLIDER ============ */
  .cases-section{ background:var(--paper-2); }
  .cases-section .section-top-row{ position:relative; justify-content:center; }
  .cases-section .section-head{ margin-inline:auto; text-align:center; }
  .cases-section .slider-controls{ position:absolute; right:0; bottom:0; }
  @media (max-width:640px){
    .cases-section .section-top-row{ flex-direction:column; align-items:center; }
    .cases-section .slider-controls{ position:static; }
  }
  .slider-controls{ display:flex; gap:10px; }
  .slider-btn{
    width:44px; height:44px; border-radius:50%; border:1px solid var(--line); background:var(--card);
    display:flex; align-items:center; justify-content:center; cursor:pointer;
    transition:border-color .2s ease, opacity .2s ease, transform .2s ease;
  }
  .slider-btn:hover:not(:disabled){ border-color:var(--text); transform:scale(1.06); }
  .slider-btn:disabled{ opacity:.35; cursor:not-allowed; }
  .slider-btn svg{ width:18px; height:18px; }
  .slider-viewport{ overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; margin:0 -24px; padding:4px 24px 20px; }
  .slider-viewport::-webkit-scrollbar{ display:none; }
  .slider-track{ display:flex; gap:22px; }
  .case-card{
    scroll-snap-align:start; flex:0 0 clamp(260px, 32vw, 340px); background:var(--card); border:1px solid var(--line-soft);
    border-radius:var(--radius-md); overflow:hidden; display:flex; flex-direction:column; box-shadow:var(--shadow-1);
  }
  .case-thumb{ aspect-ratio:16/10; position:relative; overflow:hidden; background:var(--ink); }
  .case-thumb::after{
    content:""; position:absolute; inset:0;
    background:linear-gradient(180deg, transparent 42%, rgba(178,74,59,.46));
    pointer-events:none;
  }
  .case-thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
  .case-card:hover .case-thumb img{ transform:scale(1.035); }
  .case-body{ padding:22px 22px 26px; display:flex; flex-direction:column; gap:14px; flex:1; }
  .case-tag{ font-family:var(--font-mono); font-size:.7rem; text-transform:uppercase; letter-spacing:.1em; color:var(--brass); }
  .case-body h3{ font-size:1rem; line-height:1.4; }
  .case-inquiry{ margin:0; font-size:1rem; font-weight:650; line-height:1.45; color:var(--text); }
  .case-inquiry a{ color:var(--brick); text-decoration:underline; text-decoration-thickness:1px; text-underline-offset:4px; }
  .case-outcome{ position:absolute; z-index:2; left:20px; bottom:18px; display:grid; gap:1px; color:#fff; text-shadow:0 2px 12px rgba(0,0,0,.35); }
  .case-outcome strong{ font-size:1.55rem; line-height:1.1; letter-spacing:-.025em; color:#fff; }
  .case-outcome span{ font-size:.84rem; color:rgba(255,255,255,.86); }
  .case-cta{ width:100%; margin-top:auto; padding:11px 18px; font-size:.85rem; }
  .case-card-cta{ background:#20232D; padding:28px 26px; justify-content:center; }
  .case-card-cta h3{ color:var(--text-on-ink); font-size:1.15rem; margin-bottom:10px; }
  .case-card-cta p{ color:var(--text-on-ink-soft); font-size:.9rem; line-height:1.6; margin-bottom:22px; }
  .case-card-cta .btn{ align-self:flex-start; }
  .slider-dots{ display:none; }
  .slider-dots button{ width:8px; height:8px; border-radius:50%; border:none; background:var(--line); cursor:pointer; padding:0; }
  .slider-dots button.is-active{ background:var(--brick); width:22px; border-radius:100px; transition:width .2s ease; }
  @media (hover:none){ .case-card:hover .case-thumb img{ transform:none; } }

  /* ============ DEBT VERSUS DIVIDEND ============ */
  .allocation-section{
    position:relative; overflow:hidden;
    background:radial-gradient(circle at 86% 12%,rgba(184,137,31,.1),transparent 27%),linear-gradient(180deg,#f8faf8 0%,#eef4ef 100%);
  }
  .allocation-head{ max-width:790px; margin-inline:auto; }
  .allocation-head .lede{ max-width:660px; margin:16px auto 0; }
  .allocation-lab{
    display:grid; grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr); max-width:1120px;
    margin:38px auto 0; overflow:hidden; border:1px solid rgba(6,70,42,.14); border-radius:30px;
    background:#fff; box-shadow:0 28px 72px -50px rgba(6,70,42,.46);
  }
  .allocation-inputs{ padding:28px; }
  .allocation-field-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
  .allocation-field{ display:block; min-width:0; padding:15px; border:1px solid var(--line-soft); border-radius:15px; background:#f9fbf9; }
  .allocation-field > span:first-child{ display:block; margin-bottom:9px; color:var(--text-soft); font-size:.72rem; font-weight:650; line-height:1.25; }
  .allocation-field > small{ display:block; margin-top:7px; color:#87918b; font-size:.58rem; line-height:1.3; }
  .allocation-results{
    display:flex; flex-direction:column; padding:28px; color:#fff;
    background:radial-gradient(circle at 92% 2%,rgba(217,174,79,.2),transparent 34%),linear-gradient(145deg,#073f28,#095232);
  }
  .allocation-results-label{ margin-bottom:14px; color:rgba(255,255,255,.68); font:700 .66rem var(--font-mono); letter-spacing:.11em; text-transform:uppercase; }
  .allocation-result-list{ display:grid; gap:10px; }
  .allocation-result{
    display:grid; grid-template-columns:minmax(0,1fr) auto; align-items:center; gap:16px;
    padding:16px; border:1px solid rgba(255,255,255,.13); border-radius:14px; background:rgba(255,255,255,.07);
  }
  .allocation-result span{ display:block; color:#fff; font-size:.82rem; font-weight:700; }
  .allocation-result small{ display:block; margin-top:3px; color:rgba(255,255,255,.54); font-size:.6rem; line-height:1.35; }
  .allocation-result strong{ color:#a6e5ba; font:700 1.15rem var(--font-mono); letter-spacing:-.04em; white-space:nowrap; }
  .allocation-result-dividend strong{ color:#ffd978; }
  .allocation-bars{ display:grid; gap:10px; margin-top:14px; padding:14px; border:1px solid rgba(255,255,255,.12); border-radius:12px; background:rgba(255,255,255,.05); }
  .allocation-bars div{ display:grid; grid-template-columns:48px 1fr; align-items:center; gap:10px; }
  .allocation-bars span{ color:rgba(255,255,255,.72); font:700 .58rem var(--font-mono); }
  .allocation-bars i{ display:block; height:8px; overflow:hidden; border-radius:99px; background:rgba(255,255,255,.12); }
  .allocation-bars b{ display:block; width:var(--bar); height:100%; border-radius:inherit; background:#8fd4a6; transition:width .18s ease; }
  .allocation-bars div:nth-child(2) b{ background:#ffd978; }
  .allocation-insight{ margin-top:14px; padding:13px 14px; border-radius:12px; color:#dff7e7; background:rgba(121,180,144,.15); font-size:.7rem; font-weight:650; line-height:1.45; }
  .allocation-insight.is-dividend{ color:#ffe8a6; background:rgba(217,174,79,.14); }
  .allocation-insight.is-equal{ color:rgba(255,255,255,.78); background:rgba(255,255,255,.08); }
  @media (max-width:900px){ .allocation-lab{ grid-template-columns:1fr; } }
  @media (max-width:560px){
    .allocation-lab{ margin-top:28px; border-radius:22px; }
    .allocation-inputs,.allocation-results{ padding:20px; }
    .allocation-field-grid{ grid-template-columns:1fr; }
    .allocation-result{ grid-template-columns:1fr; gap:8px; }
  }


  /* ============ RETURN CALCULATOR ============ */
  .return-lab-section{
    position:relative; overflow:hidden;
    background:radial-gradient(circle at 86% 14%,rgba(184,137,31,.1),transparent 28%),linear-gradient(180deg,#f7faf7 0%,#eef4ef 100%);
  }
  .return-lab-head{ max-width:760px; margin-inline:auto; }
  .return-lab-head .lede{ max-width:620px; margin:16px auto 0; }
  .return-lab{
    display:grid; grid-template-columns:minmax(0,1.2fr) minmax(340px,.8fr); max-width:1120px;
    margin:38px auto 0; overflow:hidden; border:1px solid rgba(6,70,42,.14); border-radius:30px;
    background:#fff; box-shadow:0 28px 72px -50px rgba(6,70,42,.46);
  }
  .return-lab-inputs{ display:flex; flex-direction:column; justify-content:flex-start; padding:28px; }
  .return-field-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
  .return-field{ display:block; min-width:0; padding:15px; border:1px solid var(--line-soft); border-radius:15px; background:#f9fbf9; }
  .return-field > span:first-child{ display:block; margin-bottom:9px; color:var(--text-soft); font-size:.72rem; font-weight:650; line-height:1.25; }
  .return-input-wrap{ display:flex; align-items:center; gap:8px; min-width:0; padding:9px 11px; border:1px solid var(--line); border-radius:10px; background:#fff; }
  .return-input-wrap:focus-within{ border-color:var(--green); box-shadow:0 0 0 3px rgba(59,122,90,.1); }
  .return-input-wrap b{ flex:none; color:#8a938e; font:600 .66rem var(--font-mono); }
  .return-input-wrap input{ width:100%; min-width:0; padding:0; border:0; outline:0; background:transparent; color:var(--green-dark); font:700 .8rem var(--font-mono); }
  .return-input-wrap select{ width:100%; min-width:0; border:0; outline:0; background:transparent; color:var(--green-dark); font:700 .76rem var(--font-mono); }
  .return-input-percent input{ text-align:right; }
  .return-field > small{ display:block; margin-top:7px; color:#87918b; font-size:.58rem; line-height:1.3; }
  .return-capm{ margin-top:14px; border:1px solid var(--line-soft); border-radius:14px; background:#f9fbf9; }
  .return-capm summary{ cursor:pointer; padding:13px 15px; color:var(--green); font-size:.7rem; font-weight:700; }
  .return-capm > p{ margin:0 15px 12px; color:var(--text-soft); font-size:.62rem; line-height:1.4; }
  .return-capm-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:9px; padding:0 12px 12px; }
  .return-capm .return-field{ padding:12px; background:#fff; }
  .return-lab-results{
    display:flex; flex-direction:column; padding:28px; color:#fff;
    background:radial-gradient(circle at 92% 2%,rgba(217,174,79,.2),transparent 34%),linear-gradient(145deg,#073f28,#095232);
  }
  .return-results-label{ margin-bottom:14px; color:rgba(255,255,255,.68); font:700 .66rem var(--font-mono); letter-spacing:.11em; text-transform:uppercase; }
  .return-result-list{ display:grid; gap:9px; }
  .return-result{ display:grid; grid-template-columns:minmax(0,1fr) auto; align-items:center; gap:16px; padding:14px 15px; border:1px solid rgba(255,255,255,.13); border-radius:14px; background:rgba(255,255,255,.07); }
  .return-result span{ display:block; color:#fff; font-size:.82rem; font-weight:700; }
  .return-result small{ display:block; margin-top:3px; color:rgba(255,255,255,.54); font-size:.6rem; line-height:1.35; }
  .return-result strong{ color:#a6e5ba; font:700 1.35rem var(--font-mono); letter-spacing:-.04em; white-space:nowrap; }
  .return-result.is-watch strong{ color:#ffd978; }
  .return-result.is-bad strong{ color:#ffab9d; }
  .return-compare-bars{ display:grid; gap:9px; margin-top:14px; padding:13px 14px; border:1px solid rgba(255,255,255,.12); border-radius:12px; background:rgba(255,255,255,.05); }
  .return-compare-bars div{ display:grid; grid-template-columns:36px 1fr; align-items:center; gap:9px; }
  .return-compare-bars span{ color:rgba(255,255,255,.72); font:700 .58rem var(--font-mono); }
  .return-compare-bars i{ display:block; height:7px; overflow:hidden; border-radius:99px; background:rgba(255,255,255,.12); }
  .return-compare-bars b{ display:block; width:var(--bar); height:100%; border-radius:inherit; background:#8fd4a6; transition:width .18s ease; }
  .return-compare-bars div:nth-child(2) b{ background:#ffd978; }
  .return-compare-bars div:nth-child(3) b{ background:#93bdca; }
  .return-insight{ margin-top:14px; padding:12px 14px; border-radius:12px; color:#dff7e7; background:rgba(121,180,144,.15); font-size:.7rem; font-weight:650; line-height:1.45; }
  .return-insight.is-watch{ color:#ffe8a6; background:rgba(217,174,79,.14); }
  .return-insight.is-bad{ color:#ffd1c9; background:rgba(178,74,59,.18); }
  @media (max-width:900px){ .return-lab{ grid-template-columns:1fr; } .return-lab-results{ min-height:0; } }
  @media (max-width:560px){
    .return-lab{ margin-top:28px; border-radius:22px; }
    .return-lab-inputs,.return-lab-results{ padding:20px; }
    .return-field-grid{ grid-template-columns:1fr; }
    .return-capm-grid{ grid-template-columns:1fr; }
  }

  /* ============ FOUNDER STORY ============ */
  .founder-section{ background:var(--paper); padding:50px 0 58px; }
  .founder-shell{
    display:grid; grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr); gap:60px; align-items:center;
    overflow:visible; border:0; border-radius:0; background:transparent; box-shadow:none;
  }
  .founder-visual{
    position:relative; min-height:460px; overflow:hidden; isolation:isolate;
    border:1px solid var(--line-soft); border-radius:30px; background:#F7F7F5;
  }
  .founder-sheet{
    position:absolute; z-index:2; left:20px; top:24px; width:min(288px,65%); overflow:hidden;
    border:1px solid #DCE6DE; border-radius:16px; background:#FFFFFF;
    box-shadow:0 18px 34px -28px rgba(19,36,27,.4); transform:rotate(-1.4deg);
  }
  .founder-sheet-head{ display:flex; align-items:center; gap:9px; padding:11px 13px; background:#f5f8f5; border-bottom:1px solid #dce5de; color:#415048; font-size:.7rem; font-weight:700; }
  .excel-mark{ display:grid; place-items:center; width:22px; height:22px; border-radius:6px; background:#217346; color:#fff; font:800 .68rem/1 var(--font-body); }
  .sheet-status{ margin-left:auto; color:#217346; font-size:.62rem; text-transform:uppercase; letter-spacing:.08em; }
  .founder-formula{ display:flex; align-items:center; gap:10px; padding:7px 13px; border-bottom:1px solid #dce5de; color:#67736c; font-size:.64rem; }
  .founder-formula span{ font-family:Georgia,serif; font-style:italic; color:#217346; }
  .founder-formula strong{ font-family:var(--font-mono); font-size:.61rem; color:#32443a; }
  .founder-sheet-grid{ display:grid; grid-template-columns:1.24fr repeat(3,1fr); font-size:.63rem; color:#536158; }
  .founder-sheet-grid > *{ min-width:0; padding:8px 9px; border-right:1px solid #e2e8e3; border-bottom:1px solid #e2e8e3; white-space:nowrap; }
  .founder-sheet-grid > :nth-child(4n){ border-right:0; }
  .founder-sheet-grid > :nth-last-child(-n+4){ border-bottom:0; }
  .founder-sheet-grid > span:nth-child(-n+4){ background:#eef3ef; color:#78827c; font-weight:700; text-align:center; }
  .founder-sheet-grid strong{ background:#f7f9f7; color:#27372e; }
  .founder-sheet-grid em{ background:#e8f3eb; color:#217346; font-style:normal; font-weight:800; text-align:center; }
  .founder-kpi{
    position:absolute; z-index:4; left:20px; bottom:22px; width:170px; padding:15px 16px;
    border:1px solid #DCE6DE; border-radius:16px; background:rgba(255,255,255,.94);
    box-shadow:0 16px 28px -24px rgba(19,36,27,.32); transform:none;
  }
  .founder-kpi > span{ display:block; color:#66736c; font-size:.66rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; }
  .founder-kpi strong{ display:block; margin-top:5px; color:#123f29; font-size:1.7rem; line-height:1; }
  .founder-bars{ display:flex; align-items:flex-end; gap:5px; height:28px; margin-top:11px; }
  .founder-bars i{ flex:1; height:34%; border-radius:3px 3px 1px 1px; background:#9dc8aa; }
  .founder-bars i:nth-child(2){ height:47%; background:#86bd96; }
  .founder-bars i:nth-child(3){ height:62%; background:#68a97d; }
  .founder-bars i:nth-child(4){ height:76%; background:#3f8b58; }
  .founder-bars i:nth-child(5){ height:100%; background:#176b3a; }
  .founder-algorithm{
    position:absolute; z-index:2; top:20px; right:20px; width:158px; padding:12px 13px 13px;
    border:1px solid #DCE6DE; border-radius:15px; background:rgba(255,255,255,.94);
    box-shadow:0 16px 28px -24px rgba(19,36,27,.32);
  }
  .founder-algorithm > span{ display:block; color:#66736c; font-size:.56rem; font-weight:750; text-transform:uppercase; letter-spacing:.07em; }
  .founder-algorithm strong{ display:block; margin-top:5px; color:#176b3a; font-size:.61rem; line-height:1.25; white-space:nowrap; }
  .founder-decision-chart{ position:relative; height:24px; margin-top:9px; border-bottom:1px solid #dce7df; }
  .founder-decision-chart::before{
    content:''; position:absolute; left:2px; right:2px; top:13px; height:3px; border-radius:999px;
    background:linear-gradient(90deg,#9dc8aa,#68a97d 50%,#b8891f 76%,#176b3a);
    clip-path:polygon(0 62%,31% 16%,57% 48%,78% 0,100% 32%,100% 100%,0 100%);
  }
  .founder-decision-chart i{
    position:absolute; top:12px; width:7px; height:7px; border:2px solid #fff; border-radius:50%;
    background:#3f8b58; box-shadow:0 0 0 1px rgba(23,107,58,.18);
  }
  .founder-decision-chart i:nth-child(1){ left:2px; top:14px; }
  .founder-decision-chart i:nth-child(2){ left:31%; top:8px; }
  .founder-decision-chart i:nth-child(3){ left:57%; top:12px; background:#b8891f; }
  .founder-decision-chart i:nth-child(4){ right:2px; top:7px; background:#176b3a; }
  .founder-portrait{
    position:absolute; z-index:3; right:18px; bottom:-2px; width:322px; height:auto;
    filter:drop-shadow(-14px 18px 22px rgba(19,36,27,.18)); pointer-events:none;
  }
  .founder-name{
    position:absolute; z-index:5; right:18px; bottom:20px; display:grid; gap:3px; min-width:218px;
    padding:10px 13px; border:1px solid #DCE6DE; border-radius:12px;
    background:rgba(255,255,255,.94); color:var(--text); box-shadow:0 14px 24px -22px rgba(19,36,27,.28);
  }
  .founder-name strong{ color:var(--text); font-size:.84rem; }
  .founder-name span{ color:var(--text-soft); font-size:.67rem; }
  .founder-role{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
  .founder-flags{ display:inline-flex; align-items:center; gap:4px; }
  .founder-flags b{ font-size:.78rem; line-height:1; font-weight:400; }
  .founder-copy{ display:flex; flex-direction:column; justify-content:center; padding:12px 0; }
  .founder-copy h2{ margin:0 0 20px; font-size:clamp(2rem,3vw,3rem); line-height:1.05; max-width:17ch; }
  .founder-copy p{ color:var(--text-soft); font-size:.97rem; line-height:1.7; max-width:56ch; }
  .founder-copy p + p{ margin-top:14px; }
  .founder-copy .founder-intro{ margin-bottom:0; color:var(--text); font-size:1.06rem; font-weight:600; line-height:1.55; }
  .founder-cta{ align-self:flex-start; margin-top:22px; }
  @media (max-width:820px){
    .founder-shell{ grid-template-columns:1fr; gap:38px; }
    .founder-visual{ min-height:400px; max-width:620px; width:100%; }
    .founder-copy{ padding:0; }
  }
  @media (max-width:560px){
    .founder-section{ padding:42px 0 48px; }
    .founder-visual{ min-height:350px; border-radius:24px; }
    .founder-sheet{ left:14px; top:18px; width:72%; transform:rotate(-1deg); }
    .founder-sheet-grid{ font-size:.55rem; }
    .founder-sheet-grid > *{ padding:7px 6px; }
    .founder-kpi{ left:14px; bottom:16px; width:146px; padding:13px 14px; }
    .founder-kpi strong{ font-size:1.4rem; }
    .founder-algorithm{ display:none; }
    .founder-portrait{ width:264px; right:-28px; bottom:-2px; }
    .founder-name{ right:13px; bottom:14px; min-width:190px; padding:9px 11px; }
    .founder-copy{ padding:0; }
    .founder-copy h2{ font-size:2.15rem; }
    .founder-copy .founder-intro{ font-size:1rem; }
    .founder-cta{ width:100%; justify-content:center; }
  }

  /* ============ CTA FORM ============ */
  .cta-form-section{ background:#20232D; position:relative; overflow:hidden; padding:84px 0; }
  .cta-form-section::before{
    content:""; position:absolute; inset:0; background-image:repeating-linear-gradient(90deg, rgba(243,241,230,.04) 0 1px, transparent 1px 60px);
  }
  .cta-form-grid{ position:relative; display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; align-items:center; }
  .cta-form-copy .lede{ margin-top:14px; max-width:38ch; }
  .lead-form{ background:var(--paper); border-radius:var(--radius-lg); padding:36px; box-shadow:var(--shadow-2); }
  .field{ margin-bottom:15px; }
  .field label{ display:block; font-size:.82rem; font-weight:600; margin-bottom:6px; color:var(--text-soft); }
  .field input{
    width:100%; padding:13px 14px; border-radius:10px; border:1px solid var(--line); font-size:.95rem;
    font-family:inherit; background:var(--card); color:var(--text);
  }
  .field input:focus{ border-color:var(--brass); }
  .consent{ display:flex; gap:10px; align-items:flex-start; font-size:.78rem; color:var(--text-soft); margin:16px 0 20px; }
  .consent input{ margin-top:3px; flex:none; }
  .consent a{ text-decoration:underline; }
  .lead-form .btn{ width:100%; }
  .thank-you{ display:none; text-align:center; padding:20px 6px; }
  .thank-you svg{ width:44px; height:44px; color:var(--sage); margin:0 auto 14px; }
  .thank-you h3{ margin-bottom:8px; }
  .thank-you p{ color:var(--text-soft); font-size:.92rem; }
  .lead-form.is-sent .form-fields{ display:none; }
  .lead-form.is-sent .thank-you{ display:block; }
  @media (max-width:960px){ .cta-form-grid{ grid-template-columns:1fr; } }

  /* ============ GERA CONSULTATION CARD ============ */
  .consultation-section{ background:var(--paper); padding:54px 0 62px; overflow:hidden; }
  .consultation-card{
    position:relative; isolation:isolate; overflow:hidden; width:100%; aspect-ratio:3.6 / 1; min-height:310px;
    border-radius:52px;
    background:#20232D;
    border:1px solid rgba(255,255,255,.1);
    box-shadow:none;
  }
  .consultation-card::before{
    content:""; position:absolute; z-index:-1; inset:0;
    background:
      linear-gradient(112deg, rgba(255,255,255,.085), transparent 18%, transparent 72%, rgba(126,235,172,.055)),
      repeating-linear-gradient(100deg, transparent 0 95px, rgba(255,255,255,.018) 96px 97px);
    pointer-events:none;
  }
  .consultation-card::after{ display:none; }
  .consultation-content{
    position:relative; z-index:3; height:100%; padding:48px 195px 44px 66px;
    display:flex; flex-direction:column; justify-content:center;
  }
  .consultation-copy{ margin-bottom:28px; }
  .consultation-copy h2{
    color:#f7f7f1; font-size:clamp(2rem, 2.4vw, 2.75rem); line-height:1.02;
    letter-spacing:-.04em; margin:0 0 12px; max-width:660px;
  }
  .consultation-copy p{ color:rgba(230,239,233,.72); font-size:1rem; line-height:1.5; max-width:660px; }
  .consultation-card .lead-form{
    position:relative; z-index:3; background:transparent; padding:0; border-radius:0; box-shadow:none;
  }
  .consultation-row{
    display:grid; grid-template-columns:minmax(110px,.8fr) minmax(180px,1.15fr) minmax(145px,1fr) minmax(160px,.95fr);
    gap:10px; align-items:stretch;
  }
  .consultation-field{
    min-width:0; height:58px; display:flex; align-items:center; overflow:hidden;
    background:rgba(255,255,255,.965); border:1px solid rgba(255,255,255,.7); border-radius:15px;
    box-shadow:inset 0 1px 0 #fff, 0 12px 28px -20px rgba(0,0,0,.7);
    transition:border-color .18s ease, box-shadow .18s ease;
  }
  .consultation-field:focus-within{
    border-color:rgba(218,187,96,.92); box-shadow:0 0 0 3px rgba(218,187,96,.14), 0 14px 30px -20px rgba(0,0,0,.7);
  }
  .consultation-field input{
    min-width:0; width:100%; height:100%; padding:0 17px; border:0; outline:0; background:transparent;
    font:600 .9rem/1 var(--font-body); color:var(--text);
  }
  .consultation-field input::placeholder{ color:#8a938e; font-weight:500; opacity:1; }
  .consultation-phone input{ padding-left:12px; }
  .phone-prefix{
    height:100%; flex:none; display:flex; align-items:center; gap:7px; padding:0 12px 0 14px;
    border-right:1px solid #e4e7e4; color:#27342f; font-weight:700; font-size:.87rem;
    background:rgba(238,241,238,.82);
  }
  .uae-flag{ font-size:1rem; line-height:1; }
  .consultation-submit{
    min-height:58px; width:100%; padding:0 22px; border:0; border-radius:15px;
    background:linear-gradient(135deg, #c95b48, var(--brick)); color:#fff;
    box-shadow:0 16px 30px -18px rgba(178,74,59,.92), inset 0 1px 0 rgba(255,255,255,.22);
    font-family:inherit; font-weight:700; font-size:.92rem; letter-spacing:-.01em; cursor:pointer;
    transition:transform .18s ease, filter .18s ease, box-shadow .18s ease;
  }
  .consultation-submit:hover{
    filter:brightness(1.06); transform:translateY(-1px);
    box-shadow:0 18px 34px -18px rgba(178,74,59,1), inset 0 1px 0 rgba(255,255,255,.22);
  }
  .consultation-submit:active{ transform:translateY(0); }
  .consultation-phone-art{
    position:absolute; z-index:4; width:150px; height:auto; right:24px; top:24px;
    opacity:.98; transform:rotate(8deg);
    filter:drop-shadow(0 18px 22px rgba(0,0,0,.42)); pointer-events:none;
  }
  .consultation-card-with-photo .consultation-content{ padding-right:290px; }
  .consultation-photo-art{
    position:absolute; z-index:4; right:22px; bottom:-2px; width:260px; height:auto;
    filter:drop-shadow(-16px 18px 22px rgba(0,0,0,.34)); pointer-events:none;
  }
  .consultation-card .thank-you{ padding:4px 0 0; text-align:left; }
  .consultation-card .thank-you svg{ margin:0 0 10px; color:#79d69d; }
  .consultation-card .thank-you h3{ color:#fff; }
  .consultation-card .thank-you p{ color:rgba(230,239,233,.72); }
  .visually-hidden{
    position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important;
    overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important;
  }
  @media (max-width:1060px){
    .consultation-card{ aspect-ratio:auto; min-height:390px; }
    .consultation-content{ padding:52px 158px 50px 48px; }
    .consultation-row{ grid-template-columns:1fr 1fr; }
    .consultation-phone-art{ width:118px; right:20px; top:20px; }
    .consultation-card-with-photo .consultation-content{ padding-right:190px; }
    .consultation-photo-art{ width:188px; right:12px; }
  }
  @media (max-width:700px){
    .consultation-section{ padding:46px 0 52px; }
    .consultation-card{ min-height:0; border-radius:34px; }
    .consultation-content{ padding:150px 24px 28px; }
    .consultation-copy{ margin-bottom:24px; }
    .consultation-copy h2{ font-size:2rem; }
    .consultation-copy p{ font-size:.94rem; max-width:32ch; }
    .consultation-row{ grid-template-columns:1fr; }
    .consultation-field, .consultation-submit{ height:56px; }
    .consultation-phone-art{ width:108px; height:auto; left:auto; right:18px; top:18px; opacity:1; transform:rotate(8deg); }
    .consultation-card-with-photo .consultation-content{ padding:24px 24px 28px; }
    .consultation-card-with-photo::after{
      content:""; display:block; position:absolute; z-index:2; width:220px; height:220px; right:-34px; top:-30px;
      background:radial-gradient(circle, rgba(178,74,59,.18) 0%, rgba(255,255,255,.045) 46%, transparent 72%);
      pointer-events:none;
    }
    .consultation-card-with-photo .consultation-copy{ min-height:185px; margin-bottom:24px; padding-right:148px; }
    .consultation-card-with-photo .consultation-copy p{ max-width:none; }
    .consultation-photo-art{
      width:152px; right:-2px; bottom:auto; top:-18px;
      -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 72%, rgba(0,0,0,.9) 82%, transparent 100%);
      mask-image:linear-gradient(to bottom, #000 0%, #000 72%, rgba(0,0,0,.9) 82%, transparent 100%);
    }
  }


  /* ============ FAQ ============ */
  .faq-list{ max-width:800px; margin:0 auto; border-top:1px solid var(--line-soft); }
  .faq-item{ border-bottom:1px solid var(--line-soft); }
  .faq-item summary{
    cursor:pointer; list-style:none; padding:17px 4px; display:flex; align-items:center; justify-content:space-between;
    font-weight:600; font-size:1.02rem; gap:20px;
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary .plus{ flex:none; width:26px; height:26px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; transition:transform .2s ease, background .2s ease; }
  .faq-item summary .plus svg{ width:12px; height:12px; }
  .faq-item[open] summary .plus{ background:var(--brick); border-color:var(--brick); color:#fff; transform:rotate(45deg); }
  .faq-item p{ padding:0 34px 18px 4px; color:var(--text-soft); font-size:.94rem; line-height:1.65; }

  /* ============ COMPARISON ============ */
  .compare-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
  .compare-card{ border-radius:var(--radius-lg); padding:38px 34px; }
  .compare-card.compare-muted{ background:var(--paper-2); }
  .compare-cost-error{
    color:var(--text); font-weight:inherit; white-space:nowrap;
    text-decoration-line:underline; text-decoration-style:wavy;
    text-decoration-color:#d92d20; text-decoration-thickness:1.7px;
    text-underline-offset:4px; text-decoration-skip-ink:none;
  }
  .compare-card.compare-featured{
    position:relative; isolation:isolate; overflow:hidden;
    background:
      radial-gradient(circle at 92% 4%, rgba(201,91,72,.22), transparent 34%),
      linear-gradient(145deg, #252832 0%, #20232D 56%, #1c1f28 100%);
    border:1px solid rgba(255,255,255,.1);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.07), 0 24px 50px -42px rgba(178,74,59,.8);
    transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  }
  .compare-card.compare-featured:hover{
    transform:translateY(-4px); border-color:rgba(201,91,72,.38);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 34px 62px -38px rgba(178,74,59,.62);
  }
  .compare-card.compare-featured::before{
    content:""; position:absolute; z-index:-1; inset:-55% -35%; opacity:.32; pointer-events:none;
    background:linear-gradient(110deg, transparent 39%, rgba(255,255,255,.12) 49%, transparent 59%);
    transform:translateX(-38%) rotate(5deg); animation:compareSheen 7s ease-in-out infinite;
  }
  .compare-card.compare-featured::after{
    content:""; position:absolute; z-index:-1; width:250px; height:250px; right:-90px; bottom:-118px;
    border-radius:50%; border:1px solid rgba(211,174,85,.18);
    box-shadow:0 0 0 32px rgba(211,174,85,.025), 0 0 68px rgba(178,74,59,.14);
    pointer-events:none;
  }
  .compare-featured-head{ position:relative; z-index:2; margin-bottom:24px; }
  .compare-featured-head h3{ margin-bottom:0; }
  .compare-value-badge{
    display:flex; flex-direction:column; align-items:flex-start; gap:5px;
    position:static; transform:none; margin-top:13px;
  }
  .compare-value-badge strong{
    max-width:16ch; color:#fff;
    font:800 clamp(1.35rem,1rem + 1.15vw,1.9rem)/1.08 var(--font-display);
    letter-spacing:-.035em; text-wrap:balance;
  }
  .compare-growth-visual{
    position:absolute; z-index:-1; right:20px; bottom:18px; width:190px; height:122px;
    opacity:.24; pointer-events:none;
  }
  .compare-growth-grid{
    position:absolute; inset:0;
    background:
      repeating-linear-gradient(to top, rgba(255,255,255,.12) 0 1px, transparent 1px 30px),
      repeating-linear-gradient(to right, rgba(255,255,255,.07) 0 1px, transparent 1px 38px);
    -webkit-mask-image:linear-gradient(135deg, transparent 0%, #000 42%, #000 100%);
    mask-image:linear-gradient(135deg, transparent 0%, #000 42%, #000 100%);
  }
  .compare-growth-bars{ position:absolute; inset:12px 10px 0 22px; display:flex; align-items:flex-end; gap:9px; }
  .compare-growth-bars i{
    width:18px; border-radius:5px 5px 1px 1px;
    background:linear-gradient(to top, rgba(178,74,59,.28), rgba(231,188,93,.82));
    box-shadow:0 0 18px rgba(201,91,72,.13);
    transform-origin:bottom; animation:compareBars 4.5s ease-in-out infinite alternate;
  }
  .compare-growth-bars i:nth-child(1){ height:24%; animation-delay:-1.2s; }
  .compare-growth-bars i:nth-child(2){ height:36%; animation-delay:-.8s; }
  .compare-growth-bars i:nth-child(3){ height:50%; animation-delay:-.4s; }
  .compare-growth-bars i:nth-child(4){ height:69%; }
  .compare-growth-bars i:nth-child(5){ height:92%; animation-delay:.35s; }
  .compare-growth-line{
    position:absolute; width:160px; height:2px; right:5px; top:57px;
    background:linear-gradient(90deg, transparent, #c95b48 26%, #efcf74);
    border-radius:999px; transform:rotate(-28deg); transform-origin:right center;
    box-shadow:0 0 12px rgba(239,207,116,.34);
  }
  .compare-growth-line::after{
    content:""; position:absolute; right:-1px; top:-4px; width:8px; height:8px;
    border-top:2px solid #efcf74; border-right:2px solid #efcf74; transform:rotate(45deg);
  }
  @keyframes compareSheen{
    0%, 34%{ transform:translateX(-45%) rotate(5deg); opacity:0; }
    52%{ opacity:.38; }
    72%, 100%{ transform:translateX(45%) rotate(5deg); opacity:0; }
  }
  @keyframes compareBars{ from{ transform:scaleY(.88); filter:brightness(.88); } to{ transform:scaleY(1); filter:brightness(1.12); } }
  .compare-card h3{ margin-bottom:24px; font-size:1.25rem; }
  .section-head.center .lede{ margin:14px auto 0; max-width:52ch; text-wrap:pretty; }
  .compare-muted h3{ color:var(--text); }
  .compare-featured h3{ color:var(--text-on-ink); }
  .compare-list{ display:flex; flex-direction:column; gap:15px; }
  .compare-list li{ display:flex; gap:10px; align-items:flex-start; font-size:.92rem; line-height:1.5; }
  .compare-list svg{ flex:none; width:16px; height:16px; margin-top:2px; }
  .compare-muted li{ color:var(--text-soft); }
  .compare-muted svg{ color:var(--text-soft); }
  .compare-featured li{ color:rgba(243,241,230,.92); }
  .compare-featured svg{ color:var(--paper); }
  .compare-cfo-link{ position:relative; z-index:2; width:max-content; margin-top:28px; background:var(--brick); color:#fff; }
  .compare-cfo-link:hover{ background:#c95b48; color:#fff; }
  @media (max-width:900px){ .compare-grid{ grid-template-columns:1fr; } }
  @media (max-width:560px){
    .compare-card{ padding:30px 24px; }
    .compare-featured-head{ padding-right:0; }
    .compare-growth-visual{ width:150px; height:106px; right:-4px; bottom:12px; opacity:.18; }
    .compare-value-badge{ margin-top:11px; }
    .compare-value-badge strong{ font-size:1.45rem; }
    .compare-cfo-link{ width:100%; justify-content:center; }
  }
  @media (prefers-reduced-motion:reduce){
    .compare-card.compare-featured::before, .compare-growth-bars i{ animation:none; }
    .compare-card.compare-featured{ transition:none; }
  }

  /* ============ CASH CONVERSION LAB ============ */
  .cash-lab-section{
    position:relative;
    overflow:hidden;
    background:
      radial-gradient(circle at 82% 18%, rgba(184,137,31,.10), transparent 30%),
      linear-gradient(180deg, #F8FAF7 0%, #F2F6F2 100%);
  }
  .cash-lab-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    left:-210px;
    bottom:-250px;
    border:1px solid rgba(59,122,90,.12);
    border-radius:50%;
  }
  .cash-lab-head{ position:relative; z-index:1; max-width:860px; margin-inline:auto; }
  .cash-lab-head .lede{ max-width:600px; margin:18px auto 0; }
  .cash-lab-question{
    max-width:720px;
    margin:16px auto 0;
    color:var(--ink);
    font-size:1.02rem;
    font-weight:700;
    line-height:1.55;
  }
  .cash-lab{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:minmax(280px,.58fr) minmax(560px,1.42fr);
    margin-top:46px;
    border:1px solid rgba(6,70,42,.14);
    border-radius:34px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 28px 80px -48px rgba(6,70,42,.48);
  }
  .cash-lab-controls{
    padding:30px;
    background:linear-gradient(145deg, #FFFFFF 0%, #F8FAF7 100%);
    border-right:1px solid var(--line);
  }
  .cash-lab-panel-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    padding-bottom:22px;
    margin-bottom:28px;
    border-bottom:1px solid var(--line-soft);
  }
  .cash-lab-panel-head span{
    color:var(--text-soft);
    font-size:.78rem;
    letter-spacing:.08em;
    text-transform:uppercase;
  }
  .cash-lab-panel-head strong{ color:var(--ink); font-size:.9rem; }
  .cash-control{ display:block; margin-top:22px; }
  .cash-control > span{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-bottom:12px;
  }
  .cash-control strong{ font-size:.96rem; }
  .cash-control output{
    color:var(--green);
    font-family:var(--font-mono);
    font-size:.82rem;
    font-weight:600;
    white-space:nowrap;
  }
  .cash-control small{
    display:block;
    margin-top:8px;
    color:#7A837E;
    font-size:.78rem;
  }
  .cash-control input[type="range"]{
    --control-color:var(--green);
    --control-soft:#A8C5B2;
    width:100%;
    height:5px;
    margin:0;
    border-radius:999px;
    outline:none;
    appearance:none;
    -webkit-appearance:none;
    background:linear-gradient(90deg, var(--control-color), var(--control-soft));
    cursor:pointer;
  }
  .cash-control input[type="range"]::-webkit-slider-thumb{
    width:20px;
    height:20px;
    border:4px solid #fff;
    border-radius:50%;
    appearance:none;
    -webkit-appearance:none;
    background:var(--control-color);
    box-shadow:0 0 0 1px rgba(6,70,42,.2), 0 3px 10px rgba(6,70,42,.22);
  }
  .cash-control input[type="range"]::-moz-range-thumb{
    width:13px;
    height:13px;
    border:4px solid #fff;
    border-radius:50%;
    background:var(--control-color);
    box-shadow:0 0 0 1px rgba(6,70,42,.2), 0 3px 10px rgba(6,70,42,.22);
  }
  .cash-control input[type="range"].is-watch{ --control-color:var(--brass); --control-soft:#E7D6A8; }
  .cash-control input[type="range"].is-bad{ --control-color:var(--brick); --control-soft:#E3B0A7; }
  #customerDays{
    background:linear-gradient(90deg, var(--green) 0 50%, var(--brass) 50% 75%, var(--brick) 75% 100%);
  }
  #stockDays{
    background:linear-gradient(90deg, var(--green) 0 33.3%, var(--brass) 33.3% 66.7%, var(--brick) 66.7% 100%);
  }
  #deliveryDays{
    background:linear-gradient(90deg, var(--green) 0 23.3%, var(--brass) 23.3% 46.7%, var(--brick) 46.7% 100%);
  }
  #supplierDays{
    background:linear-gradient(90deg, var(--brick) 0 25%, var(--brass) 25% 50%, var(--green) 50% 100%);
  }
  .cash-control.is-watch output{ color:var(--brass); }
  .cash-control.is-bad output{ color:var(--brick); }
  .cash-model-settings{
    margin-top:18px;
  }
  .cash-model-settings-head{
    margin-bottom:14px;
    color:var(--ink);
    font-size:.8rem;
    font-weight:700;
  }
  .cash-model-settings-grid{
    display:grid;
    grid-template-columns:1fr;
  }
  .cash-model-settings-grid label{
    display:block;
    min-width:0;
    padding:16px 0;
    border-top:1px solid var(--line-soft);
  }
  .cash-model-settings-grid label > span{ display:block; color:var(--ink); font-size:.82rem; font-weight:600; line-height:1.25; }
  .cash-model-settings-grid input{
    width:100%;
    margin-top:10px;
    padding:10px 12px;
    border:1px solid var(--line);
    border-radius:10px;
    outline:none;
    background:#fff;
    color:var(--ink);
    font:600 .84rem var(--font-mono);
  }
  .cash-model-settings-grid input:focus{ border-color:var(--green); box-shadow:0 0 0 3px rgba(59,122,90,.1); }
  .cash-model-settings-grid small{ display:block; margin-top:7px; color:#7A837E; font-size:.7rem; line-height:1.3; }
  .cash-lab-results{
    padding:30px;
    color:var(--text-on-ink);
    background:
      radial-gradient(circle at 88% 5%, rgba(217,174,79,.17), transparent 32%),
      linear-gradient(145deg, #073F28 0%, #095232 100%);
  }
  .cash-cycle-hero{
    display:grid;
    grid-template-columns:auto minmax(180px,1fr);
    align-items:end;
    gap:34px;
    padding-bottom:28px;
    border-bottom:1px solid rgba(255,255,255,.16);
  }
  .cash-cycle-hero span{ color:var(--text-on-ink-soft); font-size:.88rem; }
  .cash-cycle-hero strong{
    display:block;
    margin-top:5px;
    color:#fff;
    font-size:clamp(2.8rem,5vw,4.3rem);
    line-height:.92;
    letter-spacing:-.055em;
  }
  .cash-cycle-hero strong small{ color:#fff; font-size:1rem; letter-spacing:0; }
  .cash-cycle-explainer{ max-width:34ch; margin-top:9px; color:rgba(255,255,255,.62); font-size:.66rem; line-height:1.4; }
  .cash-cycle-side{ display:grid; gap:14px; align-content:end; }
  .cash-cycle-gauge{
    position:relative;
    height:8px;
    margin-bottom:8px;
    overflow:visible;
    border-radius:99px;
    background:rgba(255,255,255,.15);
  }
  .cash-cycle-gauge i{
    display:block;
    width:58%;
    height:100%;
    border-radius:inherit;
    background:linear-gradient(90deg, #79B490, var(--brass-light));
    transition:width .18s ease;
  }
  .cash-cycle-gauge i.is-watch{ background:linear-gradient(90deg, #D5AD4D, #E7CF8D); }
  .cash-cycle-gauge i.is-bad{ background:linear-gradient(90deg, var(--brick), #E09A8F); }
  .cash-cycle-guide{ display:flex; justify-content:space-between; gap:12px; font:500 .58rem var(--font-mono); }
  .cash-cycle-guide .is-good{ color:#A8E6B8; }
  .cash-cycle-guide .is-watch{ color:#FFD978; }
  .cash-cycle-guide .is-bad{ color:#FFAA9B; }
  .cash-cycle-gauge b{
    position:absolute;
    right:0;
    bottom:15px;
    color:rgba(255,255,255,.72);
    font-family:var(--font-mono);
    font-size:.68rem;
    font-weight:500;
  }
  .cash-result-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:26px;
  }
  .cash-result-card{
    min-height:124px;
    padding:16px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:20px;
    background:rgba(255,255,255,.07);
    transition:background .2s ease, border-color .2s ease;
  }
  .cash-result-card > span{ color:var(--text-on-ink-soft); font-size:.76rem; }
  .cash-result-card strong{
    display:block;
    margin-top:10px;
    color:#fff;
    font-size:clamp(1.05rem,1.7vw,1.55rem);
    line-height:1.05;
    letter-spacing:-.035em;
  }
  .cash-result-card small{ display:block; margin-top:11px; color:rgba(255,255,255,.58); font-size:.68rem; line-height:1.35; }
  .cash-result-card.is-good{ background:rgba(70,166,107,.2); border-color:rgba(158,231,182,.4); }
  .cash-result-card.is-good strong{ color:#A8E6B8; }
  .cash-result-card.is-watch{ background:rgba(217,174,79,.2); border-color:rgba(242,210,127,.46); }
  .cash-result-card.is-watch strong{ color:#FFD978; }
  .cash-result-card.is-bad{ background:rgba(178,74,59,.2); border-color:rgba(255,154,136,.46); }
  .cash-result-card.is-bad strong{ color:#FFAA9B; }
  .cash-result-negative{ background:rgba(178,74,59,.18); border-color:rgba(255,154,136,.42); }
  .cash-result-negative strong{ color:#FFAA9B; }
  .cash-result-negative small{ color:rgba(255,210,202,.72); }
  .metric-help{ position:relative; cursor:help; outline:none; }
  .metric-help::after{
    content:attr(data-tip);
    position:absolute;
    z-index:8;
    left:50%;
    bottom:calc(100% + 11px);
    width:max-content;
    max-width:270px;
    padding:9px 11px;
    border:1px solid var(--line);
    border-radius:10px;
    background:#fff;
    box-shadow:0 12px 28px -16px rgba(0,0,0,.45);
    color:var(--text-soft);
    font-family:var(--font-body);
    font-size:.69rem;
    font-weight:500;
    letter-spacing:0;
    line-height:1.4;
    text-align:left;
    white-space:normal;
    opacity:0;
    pointer-events:none;
    transform:translate(-50%,5px);
    transition:opacity .12s ease, transform .12s ease;
  }
  .metric-help:hover::after,
  .metric-help:focus-visible::after{ opacity:1; transform:translate(-50%,0); }
  .cash-setting-help:focus-within::after{ opacity:1; transform:translate(-50%,0); }
  .cash-model-settings-grid .cash-setting-help:nth-child(odd)::after{ left:0; transform:translate(0,5px); }
  .cash-model-settings-grid .cash-setting-help:nth-child(odd):hover::after,
  .cash-model-settings-grid .cash-setting-help:nth-child(odd):focus-within::after{ transform:translate(0,0); }
  .cash-model-settings-grid .cash-setting-help:nth-child(even)::after{ left:auto; right:0; transform:translate(0,5px); }
  .cash-model-settings-grid .cash-setting-help:nth-child(even):hover::after,
  .cash-model-settings-grid .cash-setting-help:nth-child(even):focus-within::after{ transform:translate(0,0); }
  .cash-cycle-hero .metric-help::after,
  .cash-result-card:first-child .metric-help::after{ left:0; transform:translate(0,5px); }
  .cash-cycle-hero .metric-help:hover::after,
  .cash-cycle-hero .metric-help:focus-visible::after,
  .cash-result-card:first-child .metric-help:hover::after,
  .cash-result-card:first-child .metric-help:focus-visible::after{ transform:translate(0,0); }
  .cash-result-card:last-child .metric-help::after{ left:auto; right:0; transform:translate(0,5px); }
  .cash-result-card:last-child .metric-help:hover::after,
  .cash-result-card:last-child .metric-help:focus-visible::after{ transform:translate(0,0); }
  .cash-growth-card{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:26px;
    margin-top:24px;
    padding:26px;
    border-radius:24px;
    color:var(--text);
    background:#F9F7F0;
    box-shadow:inset 0 0 0 1px rgba(217,174,79,.2);
  }
  .cash-growth-kicker{
    color:var(--brass);
    font-family:var(--font-mono);
    font-size:.68rem;
    font-weight:600;
    letter-spacing:.1em;
    text-transform:uppercase;
  }
  .cash-growth-copy h3{ margin-top:8px; font-size:1.42rem; line-height:1.1; }
  .cash-growth-copy p{ max-width:430px; margin-top:10px; color:var(--text-soft); font-size:.82rem; line-height:1.55; }
  .cash-use-card{ grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr); align-items:start; }
  .cash-use-card{ position:relative; }
  .cash-use-options{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
  .cash-use-option{
    min-height:140px;
    padding:20px;
    border:1px solid #E6E0CF;
    border-radius:18px;
    background:#fff;
  }
  .cash-use-option > span{
    display:inline-flex;
    color:var(--green);
    font-family:var(--font-mono);
    font-size:.66rem;
    font-weight:600;
    letter-spacing:.08em;
  }
  .cash-use-option h4{ margin-top:18px; color:var(--ink); font-size:1.08rem; }
  .cash-use-option p{ margin-top:8px; color:var(--text-soft); font-size:.76rem; line-height:1.5; }
  .cash-use-dividend{ border-color:#E8D5A8; background:#F8F1E5; }
  .cash-use-dividend > span{ color:var(--brass); }
  .cash-lab-disclaimer{ margin:16px 2px 0; color:rgba(255,255,255,.52); font-size:.68rem; line-height:1.5; }

  @media (max-width:940px){
    .cash-lab{ grid-template-columns:1fr; }
    .cash-lab-controls{ border-right:0; border-bottom:1px solid var(--line); }
    .cash-result-grid{ grid-template-columns:repeat(2,1fr); }
    .cash-use-card{ grid-template-columns:1fr; }
  }
  @media (max-width:620px){
    .cash-lab{ margin-top:30px; border-radius:24px; }
    .cash-lab-controls, .cash-lab-results{ padding:24px 18px; }
    .cash-lab-panel-head{ align-items:flex-start; flex-direction:column; gap:5px; }
    .cash-model-settings-grid{ grid-template-columns:1fr; }
    .cash-cycle-hero{ grid-template-columns:1fr; gap:30px; }
    .cash-result-grid{ grid-template-columns:1fr; }
    .cash-result-card{ min-height:0; }
    .cash-growth-card{ grid-template-columns:1fr; padding:21px 18px; }
    .cash-use-options{ grid-template-columns:1fr; }
    .cash-use-option{ min-height:0; }
  }

  /* Cash conversion calculator — rebuilt model */
  .cash-lab-v2{ grid-template-columns:minmax(0,1fr) minmax(0,1fr); }
  .cash-lab-v2 .cash-lab-controls{ padding:32px; }
  .cash-lab-v2 .cash-lab-panel-head{ align-items:center; margin-bottom:20px; padding-bottom:18px; }
  .cash-lab-v2 .cash-lab-panel-head span{ color:var(--ink); font-size:.76rem; font-weight:700; letter-spacing:.06em; }
  .cash-lab-v2 .cash-lab-panel-head strong{ color:var(--green); font-size:.72rem; }
  .cash-lab-v2 .cash-model-settings{ margin:0; }
  .cash-lab-v2 .cash-model-settings-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
  .cash-lab-v2 .cash-model-settings-grid label{
    padding:16px; border:1px solid var(--line); border-radius:16px; background:#fff;
  }
  .cash-lab-v2 .cash-model-settings-grid input{ margin-top:9px; padding:10px 11px; }
  .cash-timing-head{
    margin:24px 0 12px; color:var(--ink); font-size:.76rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  }
  .cash-timing-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
  .cash-lab-v2 .cash-control{
    min-width:0; min-height:112px; margin:0; padding:16px; border:1px solid var(--line); border-radius:16px; background:rgba(255,255,255,.78);
  }
  .cash-lab-v2 .cash-control > span{ display:grid; grid-template-columns:minmax(0,1fr) auto; align-items:center; gap:12px; margin-bottom:22px; }
  .cash-lab-v2 .cash-control strong{ max-width:none; font-size:.78rem; line-height:1.3; white-space:nowrap; }
  .cash-lab-v2 .cash-control output{ color:var(--green); font-size:.74rem; }
  .cash-lab-v2 .cash-control input[type="range"]{
    --control-color:var(--green); --control-soft:#A8C5B2; --fill:50%; height:6px;
    background:linear-gradient(90deg,var(--control-color) 0 var(--fill),var(--control-soft) var(--fill) 100%) !important;
  }
  .cash-lab-v2 .cash-lab-results{ display:flex; flex-direction:column; padding:32px; }
  .cash-release-hero{
    padding:26px; border:1px solid rgba(255,218,120,.42); border-radius:24px;
    background:linear-gradient(135deg,rgba(217,174,79,.26),rgba(217,174,79,.12));
  }
  .cash-release-hero > span{ color:rgba(255,255,255,.72); font-size:.78rem; }
  .cash-release-hero > strong{
    display:block; margin-top:8px; color:#FFD978; font-size:clamp(2.4rem,4.4vw,3.9rem); line-height:.96; letter-spacing:-.05em;
  }
  .cash-release-hero > p{ max-width:40ch; margin-top:10px; color:rgba(255,255,255,.62); font-size:.72rem; line-height:1.45; }
  .cash-release-hero .metric-help::after{ left:0; transform:translate(0,5px); }
  .cash-release-hero .metric-help:hover::after,
  .cash-release-hero .metric-help:focus-visible::after{ transform:translate(0,0); }
  .cash-lab-v2 .cash-result-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); margin-top:14px; }
  .cash-lab-v2 .cash-result-card{ min-height:132px; padding:16px; }
  .cash-lab-v2 .cash-result-card strong{ font-size:clamp(1.15rem,1.7vw,1.55rem); }
  .cash-release-breakdown{
    display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1px; margin-top:14px; overflow:hidden;
    border:1px solid rgba(255,255,255,.14); border-radius:18px; background:rgba(255,255,255,.14);
  }
  .cash-release-breakdown div{ min-width:0; padding:14px; background:rgba(255,255,255,.07); }
  .cash-release-breakdown span{ display:block; min-height:2.5em; color:rgba(255,255,255,.58); font-size:.64rem; line-height:1.3; }
  .cash-release-breakdown strong{ display:block; margin-top:7px; color:#FFD978; font-size:.88rem; line-height:1.15; }
  .cash-release-breakdown strong.is-negative{ color:#FFAA9B; }
  .cash-method{ margin-top:14px; padding:0 4px; color:rgba(255,255,255,.66); }
  .cash-method summary{ width:max-content; cursor:pointer; color:rgba(255,255,255,.78); font-size:.7rem; font-weight:700; }
  .cash-method p{ max-width:68ch; margin-top:8px; font-size:.68rem; line-height:1.5; }
  @media (max-width:1040px){
    .cash-lab-v2{ grid-template-columns:1fr; }
    .cash-lab-v2 .cash-lab-controls{ border-right:0; border-bottom:1px solid var(--line); }
  }
  @media (max-width:680px){
    .cash-lab-v2 .cash-model-settings-grid,
    .cash-timing-grid,
    .cash-lab-v2 .cash-result-grid,
    .cash-release-breakdown{ grid-template-columns:1fr; }
    .cash-release-breakdown{ gap:0; }
    .cash-release-breakdown div + div{ border-top:1px solid rgba(255,255,255,.12); }
    .cash-release-breakdown span{ min-height:0; }
  }

  /* ============ FOOTER ============ */
  .site-footer{
    background:#20232D;
    color:var(--text-on-ink-soft); padding:72px 0 28px; border-top:1px solid rgba(255,255,255,.08);
  }
  .footer-top{ display:grid; grid-template-columns:1.3fr repeat(3,1fr); gap:32px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.12); }
  .footer-brand .logo{ width:128px; height:48px; border-radius:0; background:transparent; }
  .footer-brand .logo-image{ width:158px; height:auto; left:-10px; top:-7px; filter:brightness(0) invert(1); opacity:.96; }
  .footer-brand p{ margin-top:14px; font-size:.88rem; max-width:30ch; }
  .footer-col h4{ color:var(--text-on-ink); font-family:var(--font-mono); font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; font-weight:600; margin-bottom:18px; }
  .footer-col ul{ display:flex; flex-direction:column; gap:14px; }
  .footer-col a{ font-size:.9rem; }
  .footer-col a:hover{ color:var(--text-on-ink); }
  .footer-fine{ display:block; margin-top:4px; font-size:.8rem; color:var(--brass-light); opacity:1; }
  .footer-contact{ min-width:0; }
  .footer-contact li{ display:flex; align-items:flex-start; gap:11px; padding:6px 0; margin:0; border-radius:8px; font-size:.9rem; color:var(--text-on-ink-soft); transition:background .15s ease; }
  .footer-contact li:hover{ background:rgba(255,255,255,.06); }
  .footer-contact svg{ flex:none; width:15px; height:15px; margin-top:2px; color:var(--brass-light); opacity:.9; }
  .footer-contact li:last-child{ margin-top:6px; padding-top:16px; border-top:1px solid rgba(255,255,255,.12); }
  .footer-caps{
    padding:30px 0 26px; border-bottom:1px solid rgba(255,255,255,.12);
  }
  .footer-caps h4{
    margin:0 0 18px; color:var(--text-on-ink); font-family:var(--font-mono); font-size:.78rem;
    text-transform:uppercase; letter-spacing:.1em; font-weight:600;
  }
  .footer-caps ul{
    columns:4; column-gap:30px;
  }
  .footer-caps li{
    position:relative; padding-left:14px; margin-bottom:11px; font-size:.82rem; line-height:1.4;
    color:var(--text-on-ink-soft); opacity:.78;
    break-inside:avoid; -webkit-column-break-inside:avoid;
  }
  .footer-caps li::before{
    content:""; position:absolute; left:0; top:.52em; width:5px; height:1px;
    background:var(--brass-light); opacity:.75;
  }
  @media (max-width:960px){
    .footer-caps ul{ columns:2; }
  }
  @media (max-width:520px){
    .footer-caps ul{ columns:1; }
  }
  .footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; padding-top:26px; font-size:.8rem; }
  .footer-legal{ display:flex; gap:18px; flex-wrap:wrap; }
  @media (max-width:960px){ .footer-top{ grid-template-columns:1fr 1fr; } }
  @media (max-width:640px){ .footer-top{ grid-template-columns:1fr; } }

  /* ============ CASE REQUEST MODAL ============ */
  .case-modal{
    width:min(92vw,560px); max-width:none; padding:0; border:0; border-radius:28px;
    background:transparent; color:var(--text); overflow:visible;
  }
  .case-modal::backdrop{ background:rgba(8,28,20,.68); backdrop-filter:blur(7px); }
  .case-modal-card{
    position:relative; padding:44px; border:1px solid var(--line); border-radius:28px;
    background:var(--card); box-shadow:0 28px 80px rgba(8,28,20,.28); text-align:left;
  }
  .case-modal-kicker{
    display:block; margin-bottom:16px; color:var(--brass); font-family:var(--font-mono);
    font-size:.74rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  }
  .case-modal h2{ max-width:12ch; margin:0 0 16px; font-size:clamp(1.85rem,1.5rem + 1vw,2.5rem); line-height:1.05; }
  .case-modal p{ max-width:40ch; margin:0 0 26px; color:var(--text-soft); font-size:1rem; line-height:1.65; }
  .case-modal-close{
    position:absolute; top:16px; right:16px; width:40px; height:40px; border:1px solid var(--line);
    border-radius:50%; background:var(--surface); color:var(--text); font-size:1.55rem; line-height:1; cursor:pointer;
  }
  .case-modal-close:hover{ border-color:var(--green); color:var(--green); }
  @media (max-width:560px){
    .case-modal-card{ padding:38px 24px 28px; border-radius:22px; }
    .case-modal .btn{ width:100%; }
  }

  /* ============ CASE STORY MODAL ============ */
  .case-story{
    width:min(94vw,760px); max-width:none; max-height:88vh; padding:0; border:0; border-radius:28px;
    background:transparent; color:var(--text); overflow:visible;
  }
  .case-story::backdrop{ background:rgba(8,28,20,.72); backdrop-filter:blur(7px); }
  .case-story-card{
    position:relative; max-height:88vh; display:flex; flex-direction:column;
    border:1px solid var(--line); border-radius:28px; background:var(--card);
    box-shadow:0 28px 80px rgba(8,28,20,.32); overflow:hidden;
  }
  .case-story-body{
    padding:52px 56px 44px; overflow-y:auto; -webkit-overflow-scrolling:touch;
  }
  .case-story-kicker{
    display:block; margin-bottom:14px; color:var(--brass); font-family:var(--font-mono);
    font-size:.72rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  }
  .case-story-title{
    margin:0 0 12px; font-size:clamp(1.7rem,1.4rem + 1.2vw,2.3rem); line-height:1.12; max-width:20ch;
  }
  .case-story-note{
    margin:0 0 26px; padding-bottom:22px; border-bottom:1px solid var(--line-soft);
    color:var(--text-soft); font-size:.84rem; font-style:italic;
  }
  .case-story-body p.case-story-lead{
    margin:0 0 22px; font-family:var(--font-display); font-weight:700; letter-spacing:-.02em;
    font-size:1.34rem; line-height:1.35; color:var(--brick); max-width:26ch;
  }
  .case-story-body p{ margin:0 0 16px; color:var(--text-soft); font-size:1rem; line-height:1.68; max-width:62ch; }
  .case-story-body p strong{ color:var(--text); }
  .case-story-body h3{
    margin:34px 0 14px; font-size:1.22rem; line-height:1.3; color:var(--text);
  }
  .case-story-list{ margin:0 0 18px; padding:0; list-style:none; display:flex; flex-direction:column; gap:12px; max-width:62ch; }
  .case-story-list li{
    position:relative; padding-left:26px; color:var(--text-soft); font-size:1rem; line-height:1.62;
  }
  .case-story-list li strong{ color:var(--text); }
  ul.case-story-list li::before{
    content:""; position:absolute; left:6px; top:.62em; width:7px; height:7px;
    border-radius:50%; background:var(--brass);
  }
  ol.case-story-list{ counter-reset:story; }
  ol.case-story-list li{ padding-left:34px; counter-increment:story; }
  ol.case-story-list li::before{
    content:counter(story); position:absolute; left:0; top:.1em;
    width:22px; height:22px; border-radius:50%; background:var(--brick-light); color:var(--brick);
    font-family:var(--font-body); font-size:.76rem; font-weight:800; display:grid; place-items:center;
  }
  .case-story-result{
    margin:0 0 18px !important; padding:16px 20px; border-radius:var(--radius-md);
    background:var(--sage-light); border:1px solid var(--line-soft);
    font-size:1.15rem !important; color:var(--ink) !important;
  }
  .case-story-result strong{ color:var(--ink) !important; }
  .case-story-cta{
    margin-top:34px; padding-top:26px; border-top:1px solid var(--line-soft);
  }
  .case-story-cta p{ margin-bottom:16px; color:var(--text); font-weight:600; }
  @media (max-width:640px){
    .case-story{ width:100vw; max-height:100dvh; border-radius:0; }
    .case-story-card{ max-height:100dvh; border-radius:0; border:0; }
    .case-story-body{ padding:56px 22px 34px; }
    .case-story-cta .btn{ width:100%; justify-content:center; }
  }

  /* ============ COOKIE BAR ============ */
  .cookie-bar{
    position:fixed; left:20px; right:20px; bottom:20px; z-index:150; max-width:560px; margin:0 auto;
    background:rgba(32,35,45,.48); color:rgba(245,248,247,.76); padding:18px 20px; border-radius:16px;
    -webkit-backdrop-filter:blur(16px) saturate(120%); backdrop-filter:blur(16px) saturate(120%);
    border:1px solid rgba(255,255,255,.08);
    display:flex; align-items:center; gap:16px; box-shadow:none; font-size:.84rem;
    transform:translateY(140%); transition:transform .4s ease;
  }
  .cookie-bar.is-visible{ transform:translateY(0); }
  .cookie-bar .btn{ flex:none; padding:10px 18px; border:1px solid rgba(255,255,255,.16); background:transparent; color:rgba(245,248,247,.82); font-size:.85rem; }
  .cookie-bar .btn:hover{ background:rgba(255,255,255,.08); }

  /* ============ SUBPAGE: BACK LINK ============ */
  .back-link{ display:inline-flex; align-items:center; gap:8px; font-size:.85rem; color:var(--text-soft); padding:22px 0 0; }
  .back-link svg{ width:14px; height:14px; }
  .back-link:hover{ color:var(--text); }

  /* ============ SUBPAGE: HERO ============ */
  .page-hero{ padding:34px 0 60px; text-align:center; }
  .page-hero .eyebrow{ justify-content:center; margin-bottom:18px; }
  .page-hero h1{ margin-bottom:20px; }
  .page-hero .lede{ margin:0 auto 30px; max-width:60ch; }

  /* Fractional CFO — trust-led hero */
  .cfo-page-hero{ padding:30px 0 76px; text-align:left; overflow:hidden; }
  .cfo-hero-grid{
    display:grid; grid-template-columns:minmax(0,1.14fr) minmax(390px,.72fr);
    gap:clamp(46px,6vw,94px); align-items:center;
  }
  .cfo-hero-copy{ min-width:0; }
  .cfo-page-hero .cfo-hero-copy .eyebrow{ justify-content:flex-start; margin-bottom:22px; }
  .cfo-hero-copy h1{
    max-width:none; margin:0 0 26px; font-size:clamp(3.1rem,4.25vw,4.35rem);
    line-height:.98; letter-spacing:-.05em;
  }
  .cfo-hero-copy h1 span{ display:block; white-space:nowrap; }
  .cfo-page-hero .cfo-hero-copy .lede{ max-width:54ch; margin:0 0 30px; font-size:1rem; }
  .cfo-trust-line{ display:flex; flex-wrap:wrap; gap:10px 20px; margin-top:26px; }
  .cfo-trust-line span{
    display:inline-flex; align-items:center; gap:8px; color:var(--text-soft);
    font-size:.78rem; font-weight:600;
  }
  .cfo-trust-line span::before{
    content:''; width:7px; height:7px; border-radius:50%; background:var(--green);
    box-shadow:0 0 0 4px rgba(59,122,90,.1);
  }
  .cfo-hero-portrait{ width:min(100%,480px); min-width:0; justify-self:end; }
  .cfo-portrait-panel{
    position:relative; min-height:470px; overflow:hidden; isolation:isolate;
    border:1px solid var(--line-soft); border-radius:28px;
    background:#f2f6f3 url("cfo-cash-graph-v2.jpg") center/cover no-repeat;
    box-shadow:0 28px 64px -48px rgba(18,33,29,.5);
  }
  .cfo-portrait-panel::before{
    content:''; position:absolute; z-index:-1; width:230px; height:230px;
    top:-76px; right:-64px; border-radius:50%; background:rgba(184,137,31,.12);
  }
  .cfo-panel-graphic{
    position:absolute; z-index:0; top:76px; left:30px; width:190px; height:128px;
    opacity:.58;
    background:repeating-linear-gradient(to bottom,transparent 0,transparent 31px,rgba(59,122,90,.13) 32px);
  }
  .cfo-panel-graphic i{
    position:absolute; display:block; width:54px; height:3px; border-radius:999px;
    background:var(--green); transform-origin:left center;
  }
  .cfo-panel-graphic i::after{
    content:''; position:absolute; right:-4px; top:-3px; width:9px; height:9px;
    border:2px solid #edf4ef; border-radius:50%; background:var(--green);
  }
  .cfo-panel-graphic i:nth-child(1){ left:8px; top:91px; transform:rotate(-27deg); opacity:.5; }
  .cfo-panel-graphic i:nth-child(2){ left:56px; top:67px; transform:rotate(17deg); opacity:.68; }
  .cfo-panel-graphic i:nth-child(3){ left:107px; top:83px; transform:rotate(-34deg); opacity:.82; }
  .cfo-panel-graphic i:nth-child(4){ left:151px; top:53px; width:35px; transform:rotate(-19deg); }
  .cfo-panel-head{
    position:absolute; z-index:3; top:22px; left:24px; right:24px;
    display:flex; align-items:center; justify-content:space-between; gap:16px;
    font-family:var(--font-mono); font-size:.67rem; font-weight:700;
    letter-spacing:.11em; text-transform:uppercase; color:rgba(243,241,230,.66);
  }
  .cfo-panel-head i{
    display:inline-flex; align-items:center; gap:7px; padding:7px 10px;
    border:1px solid rgba(255,255,255,.12); border-radius:999px;
    font-style:normal; letter-spacing:.06em; color:rgba(243,241,230,.86);
    background:rgba(255,255,255,.06);
  }
  .cfo-panel-head i::before{ content:''; width:7px; height:7px; border-radius:50%; background:#6fc28f; box-shadow:0 0 0 4px rgba(111,194,143,.12); }
  .cfo-portrait-panel > img{
    position:absolute; z-index:1; right:-4%; bottom:-2px; width:88%; height:auto;
    filter:drop-shadow(-14px 18px 20px rgba(18,33,29,.16));
  }
  .cfo-proof-card{
    position:absolute; z-index:3; width:196px; padding:15px 16px;
    border:1px solid rgba(255,255,255,.62); border-radius:17px;
    background:rgba(250,249,244,.92); color:var(--text);
    -webkit-backdrop-filter:blur(16px); backdrop-filter:blur(16px);
    box-shadow:0 18px 44px rgba(0,0,0,.18);
  }
  .cfo-proof-runway,
  .cfo-proof-cash,
  .cfo-proof-assets{ z-index:0; }
  .cfo-proof-card small{ display:block; margin-bottom:5px; color:var(--text-soft); font-size:.68rem; }
  .cfo-proof-card strong{ display:block; font-family:var(--font-display); font-size:.96rem; line-height:1.15; }
  .cfo-proof-cash{ left:20px; top:146px; width:196px; padding:14px 16px 12px; }
  .cfo-proof-topline{ display:flex; align-items:center; justify-content:space-between; gap:8px; }
  .cfo-proof-topline small{ margin:0; }
  .cfo-proof-topline span{
    display:inline-flex; align-items:center; gap:5px; color:var(--green); font:700 .49rem var(--font-mono);
    letter-spacing:.06em; text-transform:uppercase;
  }
  .cfo-proof-topline span::before{
    content:''; width:5px; height:5px; border-radius:50%; background:#54b87c;
    box-shadow:0 0 0 3px rgba(84,184,124,.13);
  }
  .cfo-proof-runway{ left:20px; top:24px; width:196px; padding:13px 16px 12px; }
  .cfo-proof-runway > strong{ margin-top:7px; color:var(--green); font-size:1.02rem; }
  .cfo-proof-runway em{ display:block; margin-top:5px; color:#87908b; font-size:.55rem; font-style:normal; }
  .cfo-runway-meter{ height:5px; margin-top:9px; overflow:hidden; border-radius:999px; background:rgba(59,122,90,.13); }
  .cfo-runway-meter i{ display:block; width:68%; height:100%; border-radius:inherit; background:linear-gradient(90deg,var(--green),#67a77f); }
  .cfo-proof-cash > strong{ margin-top:5px; color:var(--green); font-size:1.18rem; }
  .cfo-proof-cash em{ display:block; margin-top:2px; color:#87908b; font-size:.55rem; font-style:normal; }
  .cfo-proof-assets{ left:20px; top:276px; width:196px; padding:13px 16px 14px; }
  .cfo-assets-view{ display:flex; align-items:center; gap:10px; margin-top:10px; }
  .cfo-assets-donut{
    position:relative; flex:0 0 54px; width:54px; height:54px; display:grid; place-items:center;
    border-radius:50%; background:conic-gradient(var(--green) 0 62%,var(--brass) 62% 88%,#a8b8ae 88% 100%);
  }
  .cfo-assets-donut::before{ content:''; position:absolute; inset:7px; border-radius:50%; background:#faf9f4; }
  .cfo-assets-donut b{ position:relative; z-index:1; color:var(--green-dark); font:700 .55rem var(--font-mono); }
  .cfo-assets-key{ min-width:0; display:grid; gap:5px; }
  .cfo-assets-key span{ display:flex; align-items:center; gap:6px; color:#6f7973; font-size:.52rem; line-height:1; }
  .cfo-assets-key i{ flex:0 0 6px; width:6px; height:6px; border-radius:2px; background:var(--green); }
  .cfo-assets-key span:nth-child(2) i{ background:var(--brass); }
  .cfo-assets-key span:nth-child(3) i{ background:#a8b8ae; }
  .cfo-proof-plan{ right:16px; top:222px; width:150px; }
  .cfo-spark{ display:block; width:100%; height:26px; margin-top:9px; overflow:visible; }
  .cfo-spark-area{ fill:url(#cfoSparkFill); }
  .cfo-spark-line{ fill:none; stroke:var(--green); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
  .cfo-spark-dot{ fill:var(--green); }
  .cfo-spark-halo{ fill:none; stroke:var(--green); animation:cfoSparkPulse 2.4s ease-in-out infinite; }
  @keyframes cfoSparkPulse{ 0%,100%{ r:2.4; opacity:.5; } 50%{ r:6.5; opacity:0; } }
  @media (prefers-reduced-motion:reduce){ .cfo-spark-halo{ animation:none; opacity:0; } }
  .cfo-proof-bars{ display:flex; align-items:flex-end; gap:5px; height:26px; margin-top:10px; }
  .cfo-proof-bars i{ display:block; width:17px; border-radius:4px 4px 1px 1px; background:var(--brass); }
  .cfo-proof-bars i:nth-child(1){ height:11px; opacity:.48; }
  .cfo-proof-bars i:nth-child(2){ height:18px; opacity:.7; }
  .cfo-proof-bars i:nth-child(3){ height:26px; }
  .cfo-portrait-name{
    position:absolute; z-index:4; left:18px; bottom:18px; display:flex; flex-direction:column;
    gap:2px; min-width:168px; padding:12px 15px; border:1px solid rgba(255,255,255,.78);
    border-radius:14px; background:rgba(255,255,255,.88); color:var(--text);
    -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  }
  .cfo-portrait-name strong{ font-family:var(--font-display); font-size:.92rem; }
  .cfo-portrait-name span{ color:var(--text-soft); font-size:.7rem; }

  /* hero — CTA row */
  .cfo-hero-ctas{ display:flex; flex-wrap:wrap; gap:12px; }

  @media (max-width:960px){
    .cfo-hero-grid{ grid-template-columns:1fr; gap:42px; }
    .cfo-hero-copy{ text-align:center; }
    .cfo-page-hero .cfo-hero-copy .eyebrow{ justify-content:center; }
    .cfo-hero-copy h1{ margin-left:auto; margin-right:auto; }
    .cfo-page-hero .cfo-hero-copy .lede{ margin-left:auto; margin-right:auto; }
    .cfo-trust-line{ justify-content:center; }
    .cfo-hero-ctas{ justify-content:center; }
    .cfo-hero-portrait{ width:min(100%,480px); margin:0 auto; justify-self:center; }
  }
  @media (max-width:560px){
    .cfo-page-hero{ padding-top:24px; padding-bottom:58px; }
    .cfo-hero-copy h1{ font-size:clamp(2.55rem,12vw,3.45rem); }
    .cfo-hero-copy h1 span{ white-space:normal; }
    .cfo-portrait-panel{ min-height:470px; border-radius:24px; }
    .cfo-portrait-panel > img{ width:104%; right:-17%; }
    .cfo-panel-graphic{ left:20px; top:62px; transform:scale(.88); transform-origin:left top; opacity:.3; }
    .cfo-proof-deliver{ left:12px; top:62px; width:min(58vw,180px); }
    .cfo-proof-runway{ left:16px; top:22px; width:min(196px,calc(100% - 48px)); }
    .cfo-proof-cash{ left:16px; top:146px; width:min(196px,calc(100% - 48px)); }
    .cfo-proof-assets{ left:16px; top:278px; width:min(196px,calc(100% - 48px)); }
    .cfo-proof-plan{ right:12px; top:202px; width:138px; }
    .cfo-panel-head{ left:16px; right:16px; top:15px; font-size:.5rem; letter-spacing:.08em; }
    .cfo-panel-head > span{ max-width:18ch; }
  }

  /* Business Intelligence — operational hero */
  .bi-page-hero{ padding:28px 0 58px; text-align:left; overflow:hidden; }
  .bi-hero-layout{
    display:grid;
    grid-template-columns:minmax(0,.86fr) minmax(520px,1.14fr);
    gap:clamp(34px,5vw,76px);
    align-items:center;
  }
  .bi-hero-copy h1{ font-size:clamp(52px,5.5vw,86px); line-height:.96; letter-spacing:-.055em; }
  .bi-hero-copy .lede{ margin:0 0 30px; max-width:53ch; }
  .bi-operations{
    position:relative;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    grid-template-rows:34px;
    grid-auto-rows:minmax(108px,auto);
    gap:10px;
    width:100%;
    max-width:650px;
    justify-self:end;
    padding:14px;
    border-radius:26px;
    background:#eef3ef;
    box-shadow:0 28px 70px rgba(18,33,29,.12);
    transform:translate(18px,-38px) rotate(.6deg);
  }
  .bi-operations::before{
    content:'';
    position:absolute;
    width:190px;
    height:190px;
    right:-70px;
    top:-70px;
    border-radius:50%;
    background:rgba(184,137,31,.16);
    filter:blur(2px);
    z-index:-1;
  }
  .bi-operations-head{
    grid-column:1/-1;
    min-height:34px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 6px;
    color:#53605b;
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
  }
  .bi-operations-head small{ color:#829089; font:inherit; font-size:9px; }
  .bi-metric{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    min-width:0;
    padding:15px;
    border:1px solid rgba(59,122,90,.14);
    border-radius:20px;
    background:rgba(255,255,255,.9);
    box-shadow:0 8px 22px rgba(18,33,29,.05);
    overflow:hidden;
    opacity:0;
    animation:
      biMetricReveal .72s var(--reveal-delay,.12s) cubic-bezier(.22,1,.36,1) both,
      biMetricFloat var(--float-speed,5.4s) calc(var(--reveal-delay,.12s) + .9s) ease-in-out infinite alternate;
  }
  .bi-metric:nth-of-type(1){ --reveal-delay:.16s; --float-speed:5.8s; --float-y:-3px; }
  .bi-metric:nth-of-type(2){ --reveal-delay:.26s; --float-speed:5.1s; --float-y:2px; }
  .bi-metric:nth-of-type(3){ --reveal-delay:.36s; --float-speed:5.6s; --float-y:-2px; }
  .bi-metric:nth-of-type(4){ --reveal-delay:.46s; --float-speed:5.3s; --float-y:3px; }
  .bi-metric:nth-of-type(5){ --reveal-delay:.56s; --float-speed:5.9s; --float-y:-3px; }
  .bi-metric:nth-of-type(6){ --reveal-delay:.66s; --float-speed:5.2s; --float-y:2px; }
  .bi-metric:nth-of-type(7){ --reveal-delay:.76s; --float-speed:5.7s; --float-y:-2px; }
  .bi-metric:nth-of-type(8){ --reveal-delay:.86s; --float-speed:5.4s; --float-y:3px; }
  .bi-metric::after{
    content:'';
    position:absolute;
    width:70px;
    height:70px;
    right:-28px;
    bottom:-34px;
    border-radius:50%;
    background:var(--metric-glow,#dfeae3);
    opacity:.75;
  }
  .bi-metric-icon{
    position:absolute;
    top:13px;
    right:13px;
    display:grid;
    place-items:center;
    width:34px;
    height:34px;
    border-radius:11px;
    color:var(--metric-color,#3B7A5A);
    background:var(--metric-bg,#e8f1eb);
  }
  .bi-metric-icon svg{ width:20px; height:20px; }
  .bi-metric-label{
    position:relative;
    z-index:1;
    margin-bottom:3px;
    color:#5e6964;
    font-size:12px;
    line-height:1.2;
  }
  .bi-metric strong{
    position:relative;
    z-index:1;
    color:var(--metric-color,#06462A);
    font-size:clamp(25px,2.2vw,36px);
    line-height:1;
    letter-spacing:-.04em;
  }
  .bi-metric small{
    position:relative;
    z-index:1;
    margin-top:6px;
    color:#87908c;
    font-size:10px;
    line-height:1.25;
  }
  .bi-metric-assets{
    grid-column:span 2;
    grid-row:span 2;
    justify-content:center;
    min-height:226px;
    padding:22px;
    --metric-color:#06462A;
  }
  .bi-metric-assets .bi-metric-icon{ left:20px; right:auto; width:40px; height:40px; }
  .bi-metric-assets strong{ font-size:clamp(32px,2.7vw,44px); }
  .bi-asset-chart{
    position:absolute;
    left:20px;
    right:20px;
    bottom:18px;
    width:calc(100% - 40px);
    height:54px;
    overflow:visible;
  }
  .bi-chart-grid{ fill:none; stroke:#e2eae5; stroke-width:1; }
  .bi-chart-area{ fill:rgba(59,122,90,.13); opacity:0; animation:biChartAreaIn .8s 1.3s ease-out forwards; }
  .bi-chart-line{
    fill:none; stroke:#3B7A5A; stroke-width:3; stroke-linecap:round; stroke-linejoin:round;
    stroke-dasharray:320; stroke-dashoffset:320; animation:biChartDraw 1.65s .82s cubic-bezier(.22,1,.36,1) forwards;
  }
  .bi-asset-chart circle{
    fill:#B8891F; stroke:#fff; stroke-width:2; transform-box:fill-box; transform-origin:center;
    opacity:0; animation:biChartPointIn .45s 2.22s cubic-bezier(.34,1.56,.64,1) forwards;
  }
  .bi-metric-technical{ --metric-color:#2e6470; --metric-bg:#e7f0f2; --metric-glow:#c7dfe3; }
  .bi-metric-powerbi{ --metric-color:#b17b05; --metric-bg:#fff4d9; --metric-glow:#f4d88f; }
  .bi-metric-openings{ --metric-color:#B24A3B; --metric-bg:#fae9e5; --metric-glow:#ebbbb2; }
  .bi-metric-coverage{ --metric-color:#3B7A5A; }
  .bi-metric-maintenance{ --metric-color:#755f24; --metric-bg:#f4eedc; --metric-glow:#e1d49d; }
  .bi-metric-uptime{ --metric-color:#267a4d; --metric-bg:#e5f3ea; --metric-glow:#b9dec7; }
  .bi-metric-repairs{ grid-column:span 2; --metric-color:#2e6470; --metric-bg:#e7f0f2; --metric-glow:#c7dfe3; }
  .bi-power-icon{ display:flex; align-items:flex-end; justify-content:center; gap:2px; padding:8px; }
  .bi-power-icon i{ display:block; width:3px; border-radius:2px; background:currentColor; }
  .bi-power-icon i:nth-child(1){ height:7px; opacity:.55; }
  .bi-power-icon i:nth-child(2){ height:12px; opacity:.7; }
  .bi-power-icon i:nth-child(3){ height:17px; opacity:.85; }
  .bi-power-icon i:nth-child(4){ height:21px; }
  .bi-power-icon i{ transform-origin:center bottom; animation:biPowerBar 2.3s ease-in-out infinite alternate; }
  .bi-power-icon i:nth-child(2){ animation-delay:.15s; }
  .bi-power-icon i:nth-child(3){ animation-delay:.3s; }
  .bi-power-icon i:nth-child(4){ animation-delay:.45s; }

  @keyframes biMetricReveal{
    from{ opacity:0; transform:translateY(18px) scale(.965); }
    to{ opacity:1; transform:translateY(0) scale(1); }
  }
  @keyframes biMetricFloat{
    from{ transform:translateY(0); }
    to{ transform:translateY(var(--float-y,-2px)); }
  }
  @keyframes biChartDraw{ to{ stroke-dashoffset:0; } }
  @keyframes biChartAreaIn{ to{ opacity:1; } }
  @keyframes biChartPointIn{
    from{ opacity:0; transform:scale(.2); }
    to{ opacity:1; transform:scale(1); }
  }
  @keyframes biPowerBar{
    from{ transform:scaleY(.72); }
    to{ transform:scaleY(1); }
  }

  @media (max-width:1120px){
    .bi-hero-layout{ grid-template-columns:minmax(0,.8fr) minmax(490px,1.2fr); gap:28px; }
    .bi-hero-copy h1{ font-size:clamp(48px,5.2vw,70px); }
    .bi-metric{ padding:14px; }
  }
  @media (max-width:900px){
    .bi-page-hero{ padding-top:28px; }
    .bi-hero-layout{ grid-template-columns:1fr; }
    .bi-hero-copy{ text-align:center; }
    .bi-hero-copy .lede{ margin-left:auto; margin-right:auto; }
    .bi-operations{ width:min(100%,650px); margin:10px auto 0; justify-self:center; transform:none; }
  }
  @media (max-width:600px){
    .bi-hero-copy h1{ font-size:clamp(44px,14vw,62px); }
    .bi-operations{ grid-template-columns:repeat(2,minmax(0,1fr)); padding:12px; border-radius:24px; }
    .bi-metric-assets{ min-height:226px; }
    .bi-metric{ min-height:126px; }
  }
  @media (prefers-reduced-motion:reduce){
    .bi-metric,
    .bi-chart-area,
    .bi-chart-line,
    .bi-asset-chart circle,
    .bi-power-icon i{ animation:none!important; }
    .bi-metric,
    .bi-chart-area,
    .bi-asset-chart circle{ opacity:1; transform:none; }
    .bi-chart-line{ stroke-dashoffset:0; }
  }

  /* Business Intelligence — plain diagnostic illustrations */
  .bi-look-grid{
    grid-auto-rows:auto;
    gap:18px;
    padding:0;
  }
  .bi-look-card{
    min-height:330px;
    aspect-ratio:auto;
    justify-content:flex-start;
    align-items:stretch;
    gap:24px;
    padding:22px;
    text-align:left;
    background:#f8faf8;
    border:1px solid rgba(6,70,42,.13);
    box-shadow:0 18px 48px -38px rgba(18,33,29,.36);
  }
  .bi-look-card:hover{ transform:translateY(-3px); }
  .bi-look-visual{
    position:relative;
    display:grid;
    place-items:center;
    width:100%;
    height:178px;
    border-radius:20px;
    color:#06462A;
    background:#edf4ef;
    overflow:hidden;
  }
  .bi-look-visual::before{
    display:none;
  }
  .bi-look-visual::after{
    display:none;
  }
  .bi-look-visual svg{ position:relative; z-index:1; width:168px; height:112px; overflow:visible; transform:translateY(-5px); }
  .bi-look-visual img{
    position:relative;
    z-index:1;
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    padding:4px 7px 8px;
  }
  .bi-look-visual svg > *{
    stroke:currentColor;
    stroke-width:3;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
  .bi-look-visual .accent{ stroke:#B8891F; stroke-width:5; }
  .bi-look-visual .accent-fill{ fill:#B8891F; stroke:#B8891F; }
  .bi-look-visual .soft{ stroke:#90b29c; }
  .bi-look-visual .soft-fill{ fill:#dce8df; stroke:#90b29c; }
  .bi-look-visual .paper-fill{ fill:rgba(255,255,255,.78); }
  .bi-look-visual .fill-green{ fill:#3B7A5A; stroke:#3B7A5A; }
  .bi-look-visual .fill-gold{ fill:#B8891F; stroke:#B8891F; }
  .bi-look-visual .fill-red{ fill:#B24A3B; stroke:#B24A3B; }
  .bi-look-visual .thin{ stroke-width:1.7; }
  .bi-look-visual .dash{ stroke-dasharray:5 6; }
  .bi-look-visual .red-line{ stroke:#B24A3B; stroke-width:3.5; }
  .bi-look-visual .route{ stroke:#755f24; stroke-width:3.5; }
  .bi-look-card-red .bi-look-visual{ color:#8f392f; background:#f8edeb; }
  .bi-look-card-red .bi-look-visual .accent-fill{ fill:#B24A3B; stroke:#B24A3B; }
  .bi-look-card-gold .bi-look-visual{ color:#755f24; background:#f8f3e7; }
  .bi-look-visual .mark{ stroke:#fff; stroke-width:3; }
  .bi-look-copy{ margin-top:auto; }
  .bi-look-card h3{
    margin:0 0 8px;
    color:var(--text);
    font-size:1.25rem;
    line-height:1.15;
    text-shadow:none;
  }
  .bi-look-card p{
    margin:0;
    color:var(--text-soft);
    font-size:.9rem;
    line-height:1.5;
    text-shadow:none;
  }
  @media (max-width:900px){
    .bi-look-card{ min-height:310px; }
  }
  @media (max-width:560px){
    .bi-look-grid{ gap:14px; }
    .bi-look-card{ min-height:286px; aspect-ratio:auto; padding:18px; gap:18px; }
    .bi-look-visual{ height:156px; border-radius:17px; }
    .bi-look-visual svg{ width:146px; height:98px; }
  }

  /* ============ MONEY X-RAY: THREE CONNECTED REPORTS ============ */
  .reports-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
  .report-card{
    min-height:390px; display:flex; flex-direction:column; padding:30px 28px 26px;
    border:1px solid rgba(6,70,42,.15); border-radius:28px; background:#fff;
    box-shadow:0 22px 54px -38px rgba(6,70,42,.36);
  }
  .report-card-pl{ background:linear-gradient(155deg,#f7fbf8,#edf5ef); }
  .report-card-cf{ background:linear-gradient(155deg,#fff,#faf5e8); }
  .report-card-bs{ background:linear-gradient(155deg,#f8faf8,#eef1ef); }
  .report-card h3{ margin-bottom:18px; font-size:1.45rem; line-height:1.1; }
  .report-card p{ margin-bottom:13px; color:var(--text-soft); font-size:.91rem; line-height:1.58; }
  .report-tags{ display:flex; flex-wrap:wrap; gap:7px; margin-top:auto; padding-top:18px; }
  .report-tags span{ padding:7px 10px; border:1px solid rgba(6,70,42,.13); border-radius:999px; background:rgba(255,255,255,.72); color:var(--ink); font-size:.67rem; font-weight:650; }
  .reports-connection{ max-width:960px; margin:28px auto 0; padding:28px 34px 30px; border-top:1px solid var(--line); text-align:center; }
  .reports-connection p{ color:var(--text-soft); font-size:.96rem; line-height:1.65; }
  .reports-connection strong{ color:var(--text); }
  .reports-capital-block{ max-width:980px; margin:22px auto 0; text-align:left; }
  .reports-capital-cards{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
  .reports-capital-card{
    min-height:74px; display:flex; align-items:center; gap:12px;
    padding:16px 18px; background:rgba(243,247,244,.7);
    border:1px solid rgba(59,122,90,.18); border-radius:16px;
    -webkit-backdrop-filter:blur(18px) saturate(135%); backdrop-filter:blur(18px) saturate(135%);
    box-shadow:0 16px 34px -28px rgba(18,33,29,.45),inset 0 1px rgba(255,255,255,.8);
  }
  .reports-capital-card::before{ content:""; width:8px; height:8px; flex:none; border-radius:50%; background:var(--green); box-shadow:0 0 0 5px rgba(59,122,90,.08); }
  .reports-capital-question{ max-width:none; margin:0; color:var(--text); font-family:var(--font-body); font-size:clamp(.78rem,.9vw,.9rem); font-weight:500; line-height:1.3; letter-spacing:-.005em; white-space:nowrap; }
  @media (max-width:900px){
    .reports-grid{ grid-template-columns:1fr; }
    .report-card{ min-height:0; }
  }
  @media (max-width:560px){
    .report-card{ padding:25px 22px 23px; border-radius:22px; }
    .reports-connection{ padding:24px 0 0; }
    .reports-capital-cards{ grid-template-columns:1fr; }
    .reports-capital-card{ min-height:66px; padding:14px 16px; }
    .reports-capital-question{ white-space:normal; }
  }

  /* ============ MONEY X-RAY HERO ============ */
  .money-hero{ padding:38px 0 84px; text-align:center; overflow:hidden; }
  .money-hero-grid{ position:relative; min-height:510px; }
  .money-hero-copy{ position:relative; z-index:2; max-width:680px; margin-inline:auto; padding-top:44px; text-align:center; }
  .money-hero .money-hero-copy .eyebrow{
    justify-content:center; gap:12px; margin-bottom:26px;
    color:var(--text);
    font-size:clamp(.92rem,.82rem + .32vw,1.06rem); font-weight:700; letter-spacing:.17em;
  }
  .money-hero .money-hero-copy .eyebrow::before{ display:none; }
  .money-hero .money-hero-copy h1{ max-width:13ch; margin:0 auto 24px; font-size:clamp(2.85rem, 2.05rem + 2.45vw, 4.2rem); line-height:.97; text-wrap:balance; }
  .money-hero .money-hero-copy .lede{ max-width:44ch; margin:0 auto 28px; font-size:1rem; }
  .money-hero-visual{ position:absolute; z-index:1; inset:0; min-height:510px; isolation:isolate; text-align:left; }
  .money-hero-visual::before{
    content:""; position:absolute; inset:8% -12% 0 3%; z-index:-1; border-radius:50%;
    background:radial-gradient(circle at 55% 48%, rgba(59,122,90,.15), rgba(217,174,79,.08) 38%, transparent 69%);
  }
  .money-flow-card, .money-profit-card{
    position:absolute; background:rgba(255,255,255,.94); border:1px solid rgba(59,122,90,.22);
    box-shadow:0 24px 70px rgba(18,33,29,.14); backdrop-filter:blur(12px);
  }
  .money-flow-card{
    width:360px; top:34px; left:-34px; padding:22px 22px 24px; border-radius:38px 22px 34px 18px; scale:.79; rotate:-4deg;
    transform-origin:left top; animation:money-card-spring-left 1050ms var(--spring-rise) both;
  }
  .money-profit-card{
    width:340px; top:74px; right:-36px; padding:22px 22px 23px; border-radius:20px 38px 18px 32px; scale:.82; rotate:4deg;
    transform-origin:right top; animation:money-card-spring-right 1100ms 120ms var(--spring-rise) both;
  }
  .money-card-head{ display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:22px; font-size:.78rem; font-weight:750; letter-spacing:.08em; text-transform:uppercase; color:var(--text-soft); }
  .money-live{ display:inline-flex; align-items:center; gap:6px; color:var(--green); font-size:.7rem; }
  .money-live i{ width:7px; height:7px; border-radius:50%; background:#2fa66d; box-shadow:0 0 0 5px rgba(47,166,109,.12); }
  .money-period{ display:inline-grid; place-items:center; min-width:36px; height:26px; border-radius:20px; background:var(--paper-2); color:var(--green); }
  .money-waterfall{ position:relative; display:grid; grid-template-columns:repeat(5,1fr); gap:12px; height:145px; padding-top:22px; background:repeating-linear-gradient(0deg, transparent 0 31px, rgba(59,122,90,.075) 31px 32px); }
  .money-waterfall::after{ content:""; position:absolute; left:0; right:0; bottom:24px; height:1px; background:var(--line); }
  .money-waterfall-column{ position:relative; z-index:1; display:flex; flex-direction:column; justify-content:flex-end; align-items:center; min-width:0; }
  .money-waterfall-column i{ display:block; flex:none; width:70%; height:var(--bar-height,40%); min-height:22px; border-radius:8px 8px 3px 3px; background:var(--green); box-shadow:inset 0 1px rgba(255,255,255,.35); }
  .money-waterfall-column small{ height:24px; padding-top:7px; color:var(--text-soft); font-size:.62rem; white-space:nowrap; }
  .money-waterfall-value{ margin-bottom:5px; font-size:.64rem; font-weight:750; color:var(--green); }
  .money-waterfall-out i{ background:var(--brick); }
  .money-waterfall-out .money-waterfall-value{ color:var(--brick); }
  .money-waterfall-total i{ background:var(--ink); }
  .money-waterfall-total .money-waterfall-value{ color:var(--text); }
  .money-flow-outcome{ display:flex; justify-content:space-between; align-items:center; margin-top:16px; padding:13px 16px; border-radius:14px; background:rgba(217,174,79,.14); color:var(--text-soft); font-size:.8rem; }
  .money-flow-outcome strong{ color:var(--green); font-size:1rem; }
  .money-profit-body{ display:grid; grid-template-columns:130px 1fr; gap:22px; align-items:center; }
  .money-profit-ring{
    width:126px; aspect-ratio:1; display:grid; place-items:center; border-radius:50%;
    background:conic-gradient(var(--green) 0 54%, var(--brass) 54% 83%, #cbd8ce 83% 100%); position:relative;
  }
  .money-profit-ring::after{ content:""; position:absolute; inset:18px; border-radius:50%; background:#fff; }
  .money-profit-ring span{ position:relative; z-index:1; display:grid; text-align:center; }
  .money-profit-ring strong{ color:var(--green); font-size:1.5rem; line-height:1; letter-spacing:-.05em; }
  .money-profit-ring small{ margin-top:4px; color:var(--text-soft); font-size:.58rem; text-transform:uppercase; letter-spacing:.06em; }
  .money-profit-legend{ display:grid; gap:12px; }
  .money-profit-legend div{ display:grid; grid-template-columns:8px 1fr auto; gap:8px; align-items:center; font-size:.68rem; }
  .money-profit-legend i{ width:8px; height:8px; border-radius:50%; background:var(--green); }
  .money-profit-legend div:nth-child(2) i{ background:var(--brass); }
  .money-profit-legend div:nth-child(3) i{ background:#cbd8ce; }
  .money-profit-legend span{ color:var(--text-soft); }
  .money-profit-legend div:nth-child(1) strong{ color:var(--green); }
  .money-profit-legend div:nth-child(2) strong{ color:var(--brass); }
  .money-profit-legend div:nth-child(3) strong{ color:var(--text-soft); }
  .money-profit-note{ display:flex; justify-content:space-between; gap:14px; margin-top:20px; padding:12px 14px; border-radius:13px; background:var(--sage-light); color:var(--text-soft); font-size:.68rem; }
  .money-profit-note strong{ color:var(--green); }
  .money-conversion-card, .money-assets-card, .money-driver-card{
    position:absolute; z-index:3; padding:17px 17px 15px; border-radius:20px;
    background:rgba(255,255,255,.97); border:1px solid rgba(59,122,90,.22);
    box-shadow:0 22px 60px rgba(18,33,29,.15); backdrop-filter:blur(12px);
  }
  .money-conversion-card{ width:205px; left:16px; bottom:142px; scale:.74; rotate:-7deg; border-radius:28px 18px 26px 15px; transform-origin:left bottom; animation:money-card-spring-left 1120ms 230ms var(--spring-rise) both; }
  .money-assets-card{ width:220px; left:86px; bottom:-2px; scale:.74; rotate:6deg; border-radius:17px 30px 18px 26px; transform-origin:left bottom; animation:money-card-spring-up 1150ms 380ms var(--spring-rise) both; }
  .money-driver-card{ width:230px; right:8px; bottom:142px; scale:.74; rotate:7deg; border-radius:18px 30px 24px 16px; transform-origin:right bottom; animation:money-card-spring-right 1120ms 280ms var(--spring-rise) both; }
  .money-mini-head{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:12px; color:var(--text-soft); font-size:.62rem; font-weight:750; letter-spacing:.07em; text-transform:uppercase; }
  .money-mini-head em{ color:var(--green); font-style:normal; letter-spacing:0; }
  .money-conversion-value{ display:flex; align-items:baseline; gap:6px; margin-bottom:12px; }
  .money-conversion-value strong{ color:var(--green); font-size:2rem; line-height:1; letter-spacing:-.05em; }
  .money-conversion-value span{ color:var(--text-soft); font-size:.68rem; }
  .money-conversion-value small{ margin-left:auto; color:var(--green); font-size:.54rem; font-weight:700; }
  .money-conversion-series{ display:grid; gap:6px; }
  .money-conversion-series div{ display:grid; grid-template-columns:46px 1fr 25px; gap:7px; align-items:center; font-size:.52rem; }
  .money-conversion-series span{ color:var(--text-soft); }
  .money-conversion-series i{ height:6px; overflow:hidden; border-radius:999px; background:var(--sage-light); }
  .money-conversion-series b{ display:block; width:var(--conversion); height:100%; border-radius:inherit; background:linear-gradient(90deg,var(--brass),var(--green)); }
  .money-conversion-series strong{ text-align:right; color:var(--text); }
  .money-conversion-series div:nth-child(1) b{ background:var(--brick); }
  .money-conversion-series div:nth-child(1) strong{ color:var(--brick); }
  .money-conversion-series div:nth-child(2) b{ background:var(--brass); }
  .money-conversion-series div:nth-child(2) strong{ color:var(--brass); }
  .money-conversion-series div:nth-child(3) b{ background:var(--green); }
  .money-conversion-series div:nth-child(3) strong{ color:var(--green); }
  .money-assets-bars{ position:relative; height:72px; display:flex; align-items:flex-end; gap:8px; padding:5px 4px 15px; border-bottom:1px solid var(--line); background:repeating-linear-gradient(0deg, transparent 0 19px, rgba(59,122,90,.07) 19px 20px); }
  .money-assets-bars i{ position:relative; display:block; flex:1 1 0; height:var(--asset); min-height:12px; border-radius:5px 5px 1px 1px; background:linear-gradient(180deg,var(--brass-light),var(--green)); }
  .money-assets-bars i:nth-child(2){ background:linear-gradient(180deg,#e3bf68,var(--brass)); }
  .money-assets-bars i:nth-child(3){ background:linear-gradient(180deg,#7cab8b,var(--green)); }
  .money-assets-bars i:nth-child(4){ background:linear-gradient(180deg,var(--green),var(--ink)); }
  .money-assets-bars b{ position:absolute; left:50%; bottom:calc(100% + 3px); transform:translateX(-50%); color:var(--green); font:700 .46rem/1 var(--font-mono); white-space:nowrap; }
  .money-assets-bars i:nth-child(2) b{ color:var(--brass); }
  .money-assets-bars i:nth-child(4) b{ color:var(--ink); }
  .money-assets-bars small{ position:absolute; left:50%; top:calc(100% + 4px); transform:translateX(-50%); color:var(--text-soft); font:normal .48rem/1 var(--font-mono); }
  .money-assets-result{ display:flex; justify-content:space-between; margin-top:10px; color:var(--text-soft); font-size:.59rem; }
  .money-assets-result strong{ color:var(--green); font-size:.72rem; }
  .money-driver-row{ display:grid; grid-template-columns:54px 1fr 34px; gap:8px; align-items:center; padding:7px 0; border-top:1px solid var(--line-soft); font-size:.58rem; }
  .money-driver-row span{ color:var(--text-soft); }
  .money-driver-row i{ height:6px; overflow:hidden; border-radius:999px; background:var(--sage-light); }
  .money-driver-row i b{ display:block; width:var(--driver); height:100%; border-radius:inherit; background:var(--green); }
  .money-driver-row strong{ color:var(--green); text-align:right; }
  .money-trend-card{
    position:absolute; z-index:3; width:210px; right:96px; bottom:-4px; padding:18px 18px 16px; scale:.74; rotate:-6deg;
    transform-origin:right bottom; animation:money-card-spring-up 1180ms 430ms var(--spring-rise) both;
    border-radius:30px 17px 26px 18px; background:rgba(255,255,255,.97); border:1px solid rgba(59,122,90,.22);
    box-shadow:0 22px 60px rgba(18,33,29,.15); backdrop-filter:blur(12px);
  }
  .money-trend-head{ display:flex; align-items:center; justify-content:space-between; gap:10px; color:var(--text-soft); font-size:.62rem; font-weight:750; letter-spacing:.06em; text-transform:uppercase; }
  .money-trend-head em{ color:var(--green); font-style:normal; letter-spacing:0; }
  .money-trend-chart{ position:relative; height:82px; margin-top:12px; border-bottom:1px solid var(--line); background:repeating-linear-gradient(0deg, transparent 0 26px, rgba(59,122,90,.08) 26px 27px); overflow:hidden; }
  .money-trend-chart::before{ content:""; position:absolute; inset:10px 0 0; background:linear-gradient(180deg, rgba(59,122,90,.22), rgba(59,122,90,.02)); clip-path:polygon(0 72%,27% 58%,50% 64%,73% 37%,100% 18%,100% 100%,0 100%); }
  .money-trend-segment{ position:absolute; z-index:2; display:block; height:2px; border-radius:2px; background:var(--green); transform-origin:left center; }
  .money-trend-s1{ width:25%; left:4%; top:72%; transform:rotate(-18deg); }
  .money-trend-s2{ width:24%; left:27%; top:58%; transform:rotate(8deg); }
  .money-trend-s3{ width:27%; left:50%; top:64%; transform:rotate(-31deg); }
  .money-trend-s4{ width:25%; left:73%; top:37%; transform:rotate(-25deg); }
  .money-trend-chart b{ position:absolute; z-index:3; left:var(--x); top:var(--y); width:7px; height:7px; border:2px solid #fff; border-radius:50%; background:var(--green); transform:translate(-50%,-50%); box-shadow:0 0 0 1px var(--green); }
  .money-trend-axis{ display:flex; justify-content:space-between; margin-top:6px; color:var(--text-soft); font-size:.54rem; }
  @keyframes money-card-spring{
    0%{ opacity:0; transform:translate3d(80px,24px,0) scale(.78) rotate(2.5deg); filter:blur(7px); }
    64%{ opacity:1; transform:translate3d(-8px,-4px,0) scale(1.025) rotate(-.4deg); filter:blur(0); }
    82%{ transform:translate3d(3px,2px,0) scale(.992); }
    100%{ opacity:1; transform:none; filter:blur(0); }
  }
  @keyframes money-card-spring-left{
    0%{ opacity:0; transform:translate3d(-110px,34px,0) scale(.72) rotate(-12deg); filter:blur(8px); }
    62%{ opacity:1; transform:translate3d(10px,-6px,0) scale(1.035) rotate(1deg); filter:blur(0); }
    82%{ transform:translate3d(-3px,2px,0) scale(.99); }
    100%{ opacity:1; transform:none; filter:blur(0); }
  }
  @keyframes money-card-spring-right{
    0%{ opacity:0; transform:translate3d(110px,30px,0) scale(.72) rotate(12deg); filter:blur(8px); }
    62%{ opacity:1; transform:translate3d(-10px,-6px,0) scale(1.035) rotate(-1deg); filter:blur(0); }
    82%{ transform:translate3d(3px,2px,0) scale(.99); }
    100%{ opacity:1; transform:none; filter:blur(0); }
  }
  @keyframes money-card-spring-up{
    0%{ opacity:0; transform:translate3d(0,105px,0) scale(.7) rotate(8deg); filter:blur(8px); }
    62%{ opacity:1; transform:translate3d(0,-10px,0) scale(1.04) rotate(-1deg); filter:blur(0); }
    82%{ transform:translate3d(0,3px,0) scale(.99); }
    100%{ opacity:1; transform:none; filter:blur(0); }
  }
  @media (max-width:1180px){
    .money-hero-grid{ min-height:0; }
    .money-hero-copy{ padding-top:18px; }
    .money-hero-visual{ width:min(100%, 760px); min-height:0; position:relative; inset:auto; margin:42px auto 0; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
    .money-flow-card, .money-profit-card, .money-conversion-card, .money-assets-card, .money-driver-card, .money-trend-card{ position:relative; inset:auto; width:auto; scale:1; rotate:0deg; transform-origin:center; }
  }
  @media (max-width:620px){
    .money-hero{ padding-bottom:58px; }
    .money-hero .money-hero-copy h1{ font-size:clamp(2.5rem, 11vw, 3.35rem); }
    .money-hero-visual{ display:none; }
    .money-flow-card{ width:100%; padding:21px 17px 23px; }
    .money-profit-card{ width:100%; padding:21px 18px; }
    .money-waterfall{ gap:7px; }
    .money-waterfall-column small{ font-size:.54rem; }
    .money-profit-body{ grid-template-columns:112px 1fr; gap:16px; }
    .money-profit-ring{ width:108px; }
  }
  @media (prefers-reduced-motion:reduce){
    .money-flow-card, .money-profit-card, .money-conversion-card, .money-assets-card, .money-driver-card, .money-trend-card{ animation:none; }
  }

  /* ============ COST COMPARISON (invoice layout) ============ */
  .cost-head{
    display:grid; grid-template-columns:1.05fr 1fr; gap:24px 56px; align-items:start;
    padding-bottom:30px; margin-bottom:36px; border-bottom:1px solid var(--line);
  }
  .cost-head-title .eyebrow{ margin-bottom:16px; }
  .cost-head-copy{ display:grid; gap:14px; padding-top:4px; }
  .cost-head-copy .lede strong{ color:var(--text); }

  .cost-grid{
    list-style:none; margin:0; padding:0;
    display:grid; grid-template-columns:repeat(4,1fr); gap:14px;
  }
  .cost-card{
    display:flex; flex-direction:column; gap:14px;
    padding:24px 22px 26px; border-radius:var(--radius-md);
    background:var(--glass-bg);
    -webkit-backdrop-filter:var(--glass-blur);
    backdrop-filter:var(--glass-blur);
    border:1px solid var(--glass-brd);
    box-shadow:var(--glass-shadow);
  }
  .cost-card-label{
    font-family:var(--font-body); font-weight:700; font-size:.7rem; letter-spacing:.075em;
    text-transform:uppercase; color:var(--brass);
  }
  .cost-card-value{
    margin-top:auto; font-family:var(--font-display); font-weight:750;
    font-size:1.32rem; line-height:1.15; letter-spacing:-.025em; color:var(--text);
    font-variant-numeric:tabular-nums lining-nums;
  }
  .cost-card-value small{
    display:block; margin-top:7px; font-family:var(--font-body); font-weight:500;
    font-size:.76rem; letter-spacing:.02em; color:var(--text-soft);
    text-transform:none; font-variant-numeric:normal;
  }

  .cost-compare{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:14px; }
  .cost-verdict{
    display:flex; flex-direction:column; gap:8px;
    padding:30px 32px 32px; border-radius:var(--radius-lg);
  }
  .cost-verdict-high{ background:var(--brick-light); border:1px solid rgba(178,74,59,.22); }
  .cost-verdict-low{ background:var(--sage-light); border:1px solid rgba(59,122,90,.22); }
  .cost-verdict-tag{
    font-family:var(--font-body); font-weight:700; font-size:.7rem; letter-spacing:.075em;
    text-transform:uppercase; color:var(--text-soft);
  }
  .cost-verdict-figure{
    font-family:var(--font-display); font-weight:750; line-height:1.05;
    font-size:clamp(1.7rem,1.3rem + 1.5vw,2.3rem); letter-spacing:-.035em;
    font-variant-numeric:tabular-nums lining-nums;
  }
  .cost-verdict-high .cost-verdict-figure{ color:var(--brick); }
  .cost-verdict-low .cost-verdict-figure{ color:var(--sage); }
  .cost-verdict-unit{
    font-family:var(--font-body); font-size:.76rem; font-weight:650; letter-spacing:.05em;
    text-transform:uppercase; color:var(--text-soft);
  }
  .cost-verdict-note{
    margin:12px 0 0; padding-top:14px; border-top:1px solid rgba(27,36,32,.12);
    font-size:.9rem; line-height:1.5; color:var(--text-soft); max-width:34ch;
  }

  @media (max-width:960px){
    .cost-head{ grid-template-columns:1fr; align-items:start; gap:18px; }
    .cost-grid{ grid-template-columns:1fr 1fr; }
  }
  @media (max-width:640px){
    .cost-grid{ grid-template-columns:1fr; }
    .cost-compare{ grid-template-columns:1fr; }
    .cost-verdict{ padding:24px 22px 26px; }
  }

  /* ============ RED FLAGS ============ */
  .redflag-panel{
    display:grid; grid-template-columns:.9fr 1.1fr; gap:32px 56px;
    background:var(--brick); color:var(--text-on-ink);
    border-radius:var(--radius-lg); padding:52px 56px;
  }
  .redflag-tag{
    display:block; margin-bottom:16px; font-family:var(--font-mono); font-size:.7rem;
    letter-spacing:.16em; text-transform:uppercase; color:rgba(243,241,230,.72);
  }
  .redflag-head h2{ color:var(--text-on-ink); }
  .redflag-visual{
    display:block; width:min(72%,280px); height:auto; margin:34px auto 0;
    transform:translateX(-4%) rotate(-6deg);
    filter:brightness(1.08) saturate(1.08) drop-shadow(0 22px 22px rgba(71,13,8,.3));
  }
  .redflag-list{ list-style:none; margin:0; padding:0; display:grid; gap:2px; }
  .redflag-list li{
    display:grid; grid-template-columns:auto 1fr; gap:14px; align-items:start;
    padding:14px 0; border-bottom:1px solid rgba(243,241,230,.16);
    font-size:.98rem; line-height:1.5; color:rgba(243,241,230,.94);
  }
  .redflag-list li:last-child{ border-bottom:none; }
  .redflag-list svg{ width:19px; height:19px; margin-top:2px; color:var(--brass-light); flex:none; }
  .redflag-note{
    margin:24px 0 0; padding:18px 20px;
    border:1px solid rgba(243,241,230,.12); border-radius:16px;
    background:rgba(78,20,14,.18);
    font-size:.95rem; line-height:1.6; color:rgba(243,241,230,.9); max-width:56ch;
  }
  @media (max-width:900px){
    .redflag-panel{ grid-template-columns:1fr; gap:24px; padding:40px 32px; }
    .redflag-head{ display:grid; grid-template-columns:1fr auto; column-gap:28px; align-items:center; }
    .redflag-head .redflag-tag{ grid-column:1/-1; }
    .redflag-visual{ grid-column:2; grid-row:2; width:150px; margin:0; transform:rotate(-5deg); }
  }
  @media (max-width:560px){
    .redflag-panel{ padding:32px 22px; border-radius:var(--radius-md); }
    .redflag-head{ display:block; }
    .redflag-visual{ width:140px; margin:24px auto 0; }
  }

  /* ============ BOLT GRID (role detail) ============ */
  .bolt-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
  .who-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
  .who-item{ background:var(--paper-2); border-radius:var(--radius-md); padding:26px 24px; }
  .who-item svg{ width:20px; height:20px; color:var(--brick); margin-bottom:16px; }
  .who-item h4{ font-family:var(--font-display); font-weight:600; font-size:1.05rem; margin-bottom:8px; }
  .who-item p{ font-size:.9rem; color:var(--text-soft); line-height:1.5; }
  @media (max-width:900px){ .who-grid{ grid-template-columns:1fr 1fr; } }
  @media (max-width:560px){ .who-grid{ grid-template-columns:1fr; } }
  .bolt-item{
    display:flex; flex-direction:column; background:var(--card); border-radius:var(--radius-md); padding:24px 22px;
    transition:transform .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
  }
  .bolt-item svg{
    width:18px; height:18px; color:var(--brick); margin-bottom:12px;
    transform-origin:center; transition:transform .22s ease, color .22s ease;
  }
  .bolt-item p{ font-size:.92rem; color:var(--text); line-height:1.55; }
  @media (hover:hover) and (pointer:fine){
    .bolt-item:hover{
      transform:translateY(-6px);
      background:rgba(255,255,255,.98);
      border-color:rgba(6,70,42,.28);
      box-shadow:0 22px 42px -24px rgba(6,70,42,.46), inset 0 1px 0 rgba(255,255,255,.95);
    }
    .bolt-item:hover svg{ color:#9C3D30; transform:translateY(-2px) rotate(-8deg) scale(1.12); }
  }
  .bolt-apps{ display:flex; align-items:center; gap:8px; margin-top:auto; padding-top:22px; }
  .app-mark{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    flex:0 0 36px;
    border-radius:10px;
    color:#fff;
    font-family:Arial,sans-serif;
    font-size:13px;
    font-weight:800;
    font-style:normal;
    line-height:1;
    box-shadow:0 8px 18px -12px rgba(18,33,29,.55);
  }
  .app-mark::after{
    content:attr(data-name);
    position:absolute;
    z-index:8;
    left:50%;
    bottom:calc(100% + 9px);
    padding:6px 8px;
    border-radius:7px;
    color:#fff;
    background:var(--ink);
    box-shadow:0 8px 22px rgba(18,33,29,.2);
    font:600 10px/1.15 'Inter',Arial,sans-serif;
    letter-spacing:0;
    white-space:nowrap;
    pointer-events:none;
    opacity:0;
    visibility:hidden;
    transform:translate(-50%,4px);
    transition:opacity .18s ease,transform .18s ease,visibility .18s ease;
  }
  .app-mark:hover::after,
  .app-mark:focus-visible::after{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,0);
  }
  .app-mark:focus-visible{ outline:2px solid var(--brick); outline-offset:3px; }
  .app-qb{ border-radius:50%; background:#2ca01c; font-size:12px; letter-spacing:-1px; }
  .app-xero{ border-radius:50%; background:#13b5ea; font-size:9px; font-weight:700; }
  .app-excel{ background:#107c41; }
  .app-anaplan{ background:#1667b1; }
  .app-sap{ background:#0b74b9; font-size:10px; font-style:italic; }
  .app-salesforce{ border-radius:50%; background:#0d9dda; font-size:11px; text-transform:uppercase; }
  .app-hubspot{ border-radius:50%; background:#ff7a59; }
  .app-tableau{ color:#24669d; background:#fff; border:1px solid rgba(36,102,157,.2); font-size:25px; font-weight:500; }
  .app-powerbi{ align-items:flex-end; gap:2px; padding:8px; background:#f2c811; }
  .app-powerbi i{ display:block; width:3px; border-radius:2px 2px 0 0; background:#2f2f2f; }
  .app-powerbi i:nth-child(1){ height:8px; opacity:.55; }
  .app-powerbi i:nth-child(2){ height:13px; opacity:.7; }
  .app-powerbi i:nth-child(3){ height:18px; opacity:.85; }
  .app-powerbi i:nth-child(4){ height:22px; }
  .app-asana{
    display:block;
    padding:0;
    background:#fff;
    border:1px solid rgba(244,92,101,.28);
    box-shadow:0 5px 14px -10px rgba(244,92,101,.8);
  }
  .app-asana i{
    position:absolute;
    width:9px;
    height:9px;
    border-radius:50%;
    background:linear-gradient(145deg,#ff7262 0%,#f45c83 100%);
  }
  .app-asana i:nth-child(1){ left:13px; top:7px; }
  .app-asana i:nth-child(2){ left:7px; top:19px; }
  .app-asana i:nth-child(3){ right:7px; top:19px; }
  @media (max-width:900px){ .bolt-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:560px){ .bolt-grid{ grid-template-columns:1fr; } }

  /* ============ CLOUD CHECKLIST ============ */
  .cloud-checklist{
    display:flex; flex-wrap:wrap; justify-content:center; gap:14px 32px;
    margin-top:44px; padding-top:36px; border-top:1px solid var(--line-soft);
  }
  .cloud-check{ display:flex; align-items:center; gap:8px; font-size:.92rem; color:var(--text); }
  .cloud-check svg{ width:16px; height:16px; color:var(--sage); flex:none; }
  .cloud-note{ text-align:center; margin-top:20px; }

  /* ============ DELIVERABLES / MONTHLY VALUE ============ */
  .deliverables-section{ position:relative; overflow:hidden; }
  .deliverables-section::before{
    content:""; position:absolute; width:520px; height:520px; left:50%; top:46%;
    border-radius:50%; transform:translate(-50%,-50%); pointer-events:none;
    background:radial-gradient(circle,rgba(255,255,255,.72) 0%,rgba(255,255,255,0) 70%);
  }
  .deliverables-section .container{ position:relative; }
  .deliverables-head{ max-width:780px; margin-left:auto; margin-right:auto; }
  .deliverables-head .lede{ max-width:680px; margin:18px auto 0; }
  .deliverables-grid{
    display:grid; grid-template-columns:repeat(12,minmax(0,1fr)); gap:48px 20px;
    align-items:start; max-width:1080px; margin:42px auto 0; padding:0 12px 34px;
  }
  .deliverable-item{
    position:relative; display:flex; flex-direction:column; align-items:flex-start; gap:0; min-height:214px; padding:26px;
    background:rgba(255,255,255,.9); border:1px solid rgba(59,122,90,.12);
    border-radius:22px; box-shadow:0 18px 44px -38px rgba(18,33,29,.3);
  }
  .deliverable-item:nth-child(1){ grid-column:1 / span 4; transform:translateY(6px); }
  .deliverable-item:nth-child(2){ grid-column:5 / span 4; transform:translateY(28px); background:#eef4f0; }
  .deliverable-item:nth-child(3){ grid-column:9 / span 4; background:#fffdf8; border-color:rgba(184,137,31,.14); }
  .deliverable-item:nth-child(4){ grid-column:2 / span 4; transform:translateY(8px); background:#f3f6f4; }
  .deliverable-item:nth-child(5){ grid-column:6 / span 3; transform:translateY(26px); background:#faf9f6; }
  .deliverable-item:nth-child(6){ grid-column:9 / span 4; background:#fff; }
  .deliverable-num{
    display:block; margin-bottom:12px; flex:none;
    font-family:var(--font-mono); font-weight:700; color:#527660; font-size:.82rem;
  }
  .deliverable-copy{ display:flex; width:100%; min-height:100%; flex:1; flex-direction:column; align-items:flex-start; }
  .deliverable-copy h3{ font-size:1.05rem; line-height:1.25; letter-spacing:-.025em; margin:0 0 10px; }
  .deliverable-copy p{ font-size:.86rem; color:var(--text-soft); line-height:1.58; }
  .deliverable-detail{ display:block; width:100%; margin-top:auto; padding-top:18px; border-top:1px solid rgba(59,122,90,.12); }
  .deliverable-detail span{ color:#738078; font-size:.7rem; }
  .deliverable-detail strong{ color:var(--green); font:700 .72rem/1.2 var(--font-mono); white-space:nowrap; }
  .deliverable-detail-row{ display:flex; align-items:baseline; justify-content:space-between; gap:14px; }
  .client-margin-meter{ position:relative; height:6px; margin-top:11px; border-radius:999px; background:#e4ebe6; overflow:visible; }
  .client-margin-meter i{ display:block; width:31%; height:100%; border-radius:inherit; background:var(--green); }
  .client-margin-meter b{ position:absolute; left:25%; top:-3px; width:2px; height:12px; border-radius:2px; background:var(--brass); }
  .deliverable-detail-margin small{ display:block; margin-top:7px; color:#89938d; font-size:.62rem; }
  .deliverable-detail small{ display:block; margin-top:7px; color:#89938d; font-size:.62rem; }
  .cash-forecast-track{
    position:relative; height:7px; margin-top:12px; border-radius:999px;
    background:repeating-linear-gradient(90deg,#dfe8e2 0 6%,transparent 6% 7.69%);
  }
  .cash-forecast-track i{ display:block; width:69%; height:100%; border-radius:999px; background:rgba(59,122,90,.55); }
  .cash-forecast-track b{ position:absolute; left:69%; top:-3px; width:8px; height:13px; margin-left:-4px; border:2px solid #eef4f0; border-radius:50%; background:var(--brick); }
  .budget-compare{ display:grid; gap:7px; margin-top:11px; }
  .budget-compare div{ display:grid; grid-template-columns:38px 1fr; gap:8px; align-items:center; }
  .budget-compare span{ font-size:.58rem; }
  .budget-compare i{ display:block; height:5px; border-radius:999px; background:#b5c7bb; }
  .budget-compare div:first-child i{ width:72%; }
  .budget-compare div:last-child i{ width:80%; background:var(--green); }
  .savings-breakdown{ display:flex; align-items:flex-end; gap:6px; height:30px; margin-top:10px; }
  .savings-breakdown i{ width:24%; border-radius:5px 5px 2px 2px; background:#a8c0af; }
  .savings-breakdown i:nth-child(1){ height:18px; }
  .savings-breakdown i:nth-child(2){ height:27px; background:var(--green); }
  .savings-breakdown i:nth-child(3){ height:13px; background:#d5b45f; }
  .decision-options{ display:grid; grid-template-columns:repeat(3,1fr); gap:5px; margin-top:11px; }
  .decision-options span{ padding:7px 5px; border:1px solid var(--line); border-radius:8px; text-align:center; font:600 .6rem/1 var(--font-mono); }
  .decision-options .is-selected{ color:#fff; background:var(--green); border-color:var(--green); }
  .action-progress{ height:7px; margin-top:12px; overflow:hidden; border-radius:999px; background:#e3eae5; }
  .action-progress i{ display:block; width:67%; height:100%; border-radius:inherit; background:var(--green); }
  .deliverables-result{
    display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:14px 20px;
    max-width:1080px; margin:18px auto 0; padding:20px 24px 0; border-top:1px solid var(--line);
    color:var(--text); background:transparent;
  }
  .deliverables-result span{ font-family:var(--font-mono); font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--green); }
  .deliverables-result strong{ font-size:.9rem; font-weight:600; color:var(--text-soft); }
  .deliverables-result i{ width:4px; height:4px; border-radius:50%; background:#9db0a4; }
  @media (max-width:900px){
    .deliverables-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; max-width:720px; padding:0; }
    .deliverable-item:nth-child(n){ grid-column:auto; min-height:190px; transform:none; }
  }
  @media (max-width:620px){
    .deliverables-grid{ grid-template-columns:1fr; margin-top:28px; }
    .deliverable-item:nth-child(n){ min-height:0; padding:22px; }
    .deliverables-result{ flex-direction:column; gap:10px; text-align:center; }
    .deliverables-result i{ display:none; }
  }

  /* ============ ROI EXAMPLE ============ */
  .roi-example{
    max-width:720px; margin:32px auto 0; background:var(--paper-2); border-radius:var(--radius-lg);
    padding:32px 36px; text-align:left;
  }
  .roi-example-label{ font-family:var(--font-mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; color:var(--brick); margin-bottom:10px; display:block; }
  .roi-example p{ font-size:.95rem; color:var(--text); line-height:1.65; }
  .roi-closing{ max-width:640px; margin:24px auto 0; text-align:center; font-size:.95rem; color:var(--text-soft); }
  .roi-closing strong{ color:var(--text); }

  /* ============ RED FLAGS BANNER ============ */
  .redflags-banner{
    background:var(--brick); border-radius:var(--radius-lg); padding:56px 60px;
    display:grid; grid-template-columns:.6fr 1.4fr; gap:40px; align-items:start;
  }
  .redflags-banner h2{ color:var(--text-on-ink); }
  .redflags-intro{ display:flex; flex-direction:column; align-items:flex-start; min-width:0; }
  .redflags-image{
    display:block;
    width:min(100%,390px);
    height:auto;
    margin:6px auto -18px;
    transform:translateX(-3%) rotate(-3deg);
    filter:drop-shadow(0 22px 20px rgba(77,12,7,.24));
  }
  .redflags-list{ display:flex; flex-direction:column; gap:22px; }
  .redflags-list li{ font-size:.94rem; line-height:1.6; color:rgba(243,241,230,.82); padding-left:18px; position:relative; }
  .redflags-list li::before{ content:"•"; position:absolute; left:0; color:var(--brass-light); }
  .redflags-list strong{ color:var(--text-on-ink); font-weight:700; }
  .redflags-list .arrow{ color:var(--brass-light); margin:0 3px; }
  @media (max-width:800px){
    .redflags-banner{ grid-template-columns:1fr; padding:40px 32px; }
    .redflags-intro{ align-items:center; text-align:center; }
    .redflags-image{ width:min(78vw,350px); margin:-4px auto -30px; transform:rotate(-3deg); }
  }

  .case-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; max-width:800px; margin:0 auto; }
  @media (max-width:700px){ .case-grid{ grid-template-columns:1fr; } }

  /* ============ BUSINESS INTELLIGENCE CASE ============ */
  .bi-case-section{ background:var(--paper); padding-top:76px; padding-bottom:76px; }
  .bi-case-shell{
    display:grid; grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr); overflow:hidden;
    min-height:500px; border:1px solid var(--line); border-radius:var(--radius-lg); background:var(--paper-2);
    box-shadow:0 28px 70px -54px rgba(23,33,28,.45);
  }
  .bi-case-media{
    position:relative; align-self:stretch; min-height:0;
    margin:30px 0 30px 30px; overflow:hidden; border-radius:28px; background:#dce6de;
  }
  .bi-case-media::after{
    content:""; position:absolute; inset:0;
    background:linear-gradient(180deg,transparent 50%,rgba(14,62,45,.28) 100%);
    pointer-events:none;
  }
  .bi-case-media img{ width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
  .bi-case-result{
    position:absolute; z-index:1; left:28px; bottom:28px; display:flex; align-items:baseline; gap:10px;
    padding:0; color:#fff;
    text-shadow:0 2px 12px rgba(0,0,0,.72),0 1px 2px rgba(0,0,0,.85);
  }
  .bi-case-result strong{ font-family:var(--font-display); font-size:3.25rem; line-height:.9; letter-spacing:-.05em; }
  .bi-case-result span{ font-family:var(--font-mono); font-size:1rem; font-weight:700; letter-spacing:.08em; }
  .bi-case-copy{ display:flex; flex-direction:column; justify-content:center; align-items:flex-start; padding:58px clamp(38px,5vw,76px); }
  .bi-case-copy .eyebrow{ margin-bottom:18px; }
  .bi-case-copy h2{ max-width:640px; margin-bottom:22px; }
  .bi-case-copy > p{ max-width:620px; color:var(--text-soft); font-size:1rem; line-height:1.7; }
  .bi-case-outcomes{ display:flex; flex-wrap:wrap; gap:9px; margin:28px 0 34px; }
  .bi-case-outcomes span{
    padding:9px 12px; border:1px solid rgba(62,128,94,.22); border-radius:999px;
    color:var(--sage); background:rgba(226,238,229,.62); font-size:.78rem; font-weight:600;
  }
  @media (max-width:900px){
    .bi-case-shell{ grid-template-columns:1fr; }
    .bi-case-media{ align-self:center; width:calc(100% - 52px); aspect-ratio:1000 / 667; margin:26px 26px 0; }
    .bi-case-copy{ padding:44px 38px 48px; }
  }
  @media (max-width:560px){
    .bi-case-section{ padding-top:54px; padding-bottom:54px; }
    .bi-case-shell{ border-radius:28px; }
    .bi-case-media{ width:calc(100% - 36px); margin:18px 18px 0; border-radius:20px; }
    .bi-case-result{ left:18px; bottom:18px; padding:0; }
    .bi-case-result strong{ font-size:2.35rem; }
    .bi-case-result span{ font-size:.82rem; }
    .bi-case-copy{ padding:34px 24px 38px; }
    .bi-case-outcomes{ margin:24px 0 28px; }
    .bi-case-copy .btn{ width:100%; justify-content:center; }
  }

  /* ============ IMPLEMENTATION BANNER ============ */
  .impl-banner{
    position:relative; overflow:hidden; background:var(--ink); border-radius:var(--radius-lg); padding:46px 48px 48px;
  }
  .impl-banner::before{
    content:""; position:absolute; width:360px; height:360px; right:-120px; top:-180px;
    border-radius:50%; background:rgba(184,137,31,.12); filter:blur(2px); pointer-events:none;
  }
  .impl-banner-head{
    position:relative; z-index:1; display:grid; grid-template-columns:1.1fr .9fr;
    gap:48px; align-items:end; margin-bottom:34px;
  }
  .impl-kicker{
    display:block; margin-bottom:12px; font:700 .66rem/1 var(--font-mono);
    letter-spacing:.14em; text-transform:uppercase; color:var(--brass-light);
  }
  .impl-banner h2{ max-width:14ch; margin:0; color:var(--text-on-ink); }
  .impl-banner-intro{ max-width:46ch; color:rgba(243,241,230,.7); font-size:.95rem; line-height:1.62; }
  .impl-steps{ position:relative; z-index:1; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; }
  .impl-step{
    position:relative; min-height:230px; padding:20px; border-radius:18px;
    border:1px solid rgba(243,241,230,.13); background:rgba(243,241,230,.065);
    display:flex; flex-direction:column; transition:transform .22s ease,background .22s ease,border-color .22s ease;
  }
  .impl-step::before{
    content:""; display:block; width:38px; height:4px; border-radius:999px;
    background:#79b796; box-shadow:0 0 18px rgba(121,183,150,.24);
  }
  .impl-step:nth-child(2)::before{ background:var(--brass-light); box-shadow:0 0 18px rgba(217,174,79,.22); }
  .impl-step:nth-child(3)::before{ background:#cf7868; box-shadow:0 0 18px rgba(207,120,104,.22); }
  .impl-step:nth-child(4)::before{ background:#9fc4ad; box-shadow:0 0 18px rgba(159,196,173,.22); }
  .impl-step:hover{ transform:translateY(-3px); background:rgba(243,241,230,.1); border-color:rgba(217,174,79,.38); }
  .impl-step:not(:last-child)::after{
    content:"→"; position:absolute; z-index:2; right:-18px; top:50%; width:24px; height:24px;
    display:grid; place-items:center; margin-top:-12px; border-radius:50%;
    background:var(--ink); color:var(--brass-light); font-size:.88rem;
  }
  .impl-step-signal{
    display:block; margin:22px 0 20px; font-size:clamp(1.45rem,2vw,2rem);
    line-height:1; letter-spacing:-.045em; color:var(--text-on-ink);
  }
  .impl-step h4{ margin:0 0 8px; font-family:var(--font-display); font-weight:650; font-size:1.02rem; color:var(--text-on-ink); }
  .impl-step p{ margin-top:auto; font-size:.82rem; color:var(--text-on-ink-soft); line-height:1.5; }
  @media (max-width:980px){
    .impl-banner-head{ grid-template-columns:1fr; gap:16px; }
    .impl-banner h2{ max-width:none; }
    .impl-steps{ grid-template-columns:1fr 1fr; }
    .impl-step:not(:last-child)::after{ display:none; }
  }
  @media (max-width:640px){
    .impl-banner{ padding:34px 22px 24px; }
    .impl-steps{ grid-template-columns:1fr; }
    .impl-step{ min-height:0; }
    .impl-step-signal{ margin:20px 0 14px; }
    .impl-step p{ margin-top:10px; }
  }

  /* ============ SCAN BANNER ============ */
  .scan-banner{
    display:grid; grid-template-columns:1.15fr .85fr; gap:40px; align-items:center;
    background:linear-gradient(135deg,#9F3D32 0%,#B94E3F 58%,#C55A47 100%); border:1px solid rgba(255,255,255,.16);
    border-radius:var(--radius-lg); padding:56px 60px; overflow:hidden; position:relative;
    box-shadow:0 28px 64px -44px rgba(112,31,23,.72);
  }
  .scan-banner h2{ color:#fff; }
  .scan-banner .lede{ color:rgba(255,255,255,.78); margin-top:16px; }
  .scan-banner-art{ min-width:0; display:flex; align-items:center; justify-content:center; padding:8px; border:1px solid rgba(255,255,255,.16); border-radius:25px; background:rgba(95,24,19,.16); }
  .scan-laptop-image{
    display:block; width:min(100%,540px); height:auto; border-radius:22px;
    box-shadow:0 28px 58px -34px rgba(43,12,8,.58);
  }
  @media (max-width:900px){
    .scan-banner{ grid-template-columns:1fr; padding:40px 32px; text-align:center; }
    .scan-banner-art{ order:-1; }
    .scan-laptop-image{ width:min(100%,540px); }
  }

  /* ============ PROCESS STEPS ============ */
  .process-list{ display:flex; flex-direction:column; }
  .process-item{ display:grid; grid-template-columns:64px 1fr; gap:24px; padding:28px 0; border-top:1px solid var(--line-soft); }
  .process-item:last-child{ border-bottom:1px solid var(--line-soft); }
  .process-num{ font-family:var(--font-mono); font-weight:700; font-size:1.3rem; color:var(--brick); }
  .process-item h3{ margin-bottom:8px; }
  .process-item p{ color:var(--text-soft); font-size:.95rem; line-height:1.6; max-width:64ch; }
  @media (max-width:640px){ .process-item{ grid-template-columns:1fr; gap:8px; } }

  .process-list-narrow{
    max-width:1120px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px; align-items:start; padding:12px 0 30px;
  }
  .process-list-narrow .process-item{
    position:relative; min-height:350px; padding:26px;
    display:flex; flex-direction:column; gap:0; overflow:hidden;
    background:var(--card); border:1px solid var(--line-soft); border-radius:var(--radius-lg);
    box-shadow:0 22px 54px -42px rgba(18,33,29,.42);
  }
  .process-list-narrow .process-item:nth-child(2){ transform:translateY(28px); }
  .process-photo{ height:138px; margin:0 0 24px; overflow:hidden; border-radius:14px; background:var(--paper-2); }
  .process-photo img{ width:100%; height:100%; object-fit:cover; }
  .process-photo-diagnosis img{ object-position:center; }
  .process-photo-model img{ object-position:center 54%; }
  .process-photo-support img{ object-position:center 48%; }
  .process-list-narrow .process-copy h3{ margin-bottom:10px; font-size:1.22rem; }
  .process-list-narrow .process-copy p{ font-size:.9rem; line-height:1.58; }
  .process-result{
    display:block; margin-top:auto; padding-top:22px;
    font-size:.78rem; line-height:1.45; color:var(--green);
  }
  @media (max-width:900px){
    .process-list-narrow{ grid-template-columns:1fr; max-width:680px; padding-bottom:0; }
    .process-list-narrow .process-item, .process-list-narrow .process-item:nth-child(2){ min-height:0; transform:none; }
  }

  .bi-process-section{
    position:relative;
    overflow:hidden;
    isolation:isolate;
  }
  .bi-process-section::before{
    content:'';
    position:absolute;
    z-index:-1;
    width:520px;
    height:520px;
    left:-180px;
    bottom:-310px;
    border-radius:50%;
    background:rgba(59,122,90,.08);
    filter:blur(2px);
  }
  .bi-process-section::after{
    content:'';
    position:absolute;
    z-index:-1;
    width:420px;
    height:420px;
    right:-130px;
    top:-250px;
    border-radius:50%;
    background:rgba(217,174,79,.11);
  }
  .bi-process-list{
    position:relative;
    max-width:1280px;
    grid-template-columns:repeat(4,minmax(0,1fr));
    align-items:stretch;
    padding-top:56px;
  }
  .bi-process-list::before{
    content:'';
    position:absolute;
    z-index:0;
    left:5%;
    right:5%;
    top:35px;
    height:3px;
    border-radius:999px;
    background:repeating-linear-gradient(90deg,rgba(59,122,90,.38) 0 12px,transparent 12px 22px);
  }
  .bi-process-list::after{
    content:'';
    position:absolute;
    z-index:0;
    right:3.8%;
    top:28px;
    width:14px;
    height:14px;
    border-top:3px solid rgba(59,122,90,.55);
    border-right:3px solid rgba(59,122,90,.55);
    transform:rotate(45deg);
  }
  .bi-process-list .process-item,
  .bi-process-list .process-item:nth-child(2){
    z-index:1;
    min-height:300px;
    padding:78px 26px 28px;
    overflow:visible;
    transform:none;
    background:rgba(255,255,255,.92);
    box-shadow:0 24px 60px -44px rgba(18,33,29,.48);
  }
  .bi-process-list .process-item::before{
    content:attr(data-step);
    position:absolute;
    top:22px;
    left:24px;
    display:grid;
    place-items:center;
    width:40px;
    height:40px;
    border-radius:50%;
    color:#fff;
    background:var(--green);
    border:5px solid var(--paper-2);
    box-shadow:0 0 0 1px rgba(59,122,90,.16),0 10px 24px -14px rgba(18,33,29,.55);
    font:700 11px/1 var(--font-mono);
    letter-spacing:.04em;
  }
  .bi-process-list .process-item:nth-child(2)::before{ background:var(--mustard); color:var(--ink); }
  .bi-process-list .process-item:nth-child(3)::before{ background:var(--brick); }
  .bi-process-list .process-item:nth-child(4)::before{ background:var(--sage); }
  .bi-process-list .process-item::after{
    content:'';
    position:absolute;
    top:41px;
    left:69px;
    right:22px;
    height:1px;
    background:linear-gradient(90deg,rgba(59,122,90,.24),transparent);
  }
  .bi-process-list .process-copy h3{ min-height:2.55em; }
  .bi-process-list .process-result{
    min-height:3em;
    display:flex;
    align-items:flex-start;
  }
  @media (max-width:1100px){
    .bi-process-list{ max-width:820px; grid-template-columns:repeat(2,minmax(0,1fr)); padding-top:12px; }
    .bi-process-list::before,
    .bi-process-list::after{ display:none; }
  }
  @media (max-width:650px){
    .bi-process-list{ max-width:560px; grid-template-columns:1fr; }
    .bi-process-list .process-item,
    .bi-process-list .process-item:nth-child(2){ min-height:0; }
    .bi-process-list .process-copy h3,
    .bi-process-list .process-result{ min-height:0; }
  }

  /* ============ MONEY X-RAY: INCLUDED ============ */
  .included-grid{
    display:grid; grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px; max-width:1120px; margin:0 auto;
  }
  .included-card{
    min-height:230px; padding:24px 26px 26px;
    display:grid; grid-template-rows:auto auto 1fr; align-items:start;
    background:var(--card); border:1px solid var(--line-soft);
    border-radius:var(--radius-lg);
    box-shadow:0 22px 54px -42px rgba(18,33,29,.4);
  }
  .included-card-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:18px; margin-bottom:18px; }
  .included-num{
    display:block; margin:0; padding:0;
    font-family:var(--font-mono); font-size:.76rem; font-weight:700;
    letter-spacing:.12em; color:var(--text-soft);
  }
  .included-thumb{ width:78px; height:54px; flex:none; overflow:hidden; border-radius:12px; background:var(--paper-2); border:1px solid var(--line-soft); }
  .included-thumb img{ width:100%; height:100%; object-fit:cover; }
  .included-thumb-director img{ object-position:78% center; }
  .included-thumb-quality img{ object-position:center; }
  .included-thumb-automation img{ object-position:center 34%; }
  .included-thumb-cost img{ object-position:center; }
  .included-card h3{
    margin:0 0 12px; font-family:var(--font-display);
    font-size:1.25rem; line-height:1.2; color:var(--text);
  }
  .included-card p{
    max-width:52ch; margin:0; font-size:.9rem; line-height:1.56;
    color:var(--text-soft);
  }
  @media (max-width:760px){
    .included-grid{ grid-template-columns:1fr; gap:14px; }
    .included-card{ min-height:0; padding:24px; }
    .included-thumb{ width:72px; height:50px; }
  }

  /* ============ GLASS LAYER (iOS-style translucency) ============ */
  .offer-card,
  .bento-light,
  .who-item,
  .bolt-item,
  .nav-dropdown-menu{
    background:var(--glass-bg);
    -webkit-backdrop-filter:var(--glass-blur);
    backdrop-filter:var(--glass-blur);
    border:1px solid var(--glass-brd);
    box-shadow:var(--glass-shadow);
  }

  /* No backdrop-filter support -> solid surfaces, same layout */
  @supports not ((backdrop-filter:blur(2px)) or (-webkit-backdrop-filter:blur(2px))){
    .site-header{ background:rgba(250,249,244,.96); }
    .offer-card, .cost-card, .bento-light, .who-item, .bolt-item,
    .nav-dropdown-menu, .cookie-bar, .hero-chip, .hero-point{ background:var(--card); }
  }

  /* Respect the OS "reduce transparency" setting */
  @media (prefers-reduced-transparency:reduce){
    .site-header, .offer-card, .cost-card, .bento-light, .who-item,
    .bolt-item, .nav-dropdown-menu, .cookie-bar, .hero-chip, .hero-point{
      -webkit-backdrop-filter:none; backdrop-filter:none;
      background:var(--card); border-color:var(--line-soft);
    }
    .site-header{ background:var(--paper); }
  }

  @media (prefers-reduced-motion:reduce){
    html{ scroll-behavior:auto; }
    #beamGroup{ animation:none; }
    .marquee{ animation:none; }
    .reveal, .reveal.is-in{ opacity:1; transform:none; filter:none; animation:none !important; }
    *{ transition-duration:.001ms !important; animation-duration:.001ms !important; }
  }
