
  :root {
    --ink: #001E24;          /* brand darkest */
    --ink-2: #063648;        /* brand deep teal */
    --ocean: #0C8AAE;        /* brand ocean blue */
    --mint: #06D29C;         /* brand primary accent */
    --mint-deep: #04916C;    /* accessible accent for text on white */
    --paper: #FFFFFF;
    --paper-2: #F5F8F8;      /* alternate section background */
    --body: #21424B;         /* body text on white */
    --muted: #5E767E;
    --line: #DCE5E7;
    --line-dark: rgba(252,252,252,0.16);
    --maxw: 1180px;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-padding-top: 84px; }
  body {
    font-family: "IBM Plex Sans", sans-serif;
    color: var(--ink); background: var(--paper);
    overflow-x: clip; -webkit-font-smoothing: antialiased;
  }
  .mono { font-family: "IBM Plex Mono", monospace; }

  /* ===== Topbar (dark brand band) ===== */
  .topbar { position: sticky; top: 0; z-index: 50; width: 100%; background: var(--ink); border-bottom: 1px solid var(--ink-2); }
  nav { display: flex; align-items: center; justify-content: space-between; position: relative;
    max-width: var(--maxw); margin: 0 auto; padding: 13px clamp(20px, 5vw, 56px); }
  .logo-img { height: 44px; width: auto; display: block; }
  .logo-link { display: block; line-height: 0; }
  .nav-right { display: flex; align-items: center; gap: 28px; }
  nav a.link, nav .nav-toggle { color: #DCE9EC; text-decoration: none; font-weight: 500; font-size: 0.92rem; transition: color .2s; }
  nav a.link:hover, nav .nav-toggle:hover { color: #fff; }
  .nav-item { position: relative; }
  .nav-toggle { background: none; border: 0; padding: 0; font-family: inherit; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; }
  .nav-toggle .caret { width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .15s; }
  .menu { display: none; position: absolute; top: 100%; left: -16px; padding-top: 12px; z-index: 60; }
  .menu-panel { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 10px; box-shadow: 0 14px 34px rgba(0,30,36,0.14); width: 300px; }
  .menu-panel.two-col { width: 600px; display: grid; grid-template-columns: 1fr 232px; gap: 10px; }
  .menu-group-label { display: block; padding: 6px 12px 8px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.02em; color: var(--muted); }
  .menu-panel a { display: block; padding: 9px 12px; border-radius: 4px; color: var(--ink); text-decoration: none; }
  .menu-panel a:hover, .menu-panel a:focus-visible { background: var(--paper-2); }
  .menu-panel a:hover .m-title, .menu-panel a:focus-visible .m-title { color: var(--mint-deep); }
  .m-title { display: block; font-size: 0.92rem; font-weight: 600; color: var(--ink); transition: color .15s; }
  .m-desc { display: block; margin-top: 2px; font-size: 0.82rem; line-height: 1.4; color: var(--muted); }
  .menu-aside { background: var(--paper-2); border-radius: 4px; padding: 6px; display: flex; flex-direction: column; }
  .menu-aside a { border-radius: 4px; }
  .menu-aside a:hover, .menu-aside a:focus-visible { background: #fff; }
  .has-menu:hover > .menu, .has-menu:focus-within > .menu, .has-menu.is-open > .menu { display: block; }
  .has-menu.is-open .caret { transform: translateY(1px) rotate(225deg); }
  .nav-burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
  .nav-burger span { display: block; width: 22px; height: 2px; background: #DCE9EC; transition: transform .2s, opacity .2s; }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 900px) {
    .nav-burger { display: flex; }
    .nav-right { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
      background: var(--ink); border-top: 1px solid var(--ink-2); padding: 6px clamp(20px, 5vw, 56px) 22px; max-height: calc(100vh - 72px); overflow: auto; }
    .topbar.nav-open .nav-right { display: flex; }
    .nav-item { position: static; }
    .nav-toggle, nav a.link { display: flex; width: 100%; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--ink-2); font-size: 1rem; }
    .nav-toggle .caret { margin-right: 6px; }
    .menu { position: static; padding: 4px 0 8px; min-width: 0; }
    .has-menu:hover > .menu, .has-menu:focus-within > .menu { display: none; }
    .has-menu.is-open > .menu { display: block; }
    .menu-panel, .menu-panel.two-col { background: transparent; border: 0; border-radius: 0; padding: 0; box-shadow: none; width: auto; display: block; }
    .menu-panel a { padding: 10px 0 10px 14px; border-radius: 0; }
    .menu-panel a:hover, .menu-panel a:focus-visible { background: transparent; }
    .m-title { color: #B7C9CE; font-size: 0.95rem; font-weight: 500; }
    .menu-panel a:hover .m-title, .menu-panel a:focus-visible .m-title { color: #fff; }
    .m-desc, .menu-group-label { display: none; }
    .menu-aside { background: transparent; padding: 0; }
    .menu-aside a:hover, .menu-aside a:focus-visible { background: transparent; }
    .menu-aside .js-open-demo { display: none; }
    .nav-right .btn { margin-top: 16px; align-self: flex-start; }
  }
  @media (prefers-reduced-motion: reduce) { .nav-burger span, .nav-toggle .caret, nav a.link, nav .nav-toggle { transition: none; } }

  .btn {
    font-weight: 600; font-size: 0.98rem; padding: 13px 24px; border-radius: 4px;
    text-decoration: none; cursor: pointer; border: 1px solid transparent; display: inline-block;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
  }
  .btn-primary { background: var(--mint); color: var(--ink); }
  .btn-primary:hover { background: #05BE8D; }
  .btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn-outline:hover { background: var(--ink); color: #fff; }
    @media (max-width: 640px) {
    .logo-img { height: 36px; }
    nav .btn { padding: 9px 14px; font-size: 0.88rem; white-space: nowrap; }  .cta-row .btn, .cta-band .btn, .idx-copy .btn { padding: 12px 20px; font-size: 0.94rem; }
  }

  /* ===== Section scaffolding ===== */
  .section { padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 56px); }
  .section.alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .inner { max-width: var(--maxw); margin: 0 auto; }
  .sec-label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
    color: var(--muted); display: block; margin-bottom: 16px; }
  .sec-title { font-family: "Schibsted Grotesk", sans-serif; font-weight: 800;
    font-size: clamp(1.9rem, 4.2vw, 3rem); line-height: 1.05; letter-spacing: -0.025em; max-width: 24ch; }
  .sec-sub { margin-top: 16px; color: var(--body); font-size: clamp(1rem, 1.7vw, 1.14rem); line-height: 1.6; max-width: 64ch; }

  /* ===== Hero (video-ready, dark) ===== */
  .hero { position: relative; overflow: hidden;
    background: var(--ink) url("hero-bg.jpg") center 65% / cover no-repeat;
    padding: clamp(96px, 13vw, 170px) clamp(20px, 5vw, 56px) clamp(80px, 10vw, 130px); }
  .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
  .hero-scrim { position: absolute; inset: 0; z-index: 1; background: rgba(0,30,36,0.60); }
  @media (max-width: 768px) { .hero-video { display: none; } }
  .hero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; text-align: center; }
  .hero-status .on { color: var(--mint-deep); font-weight: 600; }
  h1 {
    font-family: "Schibsted Grotesk", sans-serif; font-weight: 800;
    font-size: clamp(2.5rem, 5.8vw, 4.4rem); line-height: 1.02; letter-spacing: -0.03em;
    max-width: 17ch; color: #FFFFFF; margin-left: auto; margin-right: auto;
    text-shadow: 0 2px 18px rgba(0,30,36,0.6);
  }
  p.sub { margin: 26px auto 0; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.6; color: #EAF2F4; max-width: 640px;
    text-shadow: 0 1px 12px rgba(0,30,36,0.7); }
  p.sub strong { color: #FFFFFF; font-weight: 600; }
  .btn-outline-light { background: transparent; color: #FFFFFF; border-color: rgba(255,255,255,0.55); }
  .btn-outline-light:hover { border-color: #FFFFFF; background: rgba(255,255,255,0.08); }
  .cta-row { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
  .trust { margin: 46px auto 0; max-width: 640px; position: relative;
    padding-top: 22px; font-size: 0.98rem; line-height: 1.65; color: #FFFFFF;
    text-shadow: 0 1px 12px rgba(0,30,36,0.75), 0 0 3px rgba(0,30,36,0.55); }
  .trust strong { color: var(--mint); font-weight: 600; }
  .trust::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 56px; height: 3px; background: var(--mint); }

  /* ===== SDS Indexing ===== */
  .inner-center { text-align: center; }
  .inner-center .sec-title, .inner-center .sec-sub { margin-left: auto; margin-right: auto; }
  .idx-copy { margin: clamp(26px, 3.4vw, 38px) auto 0; max-width: 66ch; }
  .idx-copy p { color: var(--body); font-size: 1.08rem; line-height: 1.7; margin-bottom: 20px; }
  .idx-copy p strong { color: var(--ink); }
  .idx-copy .btn { margin-top: 6px; }

  /* ===== Pipeline (#suite) ===== */
  .flow { margin-top: clamp(38px, 5vw, 56px); border-top: 1px solid var(--line); }
  .step { display: grid; grid-template-columns: 90px 230px 1fr; gap: clamp(16px, 3vw, 40px);
    padding: clamp(22px, 3vw, 30px) 0; border-bottom: 1px solid var(--line); align-items: baseline; }
  .step-no { font-family: "IBM Plex Mono", monospace; font-size: 0.95rem; color: var(--muted); }
  .step-name { font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: clamp(1.25rem, 2.2vw, 1.5rem); letter-spacing: -0.01em; }
  .step-tag { display: block; margin-top: 5px; font-size: 0.86rem; font-weight: 600; color: var(--mint-deep); }
  .step-desc { color: var(--body); font-size: 1rem; line-height: 1.6; max-width: 62ch; }
  @media (max-width: 760px) { .step { grid-template-columns: 52px 1fr; } .step-desc { grid-column: 2; } }

  /* ===== Outcomes ===== */
  .outcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(36px, 5vw, 64px); margin-top: clamp(30px, 4vw, 44px); }
  .outcome { border-top: 1px solid var(--line); padding: clamp(22px, 3vw, 30px) 0 clamp(18px, 2.6vw, 26px); }
  .outcome h3 { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: clamp(1.15rem, 2vw, 1.35rem); letter-spacing: -0.01em; margin-bottom: 10px; }
  .outcome p { color: var(--body); font-size: 1rem; line-height: 1.6; max-width: 52ch; }
  @media (max-width: 760px) { .outcome-grid { grid-template-columns: 1fr; } }


  /* ===== Photo band ===== */
  .photo-band { position: relative; height: clamp(260px, 34vw, 460px);
    background: url("lab-photo.jpg") center 40% / cover no-repeat; }
  .photo-band::after { content: ''; position: absolute; inset: 0; background: rgba(0,30,36,0.10); }

  /* ===== Tiers ===== */
  .tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: clamp(36px, 5vw, 54px); }
  .tier { display: flex; flex-direction: column; gap: 14px; background: var(--paper);
    border: 1px solid var(--line); border-top: 3px solid var(--line); border-radius: 6px; padding: clamp(26px, 3vw, 36px); }
  .tier.is-featured { border-top-color: var(--mint); }
  .tier-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
  .tier-kicker { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
  .tier-badge { font-size: 0.85rem; font-weight: 600; color: var(--mint-deep); white-space: nowrap; }
  .tier-name { font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: clamp(1.35rem, 2.3vw, 1.6rem); letter-spacing: -0.015em; }
  .tier-desc { color: var(--body); font-size: 1rem; line-height: 1.55; }
  .tier-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 2px; }
  .tier-list li { position: relative; padding-left: 26px; color: var(--body); font-size: 0.95rem; line-height: 1.5; }
  .tier-list li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--mint-deep); font-weight: 700; }
  .tier-callout { margin-top: auto; font-size: 0.93rem; line-height: 1.5; color: var(--ink);
    border-top: 1px solid var(--line); padding-top: 14px; }
  .tier-callout strong { color: var(--mint-deep); font-weight: 700; }
  @media (max-width: 760px) { .tier-grid { grid-template-columns: 1fr; } }

  /* ===== Why Valenc (#why) ===== */
  .why-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
  .why-side { position: sticky; top: 104px; }
  .why-side .sec-title { font-size: clamp(1.8rem, 3.8vw, 2.7rem); }
  .why-side .sec-sub { margin-top: 18px; }
  .why-side .btn { margin-top: 30px; }
  .why-list { border-top: 1px solid var(--line); }
  .why-item { padding: clamp(22px, 3vw, 32px) 0; border-bottom: 1px solid var(--line); }
  .why-item h3 { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: clamp(1.15rem, 2vw, 1.35rem); letter-spacing: -0.01em; margin-bottom: 10px; }
  .why-item p { color: var(--body); font-size: 1rem; line-height: 1.6; max-width: 58ch; }
  .why-foot { margin-top: 22px; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
  .why-foot a { color: var(--mint-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
  .why-foot a:hover, .why-foot a:focus-visible { color: var(--ink); }
  @media (max-width: 860px) {
    .why-grid { grid-template-columns: 1fr; gap: 36px; }
    .why-side { position: static; }
  }

  /* ===== FAQ ===== */
  .faq-inner { max-width: 860px; margin: 0 auto; }
  .faq-list { margin-top: clamp(30px, 4vw, 44px); border-top: 1px solid var(--line); }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-item summary { cursor: pointer; list-style: none; padding: 20px 42px 20px 0; position: relative;
    font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: clamp(1.02rem, 1.9vw, 1.18rem); color: var(--ink); }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: '+'; position: absolute; right: 6px; top: 14px; color: var(--mint-deep); font-size: 1.5rem; font-weight: 400; }
  .faq-item[open] summary::after { content: '\2212'; }
  .faq-item p { margin: 0 0 22px; color: var(--body); font-size: 1rem; line-height: 1.65; max-width: 66ch; }

  /* ===== Closing CTA (dark band) ===== */
  .cta-band { position: relative; background: var(--ink) url("hero-bg.jpg") center 18% / cover no-repeat;
    padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 56px); text-align: center; }
  .cta-band::before { content: ''; position: absolute; inset: 0; background: rgba(0,30,36,0.85); }
  .cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
  .cta-title { font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: clamp(1.9rem, 4.3vw, 2.9rem); line-height: 1.06; letter-spacing: -0.025em; color: #fff; }
  .cta-sub { margin: 18px auto 30px; color: #A9C0C7; font-size: clamp(1rem, 1.8vw, 1.15rem); line-height: 1.55; max-width: 50ch; }

  /* ===== In-page links to platform and regulation pages ===== */
  a.step-name { color: inherit; text-decoration: underline; text-decoration-thickness: 2px; text-decoration-color: rgba(94,118,126,0.35); text-underline-offset: 6px; transition: text-decoration-color .15s; }
  a.step-name:hover, a.step-name:focus-visible { text-decoration-color: var(--mint-deep); }
  .idx-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 6px; }
  .idx-actions .btn { margin-top: 0; }
  .why-more { display: inline-block; margin-top: 12px; font-size: 0.9rem; font-weight: 600; color: var(--mint-deep); text-decoration: underline; text-underline-offset: 3px; }
  .why-more:hover, .why-more:focus-visible { color: var(--ink); }
  .sec-actions { margin-top: clamp(26px, 4vw, 36px); }
  .faq-item p a { color: var(--mint-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
  .faq-item p a:hover { color: var(--ink); }

  /* ===== Footer (dark, continues from CTA) ===== */
  .site-footer { padding: clamp(36px, 5vw, 56px) clamp(20px, 5vw, 56px) 28px; border-top: 1px solid var(--line-dark);
    font-size: 0.85rem; color: #8FA8AF; background: var(--ink); }
  .footer-inner { max-width: var(--maxw); margin: 0 auto; }
  .footer-grid { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 28px 32px; }
  .footer-brand .logo-img { height: 36px; }
  .footer-brand p { margin-top: 16px; line-height: 1.6; }
  .footer-brand a, .footer-bottom a { color: #8FA8AF; text-decoration: none; transition: color .2s; }
  .footer-brand a:hover, .footer-bottom a:hover { color: #fff; }
  .footer-col h4 { font-family: "IBM Plex Sans", sans-serif; font-size: 0.8rem; font-weight: 600; color: #DCE9EC; margin-bottom: 12px; }
  .footer-col a { display: block; color: #8FA8AF; text-decoration: none; padding: 5px 0; transition: color .2s; }
  .footer-col a:hover { color: #fff; }
  .footer-bottom { max-width: var(--maxw); margin: 34px auto 0; padding-top: 18px; border-top: 1px solid var(--ink-2); display: flex; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap; }
  @media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
  @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

  /* ===== Demo modal (unchanged behavior) ===== */
  .modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
  .modal[hidden] { display: none; }
  .modal-overlay { position: absolute; inset: 0; background: rgba(0,12,15,0.62); backdrop-filter: blur(4px); }
  .modal-card { position: relative; z-index: 1; width: 100%; max-width: 600px; max-height: 92vh; overflow-y: auto; overflow-x: hidden;
    background: transparent; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
  .modal-x { position: absolute; top: 12px; right: 12px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.38); border: none; font-size: 1.35rem; line-height: 1; color: #fff; cursor: pointer; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
  .modal-x:hover { background: rgba(0,0,0,0.6); }
  #hs-demo-form, #hs-demo-form .hs-form-frame { width: 100%; }
  #hs-demo-form img { max-width: 100%; height: auto; }

  /* ===== Subpages ===== */
  .page-head { background: #fff; padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 56px) clamp(44px, 6vw, 72px); border-bottom: 1px solid var(--line); }
  .page-head .inner { max-width: var(--maxw); margin: 0 auto; }
  .page-head h1 { font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05;
    font-size: clamp(2rem, 4.6vw, 3.4rem); max-width: 22ch; margin: 14px 0 0; text-align: left; color: var(--ink); text-shadow: none; }
  .page-head p { margin-top: 20px; max-width: 64ch; font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.6; color: var(--body); }
  .page-head .cta-row { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start; }
  .band-under-head { border-top: 0; }
  .prose { max-width: 70ch; }
  .prose p { color: var(--body); font-size: 1.04rem; line-height: 1.7; margin-top: 16px; }
  .prose p:first-child { margin-top: 0; }
  .section .sec-title + .prose, .section .sec-title + .kv-grid { margin-top: 22px; }
  .kv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px 40px; margin-top: 8px; }
  .kv h3 { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.12rem; letter-spacing: -0.01em; }
  .kv h3 a { color: inherit; text-decoration: underline; text-decoration-thickness: 2px; text-decoration-color: rgba(94,118,126,0.35); text-underline-offset: 5px; }
  .kv h3 a:hover { text-decoration-color: var(--mint-deep); }
  .kv p { margin-top: 8px; color: var(--body); line-height: 1.6; }
  .kv-steps { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
  .kv-steps .kv { border-top: 1px solid var(--line); padding-top: 18px; }
  .kv-grid + .prose { margin-top: 24px; }
  .diagram-strip { padding: clamp(28px, 4vw, 48px) clamp(20px, 5vw, 56px); background: var(--paper-2); border-bottom: 1px solid var(--line); }
  .page-head + .diagram-strip { border-top: 0; }
  .diagram-strip .inner { max-width: var(--maxw); margin: 0 auto; }
  .diagram-strip .flowchart, .diagram-strip .split { margin-top: 0; }
  .diagram-strip .sec-label { display: block; margin-bottom: 16px; }
  .two-col { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 28px clamp(36px, 6vw, 96px); align-items: start; }
  .two-col .sec-title { font-size: clamp(1.6rem, 3vw, 2.3rem); }
  .two-col .prose { max-width: 62ch; }
  .two-col .sec-title + .prose { margin-top: 0; }
  @media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 18px; } }
  .flowchart { display: flex; flex-wrap: wrap; align-items: stretch; gap: 10px; margin-top: clamp(30px, 4vw, 44px); }
  .flow-node { flex: 1 1 150px; min-width: 150px; border: 1px solid var(--line); border-radius: 6px; padding: 16px 16px 14px; background: #fff; position: relative; }
  .flow-node .n { font-family: "IBM Plex Mono", monospace; font-size: 0.78rem; color: var(--mint-deep); font-weight: 600; }
  .flow-node .t { display: block; margin-top: 8px; font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.02rem; letter-spacing: -0.01em; }
  .flow-node .d { display: block; margin-top: 6px; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
  .flow-node.is-human { border-color: var(--mint); border-top: 3px solid var(--mint); }
  .flow-arrow { flex: 0 0 auto; display: flex; align-items: center; color: var(--muted); font-size: 1.1rem; padding: 0 2px; }
  .flow-caption { margin-top: 14px; font-size: 0.9rem; color: var(--muted); }
  .split { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 14px; align-items: center; margin-top: clamp(30px, 4vw, 44px); }
  .split .flow-node { min-width: 0; }
  .split-arrows { color: var(--muted); font-size: 1.2rem; }
  @media (max-width: 720px) { .split { grid-template-columns: 1fr; } .split-arrows { display: none; } .flow-arrow { display: none; } .flow-node { flex-basis: 100%; } }
  .photo-band.band-platform { background-image: image-set(url("/img/platform-band-reactors-1200.webp") 1x, url("/img/platform-band-reactors-2400.webp") 2x); background-image: url("/img/platform-band-reactors-2400.webp"); background-position: center 55%; }
  .photo-band.band-transport { background-image: url("/img/transport-band-ibc-totes-2400.webp"); background-position: center 50%; }
  .photo-band.band-indexing { background-image: url("/img/band-indexing-binder-2400.webp"); background-position: center 40%; }
  .photo-band.band-ghs { background-image: url("/img/band-ghs-cleanroom-2400.webp"); background-position: center 45%; }
  .photo-band.band-authoring { background-image: url("/img/band-authoring-labtech-2400.webp"); background-position: center 35%; }
  .photo-band.band-monitoring { background-image: url("/img/band-monitoring-tanks-2400.webp"); background-position: center 60%; }
  .page-faq .faq-list { margin-top: 26px; }
  .form-page .hs-form-frame { width: 100%; }
  .form-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: clamp(20px, 3vw, 32px); margin-top: 28px; max-width: 720px; }
  .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; margin-top: 30px; }
  .contact-grid h3 { font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; font-size: 1.1rem; }
  .contact-grid p { margin-top: 8px; color: var(--body); line-height: 1.6; }
  .contact-grid a { color: var(--mint-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
