    :root {
      --ink: #0E2233;
      --ink-soft: #16344B;
      --paper: #F3F6F4;
      --paper-raised: #FFFFFF;
      --vital: #1FA98C;
      --pulse: #F2A24B;
      --slate: #5C6B73;
      --line: #D8DEDB;
      --line-dark: #284B63;
      --display: 'Space Grotesk', sans-serif;
      --body: 'IBM Plex Sans', sans-serif;
      --mono: 'IBM Plex Mono', monospace;
      --maxw: 1180px;
      --radius: 6px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--body);
      color: var(--ink);
      background: var(--paper);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
    }

    .wrap {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 28px;
    }

    /* ---------- Focus ---------- */
    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--vital);
      outline-offset: 3px;
      border-radius: 2px;
    }

    /* ---------- Eyebrow / labels ---------- */
    .eyebrow {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--vital);
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--vital);
      box-shadow: 0 0 0 3px rgba(31, 169, 140, .18);
      flex-shrink: 0;
    }

    .eyebrow.on-dark {
      color: #7CE0CC;
    }

    .eyebrow.on-dark::before {
      background: #7CE0CC;
      box-shadow: 0 0 0 3px rgba(124, 224, 204, .18);
    }

    /* ---------- Nav ---------- */
    header.site-nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(243, 246, 244, .85);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 28px;
      max-width: var(--maxw);
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--display);
      font-weight: 700;
      font-size: 18px;
      letter-spacing: .02em;
      text-decoration: none;
      color: var(--ink);
    }

    .logo .mark {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1.5px solid var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--mono);
      font-size: 13px;
      font-weight: 600;
      position: relative;
      flex-shrink: 0;
    }

    .logo .mark::after {
      content: "";
      position: absolute;
      width: 6px;
      height: 6px;
      background: var(--vital);
      border-radius: 50%;
      top: -1px;
      right: -1px;
      box-shadow: 0 0 0 2px var(--paper);
    }

    nav.nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
      font-size: 14px;
    }

    nav.nav-links a {
      text-decoration: none;
      color: var(--ink-soft);
      font-weight: 500;
      position: relative;
      padding: 4px;
    }

    nav.nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--vital);
      transition: width .2s ease;
    }

    nav.nav-links a:hover::after {
      width: 100%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--mono);
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      padding: 12px 22px;
      border-radius: 999px;
      border: 1.5px solid var(--ink);
      color: var(--ink);
      transition: all .2s ease;
      letter-spacing: .02em;
      white-space: nowrap;
    }

    .btn:hover {
      background: var(--ink);
      color: var(--paper);
    }

    .btn.primary {
      background: var(--ink);
      color: var(--paper);
    }

    .btn.primary:hover {
      background: var(--vital);
      border-color: var(--vital);
      color: #fff;
    }

    .btn.on-dark {
      border-color: rgba(255, 255, 255, .4);
      color: #fff;
    }

    .btn.on-dark:hover {
      background: #fff;
      color: var(--ink);
      border-color: #fff;
    }

    .btn.on-dark.primary {
      background: var(--vital);
      border-color: var(--vital);
      color: var(--ink);
    }

    .btn.on-dark.primary:hover {
      background: #fff;
      border-color: #fff;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
    }

    .menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
    }

    /* ---------- Hero ---------- */
    .hero {
      padding: 40px 0 60px;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1.3fr .9fr;
      gap: 64px;
      align-items: center;
    }

    .hero h1 {
      font-family: var(--display);
      font-weight: 700;
		font-size:40px;
/*       font-size: clamp(2.4rem, 5vw, 3.6rem); */
      line-height: 1.1;
      margin: 18px 0 22px;
      letter-spacing: -0.01em;
    }

    .hero h1 .accent {
      color: var(--vital);
    }

    .hero p.lead {
      font-size: 17px;
      color: var(--slate);
      max-width: 540px;
      margin-bottom: 32px;
    }

    .hero .cta-row {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      margin-top: 40px;
      padding-top: 28px;
      border-top: 1px solid var(--line);
    }

    .hero-stats .stat {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .hero-stats .num {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(1.5rem, 2.4vw, 1.9rem);
      color: var(--ink);
      line-height: 1;
    }

    .hero-stats .num .accent {
      color: var(--vital);
    }

    .hero-stats .label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--slate);
    }

    /* Hero side card */
    .id-card {
      background: var(--paper-raised);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: 0 18px 40px -28px rgba(14, 34, 51, .35);
    }

    .id-card .tag {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--slate);
      border-bottom: 1px solid var(--line);
      padding-bottom: 14px;
      margin-bottom: 16px;
      display: flex;
      justify-content: space-between;
    }

    .id-card h3 {
      font-family: var(--display);
      font-size: 22px;
      margin-bottom: 4px;
    }

    .id-card .role {
      color: var(--vital);
      font-family: var(--mono);
      font-size: 13px;
      margin-bottom: 18px;
    }

    .id-card ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .id-card li {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      border-bottom: 1px dashed var(--line);
      padding-bottom: 8px;
      color: var(--ink-soft);
    }

    .id-card li span:last-child {
      font-family: var(--mono);
      color: var(--ink);
      font-weight: 600;
    }

    /* ---------- Vitals strip (signature) ---------- */
    .vitals {
      background: var(--ink);
      color: #fff;
      padding: 36px 0 28px;
      position: relative;
      overflow: hidden;
    }

    .vitals .wrap {
      position: relative;
    }

    .vitals-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
      flex-wrap: wrap;
      gap: 10px;
    }

    .vitals-head .readout-label {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #7CE0CC;
    }

    .vitals-head .readout-time {
      font-family: var(--mono);
      font-size: 12px;
      color: rgba(255, 255, 255, .45);
      letter-spacing: .05em;
    }

    .ecg {
      width: 100%;
      height: auto;
      display: block;
    }

    .ecg path {
      fill: none;
      stroke: var(--vital);
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
/*       stroke-dasharray: 4800; */
/*       stroke-dashoffset: 4800; */
/*       transition: stroke-dashoffset 2.4s cubic-bezier(.2, .7, .2, 1); */
    }

/*     .vitals.in-view .ecg path {
      stroke-dashoffset: 0;
    }
 */
    .ecg-baseline {
      stroke: rgba(255, 255, 255, .12) !important;
      stroke-width: 1 !important;
      stroke-dasharray: none !important;
      stroke-dashoffset: 0 !important;
      transition: none !important;
    }

    .vitals-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 18px;
    }

    .vitals-grid .stat {
      text-align: center;
      border-left: 1px solid rgba(255, 255, 255, .12);
      padding-left: 20px;
    }

    .vitals-grid .stat:first-child {
      border-left: none;
      padding-left: 0;
    }

    .vitals-grid .num {
      font-family: var(--display);
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      font-weight: 700;
      color: var(--vital);
      line-height: 1;
    }

    .vitals-grid .label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6);
      margin-top: 8px;
    }

    /* ---------- Generic section ---------- */
    section {
      padding: 40px 0;
    }

    .section-head {
      max-width: 680px;
      margin-bottom: 48px;
    }

    .section-head h2 {
      font-family: var(--display);
      font-size: clamp(1.9rem, 3.4vw, 2.6rem);
      font-weight: 700;
      margin-top: 14px;
      letter-spacing: -0.01em;
    }

    .section-head p {
      color: var(--slate);
      margin-top: 14px;
      font-size: 16px;
      max-width: 560px;
    }

    /* ---------- About ---------- */
    .about-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 64px;
      align-items: start;
    }

    .monogram-block {
      position: sticky;
      top: 110px;
    }

    .monogram {
      width: 100%;
      aspect-ratio: 1/1;
      border-radius: 50%;
      border: 1.5px solid var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background:
        repeating-linear-gradient(135deg, rgba(31, 169, 140, .05) 0 2px, transparent 2px 14px);
    }

    .monogram img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      position: relative;
      z-index: 1;
    }

    .monogram::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px dashed var(--line-dark);
      border-radius: 50%;
      opacity: .35;
      z-index: 2;
      pointer-events: none;
    }

    .monogram .letters {
      font-family: var(--display);
      font-size: clamp(3.2rem, 9vw, 5.2rem);
      font-weight: 700;
      color: var(--ink);
    }

    .monogram .ring-label {
      position: absolute;
      bottom: 14%;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #fff;
      background: rgba(14, 34, 51, .65);
      padding: 6px 14px;
      border-radius: 999px;
      z-index: 3;
    }

    .about-meta {
      margin-top: 22px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-family: var(--mono);
      font-size: 13px;
      color: var(--slate);
    }

    .about-meta a {
      text-decoration: none;
      color: var(--ink);
      border-bottom: 1px solid var(--vital);
    }

    .about-copy p {
      margin-bottom: 18px;
      color: var(--ink-soft);
      font-size: 16px;
    }

    .about-copy p:first-of-type {
      font-size: 19px;
      color: var(--ink);
      font-weight: 500;
    }

    .focus-tags {
      margin-top: 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .focus-tags span {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .05em;
      padding: 8px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--ink-soft);
      background: var(--paper-raised);
    }

    /* ---------- Principles ---------- */
    .principles {
      background: var(--paper-raised);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .principles-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .principle {
      background: var(--paper-raised);
      padding: 30px 26px;
    }

    .principle .num {
      font-family: var(--mono);
      font-size: 12px;
      color: var(--vital);
      letter-spacing: .1em;
    }

    .principle h3 {
      font-family: var(--display);
      font-size: 19px;
      margin: 14px 0 8px;
    }

    .principle p {
      font-size: 14px;
      color: var(--slate);
    }

    /* ---------- Why partner ---------- */
    .why {
      background: var(--paper);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .why-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper-raised);
      padding: 28px 24px;
      transition: border-color .2s ease, transform .2s ease;
    }

    .why-card:hover {
      border-color: var(--vital);
      transform: translateY(-2px);
    }

    .why-card .ico-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1.5px solid var(--vital);
      color: var(--vital);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .why-card .ico-circle svg {
      width: 22px;
      height: 22px;
    }

    .why-card h3 {
      font-family: var(--display);
      font-size: 18px;
      margin-bottom: 8px;
    }

    .why-card p {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.55;
    }

    /* ---------- Expertise ---------- */
    .expertise-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .expertise-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 32px;
      background: var(--paper-raised);
      transition: border-color .2s ease, transform .2s ease;
    }

    .expertise-card:hover {
      border-color: var(--vital);
      transform: translateY(-2px);
    }

    .expertise-card .icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .expertise-card h3 {
      font-family: var(--display);
      font-size: 20px;
      margin-bottom: 10px;
    }

    .expertise-card p {
      color: var(--slate);
      font-size: 15px;
    }

    .expertise-card .tag {
      display: inline-block;
      margin-top: 16px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--vital);
    }

    /* ---------- Domain expertise ---------- */
    .domain {
      background: var(--paper-raised);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .domain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .domain-item {
      display: flex;
      align-items: center;
      gap: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 18px 20px;
      background: var(--paper);
      font-size: 14.5px;
      color: var(--ink-soft);
      font-weight: 500;
      transition: border-color .2s ease, transform .2s ease;
    }

    .domain-item:hover {
      border-color: var(--vital);
      transform: translateY(-2px);
    }

    .domain-item .ico {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1.5px solid var(--vital);
      color: var(--vital);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--mono);
      font-size: 13px;
      font-weight: 700;
    }

    /* ---------- Flagship solutions ---------- */
    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .solution-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      background: var(--paper-raised);
      text-decoration: none;
      color: var(--ink);
      transition: border-color .2s ease, transform .2s ease;
    }

    .solution-card:hover {
      border-color: var(--vital);
      transform: translateY(-2px);
    }

    .solution-card h3 {
      font-family: var(--display);
      font-size: 19px;
      margin-bottom: 10px;
    }

    .solution-card p {
      color: var(--slate);
      font-size: 14.5px;
      margin-bottom: 18px;
    }

    .solution-card .link-out {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--vital);
    }

    /* ---------- Skills matrix ---------- */
    .skills {
      background: var(--paper-raised);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .skills-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 48px;
    }

    .skill-block h3 {
      font-family: var(--display);
      font-size: 17px;
      margin-bottom: 14px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--line);
    }

    .skill-block .focus-tags {
      margin-top: 0;
    }

    /* ---------- Compliance band ---------- */
    .compliance {
      background: var(--ink);
      color: #fff;
    }

    .compliance .section-head h2 {
      color: #fff;
    }

    .compliance .section-head p {
      color: rgba(255, 255, 255, .6);
    }

    .compliance-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .compliance-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: .06em;
      padding: 14px 20px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 999px;
      background: rgba(255, 255, 255, .03);
    }

    .compliance-pill .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--vital);
      box-shadow: 0 0 0 3px rgba(31, 169, 140, .2);
      flex-shrink: 0;
    }

    .compliance-pill .full {
      color: rgba(255, 255, 255, .45);
      font-weight: 400;
    }

    /* ---------- Vision ---------- */
    .vision {
      background: var(--paper);
    }

    .vision-inner {
      border-left: 3px solid var(--vital);
      padding-left: 40px;
      max-width: 820px;
    }

    .vision .eyebrow {
      margin-bottom: 22px;
    }

    .vision blockquote {
      font-family: var(--display);
      font-size: clamp(1.5rem, 3.2vw, 2.2rem);
      font-weight: 500;
      line-height: 1.45;
      color: var(--ink);
    }

    .vision cite {
      display: block;
      margin-top: 24px;
      font-family: var(--mono);
      font-size: 13px;
      color: var(--slate);
      font-style: normal;
    }

    /* ---------- Awards ---------- */
    .awards {
      background: var(--paper-raised);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .awards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .award-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--paper);
      display: flex;
      flex-direction: column;
      transition: border-color .2s ease, transform .2s ease;
    }

    .award-card:hover {
      border-color: var(--vital);
      transform: translateY(-2px);
    }

    .award-card .award-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--line);
    }

    .award-card .award-body {
      padding: 24px;
    }

    .award-card .award-meta {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--vital);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .award-card .award-meta::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--vital);
      flex-shrink: 0;
    }

    .award-card h3 {
      font-family: var(--display);
      font-size: 18px;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .award-card p {
      font-size: 14px;
      color: var(--slate);
    }

    /* ---------- Core Values ---------- */
    .values {
      background: var(--paper-raised);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .value-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      padding: 28px 24px;
      transition: border-color .2s ease, transform .2s ease;
    }

    .value-card:hover {
      border-color: var(--vital);
      transform: translateY(-2px);
    }

    .value-card .ico-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1.5px solid var(--vital);
      color: var(--vital);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .value-card .ico-circle svg {
      width: 22px;
      height: 22px;
    }

    .value-card h3 {
      font-family: var(--display);
      font-size: 18px;
      margin-bottom: 8px;
    }

    .value-card p {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.55;
    }

    /* ---------- Testimonials ---------- */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 32px;
    }

    .testimonial-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper-raised);
      padding: 26px;
      display: flex;
      flex-direction: column;
      transition: border-color .2s ease, transform .2s ease;
    }

    .testimonial-card:hover {
      border-color: var(--vital);
      transform: translateY(-2px);
    }

    .testimonial-card .quote-mark {
      font-family: var(--display);
      font-size: 36px;
      line-height: 1;
      color: var(--vital);
      margin-bottom: 6px;
    }

    .testimonial-card p {
      font-size: 13.5px;
      color: var(--ink-soft);
      line-height: 1.6;
      flex: 1;
      margin-bottom: 18px;
    }

    .testimonial-card .person {
      border-top: 1px solid var(--line);
      padding-top: 14px;
    }

    .testimonial-card .person .name {
      font-family: var(--display);
      font-size: 15px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 2px;
    }

    .testimonial-card .person .role {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--slate);
      letter-spacing: .03em;
      line-height: 1.5;
    }

    /* ---------- Media / Video Testimonials ---------- */
    .media {
      background: var(--paper-raised);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .media-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .video-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--paper);
      transition: border-color .2s ease, transform .2s ease;
    }

    .video-card:hover {
      border-color: var(--vital);
      transform: translateY(-2px);
    }

    .video-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--ink);
    }

    .video-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .video-body {
      padding: 18px 22px;
    }

    .video-tag {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--vital);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .video-tag::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--vital);
      flex-shrink: 0;
    }

    .video-card h3 {
      font-family: var(--display);
      font-size: 16px;
      line-height: 1.35;
    }


    .testimonials {
      background: var(--paper);
    }

    .testimonial-cta {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper-raised);
      padding: 48px;
      text-align: center;
    }

    .testimonial-cta .quote-mark {
      font-family: var(--display);
      font-size: 64px;
      line-height: 1;
      color: var(--vital);
      margin-bottom: 8px;
    }

    .testimonial-cta p {
      max-width: 560px;
      margin: 0 auto 24px;
      color: var(--slate);
      font-size: 16px;
    }

    /* ---------- CTA Banner ---------- */
    .cta-banner {
      background: var(--ink);
      color: #fff;
    }

    .cta-banner-inner {
      text-align: center;
      max-width: 760px;
      margin: 0 auto;
    }

    .cta-banner .eyebrow {
      justify-content: center;
    }

    .cta-banner h2 {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      line-height: 1.15;
      margin: 16px 0 18px;
    }

    .cta-banner h2 .accent {
      color: var(--vital);
    }

    .cta-banner p {
      color: rgba(255, 255, 255, .65);
      font-size: 16px;
      margin: 0 auto 32px;
      max-width: 580px;
    }

    .cta-banner .cta-row {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .cta-banner-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .cta-banner-stats .stat {
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-items: center;
    }

    .cta-banner-stats .num {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(1.4rem, 2.4vw, 1.8rem);
      color: var(--vital);
    }

    .cta-banner-stats .label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
    }

    /* ---------- Insights ---------- */
    .insights-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .insight-card {
      border-top: 3px solid var(--vital);
      padding-top: 22px;
    }

    .insight-card .topic-no {
      font-family: var(--mono);
      font-size: 12px;
      color: var(--slate);
      letter-spacing: .1em;
    }

    .insight-card h3 {
      font-family: var(--display);
      font-size: 19px;
      margin: 12px 0 10px;
    }

    .insight-card p {
      color: var(--slate);
      font-size: 14.5px;
    }

    /* ---------- Contact ---------- */
    .contact {
      background: var(--ink-soft);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .contact-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 32px;
    }

    .contact h2 {
      font-family: var(--display);
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 700;
      max-width: 560px;
      line-height: 1.2;
    }

    .contact .eyebrow {
      margin-bottom: 16px;
    }

    .contact-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* ---------- Footer ---------- */
    footer {
      background: var(--ink);
      color: rgba(255, 255, 255, .55);
      padding: 36px 0;
      font-size: 13px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    footer .logo {
      color: #fff;
    }

    footer .logo .mark {
      border-color: rgba(255, 255, 255, .4);
      color: #fff;
    }

    footer a {
      text-decoration: none;
      color: rgba(255, 255, 255, .65);
    }

    footer a:hover {
      color: var(--vital);
    }

    .footer-links {
      display: flex;
      gap: 24px;
      font-family: var(--mono);
    }

    /* ---------- Reveal animation ---------- */
    .reveal {
/*       opacity: 0; */
      transform: translateY(18px);
      transition: opacity .6s ease, transform .6s ease;
    }

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

    @media (prefers-reduced-motion: reduce) {
      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .ecg path {
        stroke-dashoffset: 0;
        transition: none;
      }

      html {
        scroll-behavior: auto;
      }
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 980px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .monogram-block {
        position: static;
        max-width: 280px;
        margin: 0 auto;
      }

      .principles-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .media-grid {
        grid-template-columns: 1fr;
      }

      .expertise-grid {
        grid-template-columns: 1fr;
      }

      .insights-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .vitals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 24px;
      }

      .vitals-grid .stat:nth-child(3) {
        border-left: none;
      }

      .awards-grid {
        grid-template-columns: 1fr;
      }

      .domain-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .solutions-grid {
        grid-template-columns: 1fr;
      }

      .skills-grid {
        grid-template-columns: 1fr;
      }

      .hero-stats {
        gap: 24px;
      }
    }

    @media (max-width: 720px) {
      nav.nav-links {
        position: fixed;
        inset: 64px 0 0 0;
        background: var(--paper);
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 28px;
        gap: 24px;
        font-size: 18px;
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 40;
        height: 100vh;
      }

      nav.nav-links.open {
        transform: translateX(0);
      }

      .menu-toggle {
        display: flex;
      }

      .nav-cta {
        display: none;
      }

      nav.nav-links .nav-cta-mobile {
        display: inline-flex;
        margin-top: 8px;
      }

      .principles-grid {
        grid-template-columns: 1fr;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .values-grid {
        grid-template-columns: 1fr;
      }

      .testimonial-grid {
        grid-template-columns: 1fr;
      }

      .domain-grid {
        grid-template-columns: 1fr;
      }

      section {
        padding: 64px 0;
      }

      .hero {
        padding: 48px 0 40px;
      }

      .hero-stats {
        gap: 20px 32px;
      }

      .vision-inner {
        padding-left: 22px;
      }

      .contact-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    .logo-img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      position: relative;
      border: 1px solid var(--vital);
    }

    .logo-img::after {
      content: "";
      position: absolute;
      width: 60px;
      height: 60px;
      background: var(--vital);
      border-radius: 50%;
      top: -1px;
      right: -1px;
      box-shadow: 0 0 0 2px var(--paper);
    }

    .nav-cta-mobile::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: none !important;
      transition: width .2s ease;
    }
p:empty,
br {
    display: none;
}
footer#colophon {
    display: none;
}



/* form */
.cta-grid{
    display:flex;
    gap:60px;
    align-items:center;
}

.cta-content{
    flex:1.2;
}

.cta-form{
    flex:0.8;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.cta-form h3{
    margin-bottom:20px;
    color:#111;
}

.cta-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.cta-form input,
.cta-form textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    outline:none;
}

.cta-form textarea{
    resize:none;
}

.cta-form .btn{
    width:100%;
}

@media(max-width:991px){

    .cta-grid{
        flex-direction:column;
    }

    .cta-content,
    .cta-form{
        width:100%;
    }
}