  :root {
      --primary-blue: #014e8a;
      --deep-blue: #013560;
      --navy: #011c38;
      --accent-blue: #7FA6DA;
      --bright-blue: #2f6fc4;
      --light-blue: #EAF4FF;
      --text-light: #ffffff;
      --text-muted: #6c757d;
      --ink: #0b2137;
      --line-dark: rgba(255, 255, 255, .14);
      --line-light: rgba(1, 78, 138, .14);
      --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.15);
      --shadow-banner: 0 12px 24px rgba(0, 0, 0, 0.2);
      --radius: 8px;
      font-size: 16px;
  }

  * {
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      margin: 0;
      background: #fff;
      color: var(--ink);
      font-family: "Inter Tight", "Inter", Arial, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4 {
      font-family: 'Inter', system-ui, sans-serif;
      font-weight: 600;
      line-height: 1.14;
      margin: 0;
      letter-spacing: -0.01em;
  }

  p {
      margin: 0;
  }

  a {
      color: inherit;
      text-decoration: none;
  }

  .mono {
      font-family: 'IBM Plex Mono', monospace;
  }

  .wrap {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 28px;
      position: relative;
      z-index: 2;
  }

  section {
      padding: 110px 0;
      position: relative;
  }

  .dark {
      background: linear-gradient(155deg, var(--navy) 0%, var(--deep-blue) 55%, var(--primary-blue) 100%);
      color: var(--text-light);
  }

  .tint {
      background: var(--light-blue);
  }

  .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12.5px;
      letter-spacing: .03em;
      margin-bottom: 22px;
      color: var(--primary-blue);
  }

  .dark .kicker {
      color: var(--accent-blue);
  }

  .kicker .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent-blue);
      flex: none;
      box-shadow: 0 0 0 4px rgba(127, 166, 218, .25);
  }

  h2.head {
      font-size: clamp(28px, 3.3vw, 42px);
     margin-bottom: 15px;
  }

  .lede {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 640px;
      margin-top: 16px;
  }

  .dark .lede {
      color: #c8dbf0;
  }

  :focus-visible {
      outline: 2px solid var(--accent-blue);
      outline-offset: 3px;
  }

  @media (prefers-reduced-motion:reduce) {
      * {
          animation-duration: .001ms !important;
          transition-duration: .001ms !important;
      }
  }

  /* reveal on scroll */
  .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
      transition-delay: var(--d, 0s);
      will-change: opacity, transform;
  }

  .reveal.in {
      opacity: 1;
      transform: translateY(0);
  }

  /* NAV */
  header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: #fff;
      border-bottom: 1px solid var(--line-light);
      box-shadow: 0 2px 10px rgba(11, 33, 55, .04);
  }

  nav.wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
  }

  .brand {
      display: flex;
      align-items: center;
      gap: 11px;
      font-family: 'Inter';
      font-weight: 600;
      font-size: 17px;
      color: var(--ink);
  }

  .brand-logo {
      height: 70px;
      width: auto;
      display: block;
  }

  .brand-fallback {
      display: none;
      align-items: center;
      gap: 11px;
  }

  .brand .mark {
      width: 28px;
      height: 28px;
      background: #fff;
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter';
      font-weight: 700;
      font-size: 15px;
      color: #fff;
      flex: none;
      background: var(--primary-blue);
  }

  .navlinks {
      display: flex;
      gap: 32px;
      align-items: center;
  }

  .navlinks a {
      position: relative;
      font-size: 14.5px;
      color: var(--ink);
      padding: 4px 0;
  }

  .navlinks a:not(.cta)::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 1px;
      background: var(--accent-blue);
      transition: width .35s cubic-bezier(.22, 1, .36, 1);
  }

  .navlinks a:not(.cta):hover::after {
      width: 100%;
  }

  .navlinks a:not(.cta):hover {
      color: var(--primary-blue);
  }

  .navlinks .cta {
      color: #fff;
      background: var(--primary-blue);
      padding: 9px 20px;
      border-radius: var(--radius);
      font-weight: 500;
      transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s cubic-bezier(.22, 1, .36, 1);
  }

  .navlinks .cta:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
      background: var(--deep-blue);
  }

  .navtoggle {
      display: none;
      background: none;
      border: none;
      color: var(--ink);
      font-size: 24px;
      cursor: pointer;
  }

  @media (max-width:880px) {
      .navlinks {
          position: fixed;
          top: 72px;
          left: 0;
          right: 0;
          background: #fff;
          border-bottom: 1px solid var(--line-light);
          flex-direction: column;
          align-items: stretch;
          padding: 16px 28px 28px;
          gap: 18px;
          display: none;
      }

      .navlinks.open {
          display: flex;
      }

      .navlinks .cta {
          text-align: center;
      }

      .navtoggle {
          display: block;
      }
  }

  /* HERO — scientific editorial composition with an animated sequence search */
  .hero {
      padding: 146px 0 70px;
      overflow: hidden;
      position: relative;
      background: #fff;
  }

  .hero-grid {
      display: block;
      position: relative;
      z-index: 2;
  }

  .hero-copy {
      max-width: 930px;
      margin: 0 auto;
      text-align: center;
  }

  .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      color: var(--primary-blue);
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: .13em;
      text-transform: uppercase;
  }

  .hero-kicker::before,
  .hero-kicker::after {
      content: "";
      width: 26px;
      height: 1px;
      background: rgba(1, 78, 138, .45);
  }

  .hero h1 {
      max-width: 900px;
      margin: 0 auto;
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(42px, 5.25vw, 72px);
      font-weight: 600;
      line-height: 1.035;
      letter-spacing: -.045em;
      color: var(--ink);
  }

  .hero h1 .accent-text {
      color: var(--primary-blue);
  }

  .hero .lede {
      font-size: 18px;
      line-height: 1.65;
      margin: 24px auto 0;
      max-width: 865px;
      color: #5b6b7b;
  }

  .hero-cta {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin-top: 31px;
      flex-wrap: wrap;
  }

  .hero-foot {
      justify-content: center;
      margin-top: 28px;
      padding-top: 18px;
      border-top: 1px solid var(--line-light);
      display: flex;
      gap: 12px 28px;
      flex-wrap: wrap;
      color: #758493;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9.5px;
      letter-spacing: .035em;
  }

  /* Hero visual: a protein sequence becomes the landscape. A JS-driven scanner searches it,
     pauses at a candidate residue, then reveals a magnified analytical readout. */
  .hero-mock-wrap {
      position: relative;
      width: min(1220px, 100%);
      height: 330px;
      margin: 34px auto 0;
      padding: 0;
  }

  .hero-mock-wrap::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 82px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(1, 78, 138, .08) 18%, rgba(1, 78, 138, .13) 50%, rgba(1, 78, 138, .08) 82%, transparent);
  }

  .sequence-field {
      position: absolute;
      inset: 0;
      overflow: hidden;
  }

  @media (max-width: 900px){
    .hero-mock-wrap {
        display: none;
    }
  }

  .sequence-grid {
      position: absolute;
      inset: 32px 0 0;
      background-image: linear-gradient(rgba(1, 78, 138, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(1, 78, 138, .035) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  }

  .protein-path {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      overflow: visible;
  }

  .protein-path .backbone {
      fill: none;
      stroke: #101317;
      stroke-width: 5;
      stroke-linecap: round;
  }

  .protein-path .trace {
      fill: none;
      stroke: #b996e8;
      stroke-width: 2;
      stroke-dasharray: 7 11;
      opacity: .62;
  }

  .protein-seq {
      position: absolute;
      left: 7%;
      right: 7%;
      top: 117px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 3px;
      color: #0b2137;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 13px;
      letter-spacing: .08em;
      white-space: nowrap;
      transform: rotate(-1.5deg);
  }

  .protein-seq span {
      display: inline-block;
      transition: color .25s ease, transform .25s ease, opacity .25s ease;
  }

  .protein-seq .candidate {
      color: var(--primary-blue);
      font-weight: 600;
  }

  .protein-seq .found {
      color: #fff;
      background: var(--primary-blue);
      padding: 2px 5px;
      border-radius: 2px;
      transform: translateY(-2px) scale(1.12);
      box-shadow: 0 4px 14px rgba(1, 78, 138, .2);
  }

  .search-beam {
      position: absolute;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      border: 1px solid rgba(1, 78, 138, .16);
      background: radial-gradient(circle, rgba(255, 255, 255, .96) 0 44%, rgba(234, 244, 255, .55) 58%, rgba(234, 244, 255, 0) 72%);
      box-shadow: 0 12px 35px rgba(1, 78, 138, .09), inset 0 0 0 10px rgba(255, 255, 255, .42);
      left: 12%;
      top: 55px;
      transform: translate(-50%, -50%);
      animation: none;
      z-index: 5;
      will-change: left, top, transform;
  }

  .search-beam::after {
      content: "";
      position: absolute;
      width: 48px;
      height: 8px;
      border-radius: 999px;
      background: #0b2137;
      right: -35px;
      bottom: -19px;
      transform: rotate(45deg);
      transform-origin: left center;
  }

  .search-beam::before {
      content: "SCAN";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      color: var(--primary-blue);
      font: 500 9px 'IBM Plex Mono', monospace;
      letter-spacing: .16em;
      opacity: .8;
  }

  .lens-crosshair {
      position: absolute;
      inset: 38px;
      border: 1px dashed rgba(1, 78, 138, .35);
      border-radius: 50%;
  }

  .lens-crosshair::before,
  .lens-crosshair::after {
      content: "";
      position: absolute;
      background: rgba(1, 78, 138, .25);
  }

  .lens-crosshair::before {
      width: 1px;
      height: 100%;
      left: 50%;
      top: 0;
  }

  .lens-crosshair::after {
      height: 1px;
      width: 100%;
      left: 0;
      top: 50%;
  }

  .sequence-readout {
      position: absolute;
      right: 9%;
      top: 28px;
      min-width: 230px;
      padding: 14px 16px;
      background: rgba(255, 255, 255, .94);
      border: 1px solid rgba(1, 78, 138, .15);
      border-radius: 7px;
      box-shadow: 0 16px 38px rgba(11, 33, 55, .09);
      opacity: 0;
      transform: translateY(8px);
      animation: none;
      z-index: 6;
      will-change: opacity, transform;
  }

  .sequence-readout .eyebrow {
      font: 500 9px 'IBM Plex Mono', monospace;
      letter-spacing: .1em;
      color: #778696;
      text-transform: uppercase;
  }

  .sequence-readout .hit {
      font: 600 17px 'Inter', sans-serif;
      color: var(--ink);
      margin-top: 5px;
  }

  .sequence-readout .detail {
      font: 10px 'IBM Plex Mono', monospace;
      color: var(--primary-blue);
      margin-top: 4px;
  }

  .sequence-readout .rule {
      height: 1px;
      background: var(--line-light);
      margin-top: 10px;
  }

  .sequence-status {
      position: absolute;
      left: 50%;
      bottom: 10px;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 8px;
      font: 500 9px 'IBM Plex Mono', monospace;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #718090;
  }

  .sequence-status i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #2d9b61;
      box-shadow: 0 0 0 4px rgba(45, 155, 97, .09);
  }

  @keyframes lensSearch {

      0%,
      8% {
          left: 11%;
          top: 55px;
          transform: translate(-50%, -50%) scale(.92);
      }

      20% {
          left: 25%;
          top: 116px;
          transform: translate(-50%, -50%) scale(.94);
      }

      34% {
          left: 42%;
          top: 151px;
          transform: translate(-50%, -50%) scale(.96);
      }

      49% {
          left: 57%;
          top: 120px;
          transform: translate(-50%, -50%) scale(1);
      }

      60%,
      72% {
          left: 66%;
          top: 89px;
          transform: translate(-50%, -50%) scale(1.06);
      }

      82% {
          left: 66%;
          top: 89px;
          transform: translate(-50%, -50%) scale(1.12);
      }

      100% {
          left: 11%;
          top: 55px;
          transform: translate(-50%, -50%) scale(.92);
      }
  }

  @keyframes readoutReveal {

      0%,
      56% {
          opacity: 0;
          transform: translateY(8px);
      }

      63%,
      82% {
          opacity: 1;
          transform: translateY(0);
      }

      90%,
      100% {
          opacity: 0;
          transform: translateY(8px);
      }
  }

  @media (max-width:940px) {
      .hero {
          padding-top: 130px;
      }

      .hero-mock-wrap {
          height: 300px;
      }

      .sequence-readout {
          right: 4%;
      }

      .protein-seq {
          left: 3%;
          right: 3%;
          font-size: 11px;
      }
  }

  @media (max-width:640px) {
      .hero {
          padding-top: 112px;
          padding-bottom: 44px;
      }

      .hero h1 {
          font-size: clamp(38px, 11vw, 54px);
      }

      .hero .lede {
          font-size: 16px;
      }

      .hero-foot {
          font-size: 8px;
          gap: 10px 16px;
      }

      .hero-mock-wrap {
          height: 235px;
          margin-top: 26px;
      }

      .protein-seq {
          top: 98px;
          font-size: 8px;
          letter-spacing: .02em;
      }

      .search-beam {
          width: 104px;
          height: 104px;
      }

      .lens-crosshair {
          inset: 28px;
      }

      .search-beam::after {
          width: 35px;
          right: -25px;
          bottom: -14px;
      }

      .sequence-readout {
          right: 1%;
          top: 10px;
          min-width: 165px;
          padding: 10px 11px;
      }

      .sequence-readout .hit {
          font-size: 13px;
      }

      .sequence-status {
          bottom: 2px;
          font-size: 7px;
      }
  }

  @media (prefers-reduced-motion:reduce) {

      .search-beam,
      .sequence-readout {
          animation: none;
      }
  }

  .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 14px 28px;
      border-radius: 999px;
      font-size: 14.5px;
      font-weight: 600;
      border: 1px solid transparent;
      transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s cubic-bezier(.22, 1, .36, 1), background .3s ease;
  }

  .btn-primary {
      background: var(--primary-blue);
      color: #fff;
  }

  .btn-primary:hover {
      background: var(--deep-blue);
      transform: translateY(-2px);
      box-shadow: var(--shadow-banner);
  }

  .btn-primary .arrow {
      transition: transform .3s cubic-bezier(.22, 1, .36, 1);
  }

  .btn-primary:hover .arrow {
      transform: translateX(4px);
  }

  .btn-ghost {
      color: var(--ink);
      border-color: var(--line-light);
  }

  .btn-ghost:hover {
      border-color: var(--primary-blue);
      color: var(--primary-blue);
      transform: translateY(-2px);
  }

  @media (max-width:640px) {
      .hero {
          padding-top: 150px;
      }

      .mock-seq {
          font-size: 13px;
      }
  }

  /* STAT ROW (dark banner) */
  .stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 56px;
  }

  @media (max-width:760px) {
      .stat-row {
          grid-template-columns: 1fr;
      }
  }

  .stat {
      background: rgba(255, 255, 255, .06);
      border: 1px solid var(--line-dark);
      border-radius: var(--radius);
      padding: 36px 30px;
      transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s cubic-bezier(.22, 1, .36, 1), background .4s cubic-bezier(.22, 1, .36, 1);
  }

  .stat:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, .1);
      box-shadow: var(--shadow-banner);
  }

  .stat .num {
      font-family: 'Inter';
      font-size: 72px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -.02em;
      background: linear-gradient(135deg, #ffffff 0%, var(--light-blue) 55%, var(--accent-blue) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 44px rgba(127, 166, 218, .45);
      display: inline-block;
      transform: scale(1);
      transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
  }

  .stat .num.pop {
      transform: scale(1.1);
  }

  .stat .bar {
      width: 38px;
      height: 3px;
      background: var(--accent-blue);
      border-radius: 2px;
      margin-top: 14px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .6s cubic-bezier(.22, 1, .36, 1);
  }

  .stat.counted .bar {
      transform: scaleX(1);
  }

  .stat .cap {
      margin-top: 16px;
      color: #cfe1f4;
      font-size: 14px;
      max-width: 280px;
  }

  /* PROSE */
  .prose {
     
      color: var(--text-muted);
      font-size: 16.5px;
  }

  .dark .prose {
      color: #cfe1f4;
  }

  .prose+.prose {
      margin-top: 18px;
  }

  /* SPEC GRID — clean, static category facts */
  .spec-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--line-light);
      border: 1px solid var(--line-light);
      margin-top: 40px;
  }

  @media (max-width:900px) {
      .spec-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width:520px) {
      .spec-grid {
          grid-template-columns: 1fr;
      }
  }

  .spec-card {
      background: #fff;
      padding: 30px 26px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: background .3s ease;
  }

  .spec-card:hover {
      background: var(--light-blue);
  }

  .spec-card .tag {
      font-family: 'IBM Plex Mono';
      font-size: 11.5px;
      letter-spacing: .03em;
      color: var(--primary-blue);
  }

  .spec-card .val {
      font-family: 'Inter';
      font-size: 21px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.3;
  }

  /* PRODUCTS */
  .prod-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
  }

  @media (max-width:820px) {
      .prod-grid {
          grid-template-columns: 1fr;
      }
  }

  .prod-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s cubic-bezier(.22, 1, .36, 1);
  }

  .prod-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-banner);
  }

  .prod-head {
      position: relative;
      overflow: hidden;
      padding: 32px 34px 30px;
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-blue) 70%, var(--navy) 100%);
  }

  .prod-head::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(circle at 88% 12%, rgba(127, 166, 218, .4), transparent 55%);
  }

  .prod-badge {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .28);
      color: var(--light-blue);
      font-family: 'IBM Plex Mono';
      font-size: 11px;
      letter-spacing: .02em;
      padding: 6px 13px;
      border-radius: 20px;
  }

  .mark-sm {
      width: 6px;
      height: 6px;
      background: var(--light-blue);
      border-radius: 1px;
      transform: rotate(45deg);
      flex: none;
  }

  .prod-head h3 {
      position: relative;
      color: #fff;
      font-size: 30px;
      margin-top: 16px;
  }

  .prod-head .role {
      position: relative;
      color: #cfe1f4;
      font-size: 13.5px;
      margin-top: 5px;
      font-family: 'IBM Plex Mono';
  }

  .prod-topline {
      position: relative;
      display: flex;
      align-items: center;
      gap: 14px;
      min-height: 50px;
      margin-bottom: 18px;
  }

  .co-scientist-logo {
      position: relative;
      width: 50px;
      height: 50px;
      padding: 8px;
      object-fit: contain;
      object-position: center;
      display: block;
      flex: 0 0 50px;

      /* profile-style circle */
      background: rgba(255, 255, 255, .94);
      border: 1px solid rgba(255, 255, 255, .65);
      border-radius: 50%;

      /* subtle separation from blue header */
      box-shadow:
          0 2px 8px rgba(0, 20, 45, .16),
          inset 0 0 0 1px rgba(255, 255, 255, .35);
  }

  .prod-head .prod-badge {
      margin: 0;
      white-space: nowrap;
  }

  .wip-icon img {
      width: 30px;
      height: 30px;
      object-fit: contain;
      display: block;
  }

  .prod-body {
      padding: 28px 34px 34px;
  }

  .prod-body p {
      color: var(--text-muted);
      font-size: 15.5px;
  }

  .roadmap {
      margin-top: 56px;
      border-top: 1px solid var(--line-light);
      padding-top: 44px;
  }

  .roadmap h4 {
      font-size: 15px;
      color: var(--primary-blue);
      font-family: 'IBM Plex Mono';
      font-weight: 400;
  }

  .roadmap ul {
      list-style: none;
      margin: 20px 0 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 40px;
  }

  @media (max-width:700px) {
      .roadmap ul {
          grid-template-columns: 1fr;
      }
  }

  .roadmap li {
      color: var(--text-muted);
      font-size: 15px;
      padding-left: 18px;
      position: relative;
  }

  .roadmap li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 8px;
      height: 2px;
      background: var(--accent-blue);
  }

  .wip-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 26px;
  }

  @media (max-width:900px) {
      .wip-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width:520px) {
      .wip-grid {
          grid-template-columns: 1fr;
      }
  }

  .wip-card {
      border: 1px dashed var(--line-light);
      border-radius: var(--radius);
      padding: 20px 18px;
      background: rgba(255, 255, 255, .5);
      transition: transform .35s cubic-bezier(.22, 1, .36, 1), border-color .35s ease, background .35s ease;
  }

  .wip-card:hover {
      transform: translateY(-3px);
      border-color: var(--accent-blue);
      border-style: solid;
      background: #fff;
  }

  .wip-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
  }

  .wip-badge {
      display: inline-block;
      font-family: 'IBM Plex Mono';
      font-size: 10px;
      letter-spacing: .04em;
      color: var(--text-muted);
      border: 1px solid var(--line-light);
      border-radius: 20px;
      padding: 4px 10px;
  }

  .wip-name {
      font-size: 19px;
      color: var(--ink);
      margin-top: 12px;
  }

  .wip-role {
      color: var(--text-muted);
      font-size: 12.5px;
      margin-top: 4px;
      font-family: 'IBM Plex Mono';
  }

  /* CUSTOMERS SEGMENTS */
  .seg-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 48px;
  }

  @media (max-width:820px) {
      .seg-grid {
          grid-template-columns: 1fr;
      }
  }

  .seg {
      background: #fff;
      border: 1px solid var(--line-light);
      border-radius: var(--radius);
      padding: 26px 24px;
      box-shadow: var(--shadow-soft);
      transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  }

  .seg:hover {
      transform: translateY(-4px);
  }

  .seg h4 {
      font-size: 14px;
      font-family: 'IBM Plex Mono';
      color: var(--primary-blue);
      font-weight: 400;
  }

  .seg ul {
      list-style: none;
      margin: 16px 0 0;
      padding: 0;
  }

  .seg li {
      color: var(--text-muted);
      font-size: 14.5px;
      padding: 8px 0;
      border-top: 1px solid var(--line-light);
  }

  .seg li:first-child {
      border-top: none;
  }

  /* VALUE PILLARS — HORIZONTAL GRID */
  #value .pillars {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
      align-items: stretch;
      margin-top: 30px;
      border-top: 1px solid var(--line-light);
  }

  #value .pillar {
      min-width: 0;
      height: 100%;
      display: block;
      padding: 26px 22px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 10px;
      transition: transform .25s ease, background .25s ease, border-color .25s ease;
  }

  #value .pillar:hover {
      transform: translateY(-3px);
      background: rgba(255, 255, 255, .09);
      border-color: rgba(255, 255, 255, .24);
  }

  #value .pillar h4 {
      font-size: 19px;
      font-family: 'Inter';
      color: var(--text-light);
      margin-bottom: 12px;
  }

  #value .pillar .items {
      color: var(--text-light);
      font-size: 15px;
  }

  #value .pillar .items span {
      display: block;
      padding: 3px 0;
  }

  @media (max-width:1100px) {
      #value .pillars {
          grid-template-columns: repeat(3, 1fr);
      }
  }

  @media (max-width:700px) {
      #value .pillars {
          grid-template-columns: 1fr;
          gap: 16px;
      }
  }

  /* DIFFERENTIATION (dark) */
  .diff-list {
      margin-top: 52px;
      display: flex;
      flex-direction: column;
  }

  .diff {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 24px;
      padding: 30px 0;
      border-top: 1px solid var(--line-dark);
      transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  }

  .diff:hover {
      transform: translateX(6px);
  }

  .diff:last-child {
      border-bottom: 1px solid var(--line-dark);
  }

  .diff .n {
      font-family: 'Inter';
      font-size: 30px;
      color: var(--accent-blue);
  }

  .diff h4 {
      font-size: 19px;
      margin-bottom: 10px;
      color: #fff;
  }

  .diff p {
      color: #cfe1f4;
      font-size: 15px;
      max-width: 640px;
  }

  /* FAQ */
  .faq {
      margin-top: 44px;
      border-top: 1px solid var(--line-light);
  }

  .faq-item {
      border-bottom: 1px solid var(--line-light);
  }

  .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      color: var(--ink);
      font-family: 'Inter';
      font-size: 17px;
      padding: 24px 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
  }

  .faq-q:hover {
      color: var(--primary-blue);
  }

  .faq-q .ind {
      font-family: 'IBM Plex Mono';
      color: var(--primary-blue);
      font-size: 20px;
      flex: none;
      transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  }

  .faq-item.open .ind {
      transform: rotate(45deg);
  }

  .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
  }

  .faq-a p {
      color: var(--text-muted);
      font-size: 15.5px;
      padding-bottom: 24px;
      
  }

  /* TEAM */
  .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
  }

  @media (max-width:820px) {
      .team-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width:560px) {
      .team-grid {
          grid-template-columns: 1fr;
      }
  }

  .member {
      background: #fff;
      border-radius: var(--radius);
      padding: 30px 26px;
      box-shadow: var(--shadow-soft);
      transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s cubic-bezier(.22, 1, .36, 1);
  }

  .member:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-banner);
  }

  .avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--primary-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter';
      font-weight: 600;
      color: #fff;
      font-size: 15px;
      margin-bottom: 18px;
  }

  .avatar-img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      margin-bottom: 18px;
      background: var(--primary-blue);
  }

  .member h5 {
      font-family: 'Inter';
      font-size: 16px;
      color: var(--ink);
  }

  .member .role {
      color: var(--text-muted);
      font-size: 13px;
      margin-top: 4px;
      font-family: 'IBM Plex Mono';
  }

  .learn-more {
      margin-top: 16px;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'IBM Plex Mono';
      font-size: 12.5px;
      color: var(--primary-blue);
  }

  .lm-arrow {
      transition: transform .3s cubic-bezier(.22, 1, .36, 1);
  }

  .learn-more:hover .lm-arrow {
      transform: translateX(4px);
  }

  /* TEAM DETAIL SLIDE PANEL */
  .team-overlay {
      position: fixed;
      inset: 0;
      background: rgba(1, 28, 56, .55);
      backdrop-filter: blur(2px);
      z-index: 90;
      opacity: 0;
      visibility: hidden;
      transition: opacity .4s ease;
  }

  .team-overlay.active {
      opacity: 1;
      visibility: visible;
  }

  .team-slide-panel {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(480px, 92vw);
      background: #fff;
      z-index: 91;
      box-shadow: -18px 0 40px rgba(0, 0, 0, .25);
      transform: translateX(100%);
      transition: transform .45s cubic-bezier(.22, 1, .36, 1);
      overflow-y: auto;
  }

  .team-slide-panel.active {
      transform: translateX(0);
  }

  .team-slide-content {
      padding: 56px 40px 60px;
      position: relative;
  }

  .team-close-btn {
      position: absolute;
      top: 22px;
      right: 22px;
      background: none;
      border: none;
      font-size: 26px;
      line-height: 1;
      color: var(--text-muted);
      cursor: pointer;
      transition: color .2s;
  }

  .team-close-btn:hover {
      color: var(--primary-blue);
  }

  .slide-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--primary-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter';
      font-weight: 600;
      color: #fff;
      font-size: 22px;
      margin-bottom: 22px;
  }

  .slide-photo {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 22px;
      background: var(--primary-blue);
  }

  #slide-name {
      font-family: 'Inter';
      font-size: 24px;
      color: var(--ink);
  }

  .slide-role {
      color: var(--primary-blue);
      font-size: 13.5px;
      font-family: 'IBM Plex Mono';
      margin-top: 6px;
  }

  .slide-bio {
      margin-top: 26px;
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.7;
  }

  .slide-bio p {
      margin: 0 0 16px;
  }

  .slide-bio em {
      color: var(--ink);
      font-style: italic;
  }

  body.panel-open {
      overflow: hidden;
  }

  /* NEWS */
  .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
  }

  @media (max-width:900px) {
      .news-grid {
          grid-template-columns: 1fr;
      }
  }

  .news-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 30px 26px;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-soft);
      transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s cubic-bezier(.22, 1, .36, 1);
  }

  .news-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-banner);
  }

  .news-card .cat {
      font-family: 'IBM Plex Mono';
      font-size: 11px;
      color: var(--primary-blue);
  }

  .news-card .date {
      color: var(--text-muted);
      font-size: 12.5px;
      margin-top: 8px;
  }

  .news-card h5 {
      font-size: 17px;
      margin-top: 12px;
      line-height: 1.35;
      color: var(--ink);
  }

  .news-card p {
      color: var(--text-muted);
      font-size: 14px;
      margin-top: 12px;
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }

  .news-card a {
      margin-top: 18px;
      color: var(--primary-blue);
      font-size: 13.5px;
      font-family: 'IBM Plex Mono';
  }

  .news-card a:hover {
      text-decoration: underline;
  }

  /* CONTACT */
  .contact-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 60px;
      margin-top: 48px;
  }

  @media (max-width:860px) {
      .contact-grid {
          grid-template-columns: 1fr;
      }
  }

  .field {
      margin-bottom: 18px;
  }

  .field label {
      display: block;
      font-size: 13px;
      color: var(--primary-blue);
      margin-bottom: 8px;
      font-family: 'IBM Plex Mono';
  }

  .field input,
  .field textarea {
      width: 100%;
      background: #fff;
      border: 1px solid var(--line-light);
      color: var(--ink);
      padding: 12px 14px;
      font-family: 'IBM Plex Sans';
      font-size: 15px;
      border-radius: var(--radius);
      transition: border-color .3s ease, box-shadow .3s ease;
  }

  .field input:focus,
  .field textarea:focus {
      border-color: var(--accent-blue);
      box-shadow: 0 0 0 3px rgba(127, 166, 218, .25);
  }

  .consent {
      font-size: 12.5px;
      color: var(--text-muted);
      margin-bottom: 20px;
  }

  .consent a {
      color: var(--primary-blue);
  }

  .contact-info dt {
      font-family: 'IBM Plex Mono';
      font-size: 12px;
      color: var(--primary-blue);
      margin-top: 26px;
  }

  .contact-info dd {
      margin: 6px 0 0;
      color: var(--ink);
      font-size: 16px;
  }

  #divMessage {
      display: none;
      color: #1a7f4f;
      font-size: 14px;
      margin-top: 14px;
  }

  footer {
      padding: 56px 0 40px;
  }

  .foot-grid {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
  }

  .foot-links {
      display: flex;
      gap: 26px;
      flex-wrap: wrap;
      color: #cfe1f4;
      font-size: 13.5px;
  }

  .foot-links a:hover {
      color: var(--accent-blue);
  }

  .copyright {
    
      color: #7fa0c4;
      font-size: 12.5px;
  }

  @media (max-width: 560px) {
      .prod-topline {
          align-items: flex-start;
          gap: 11px;
      }

      .prod-head .prod-badge {
          white-space: normal;
          line-height: 1.35;
      }

      .co-scientist-logo {
          width: 38px;
          height: 38px;
          flex-basis: 38px;
      }
  }
  