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

    :root {
      --bg: #F6F1E9;
      --bg-rgb: 246, 241, 233;
      --bg2: #EDE8DF;
      --bg3: #E2DCD3;
      --ink: #28201A;
      --ink2: #5C4E3C;
      --ink3: #9A8C7E;
      --dash: #C4B5A4;
      --ghost: rgba(40, 32, 26, 0.055);
      --mono: 'DM Mono', 'Courier New', Courier, monospace;
      --r: 3px;
    }

    html {
      font-size: 16px;
    }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--mono);
      line-height: 1.7;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }

    /* ── DASHED DIVIDER ──────────────────────────── */
    .dash {
      border: none;
      border-top: 1.5px dashed var(--dash);
      margin: 0;
    }

    /* ── NAV ─────────────────────────────────────── */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 2rem;
      position: relative;
      z-index: 10;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: .6rem
    }

    .nav-mark {
      color: var(--ink);
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      display: block;
    }

    .nav-wordmark {
      font-family: 'IBM Plex Mono', 'DM Mono', 'Courier New', monospace;
      font-size: .95rem;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: .04em;
    }

    .nav-tag {
      font-size: 11px;
      color: var(--ink3);
      letter-spacing: .02em;
    }

    .nav-cta {
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 400;
      color: var(--ink);
      text-decoration: none;
      letter-spacing: .03em;
      border-bottom: 1px solid var(--ink);
      padding-bottom: 1px;
      transition: opacity .15s;
    }

    .nav-cta:hover {
      opacity: .55
    }

    /* ── HERO ─────────────────────────────────────── */
    .hero-media {
      position: relative;
      width: 100%;
      min-height: 420px;
      background: var(--bg);
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }

    .hero-media-inner {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .9;
    }

    .hero-placeholder {
      position: absolute;
      inset: 0;
      background: var(--bg);
    }

    #laminar-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
    }

    .hero-caption {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 1.75rem 2rem;
      background: linear-gradient(to top, rgba(var(--bg-rgb), 0.95) 60%, transparent);
    }

    .hero-caption h1 {
      font-family: var(--mono);
      font-size: clamp(1.5rem, 3.5vw, 2.4rem);
      font-weight: 500;
      color: var(--ink);
      line-height: 1.2;
      letter-spacing: -.02em;
      max-width: 680px;
      margin-bottom: .75rem;
    }

    .hero-caption h1 em {
      font-style: italic;
      font-weight: 300;
    }

    /* ── HERO INTRO (below image) ─────────────────── */
    .hero-intro {
      max-width: 960px;
      margin: 0 auto;
      padding: 2.5rem 2rem 2rem;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      font-size: 10px;
      font-weight: 500;
      color: var(--ink2);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: .75rem;
    }

    .hero-sub {
      font-size: .925rem;
      color: var(--ink2);
      line-height: 1.8;
      max-width: 520px;
      font-weight: 300;
      text-align: justify;
    }

    .hero-actions {
      display: flex;
      flex-direction: column;
      gap: .6rem;
      align-items: flex-end;
      flex-shrink: 0;
    }

    .hero-note {
      max-width: 240px;
      font-size: 11px;
      color: var(--ink3);
      line-height: 1.6;
      text-align: right;
    }

    .hero-note a {
      color: var(--ink2);
      text-decoration: none;
      border-bottom: 1px solid var(--dash);
    }

    .hero-note a:hover {
      color: var(--ink);
    }

    .btn-primary {
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      color: var(--bg);
      background: var(--ink);
      padding: .55rem 1.25rem;
      border-radius: var(--r);
      text-decoration: none;
      letter-spacing: .03em;
      white-space: nowrap;
      transition: opacity .15s;
    }

    .btn-primary:hover {
      opacity: .75
    }

    .btn-secondary {
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 400;
      color: var(--ink2);
      text-decoration: none;
      letter-spacing: .03em;
      border-bottom: 1px solid var(--dash);
      padding-bottom: 1px;
      transition: border-color .15s, color .15s;
    }

    .btn-secondary:hover {
      color: var(--ink);
      border-color: var(--ink)
    }

    /* ── HERO REASSURANCE ────────────────────────── */
    .hero-reassure {
      max-width: 240px;
      font-size: 11px;
      color: var(--ink2);
      line-height: 1.6;
      text-align: right;
      margin-bottom: .15rem;
    }

    .hero-reassure strong {
      font-weight: 500;
      color: var(--ink);
    }

    /* ── REASSURANCE SECTION ─────────────────────── */
    .reassure-section {
      max-width: 960px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    .reassure-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      border: 1.5px dashed var(--dash);
      background: rgba(255, 255, 255, 0.18);
    }

    .reassure-item {
      padding: 1.25rem 1.5rem;
      border-bottom: 1.5px dashed var(--dash);
    }

    .reassure-item:last-child {
      border-bottom: none;
    }

    .reassure-q {
      display: block;
      font-size: .85rem;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: .01em;
      margin-bottom: .3rem;
    }

    .reassure-item p {
      font-size: .875rem;
      color: var(--ink2);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ── CTA NOTE ────────────────────────────────── */
    .cta-note {
      width: 100%;
      font-size: 11px;
      color: var(--ink3);
      letter-spacing: .02em;
      line-height: 1.6;
    }

    .cta-note strong {
      font-weight: 500;
      color: var(--ink2);
    }

    /* ── PROBLEM SECTION ─────────────────────────── */
    .problem-section {
      max-width: 960px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    .problem-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      border: 1.5px dashed var(--dash);
      background: rgba(255, 255, 255, 0.18);
    }

    .problem-item {
      padding: 1.25rem 1.5rem;
      border-bottom: 1.5px dashed var(--dash);
      font-size: .9rem;
      color: var(--ink2);
      line-height: 1.7;
      font-weight: 300;
      display: flex;
      gap: .75rem;
    }

    .problem-item:last-child {
      border-bottom: none;
    }

    .problem-arrow {
      color: var(--ink3);
      flex-shrink: 0;
      margin-top: .05rem;
    }

    /* ── BUILD SECTION ───────────────────────────── */
    .build-section {
      max-width: 960px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    .build-card {
      border: 1.5px dashed var(--dash);
      background: rgba(255, 255, 255, 0.18);
      padding: 2rem 2rem 1.75rem;
    }

    .build-card h2 {
      font-family: var(--mono);
      font-size: clamp(1rem, 2vw, 1.3rem);
      font-weight: 500;
      letter-spacing: -.01em;
      line-height: 1.3;
      margin-bottom: 1rem;
      color: var(--ink);
    }

    .build-card p {
      font-size: .9rem;
      color: var(--ink2);
      line-height: 1.8;
      font-weight: 300;
      text-align: justify;
      max-width: 680px;
    }

    /* ── SPRINT SECTION ──────────────────────────── */
    .sprint-section {
      max-width: 960px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    .sprint-header {
      margin-bottom: 1.5rem;
    }

    .sprint-header h2 {
      font-family: var(--mono);
      font-size: clamp(1.1rem, 2vw, 1.5rem);
      font-weight: 500;
      letter-spacing: -.01em;
      color: var(--ink);
      margin-bottom: .4rem;
    }

    .sprint-tagline {
      font-size: .875rem;
      color: var(--ink3);
      font-weight: 300;
      letter-spacing: .02em;
    }

    .sprint-weeks {
      display: flex;
      flex-direction: column;
      border: 1.5px dashed var(--dash);
      background: rgba(255, 255, 255, 0.18);
    }

    .sprint-week {
      display: grid;
      grid-template-columns: 130px 1fr;
      border-bottom: 1.5px dashed var(--dash);
    }

    .sprint-week:last-child {
      border-bottom: none;
    }

    .sprint-week-label {
      padding: 1.25rem 1.5rem;
      font-size: .78rem;
      font-weight: 500;
      color: var(--ink3);
      letter-spacing: .08em;
      text-transform: uppercase;
      border-right: 1.5px dashed var(--dash);
      display: flex;
      align-items: center;
    }

    .sprint-week-body {
      padding: 1.25rem 1.5rem;
      font-size: .875rem;
      color: var(--ink2);
      line-height: 1.75;
      font-weight: 300;
    }

    .sprint-close {
      margin-top: 1rem;
      font-size: .85rem;
      color: var(--ink3);
      font-style: italic;
      letter-spacing: .01em;
    }

    /* ── METRIC LABELS (reused in case study) ───── */
    .metric-label {
      display: block;
      font-size: 10px;
      font-weight: 500;
      color: var(--ink3);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: .45rem;
    }

    .metric-value {
      display: block;
      font-size: clamp(1.25rem, 3vw, 1.8rem);
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -.01em;
      line-height: 1.15;
      margin-bottom: .35rem;
    }

    .metric-note {
      display: block;
      font-size: 11px;
      color: var(--ink2);
      line-height: 1.45;
    }

    /* ── CASE STUDY SECTION ──────────────────────── */
    .case-study-section {
      max-width: 960px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    .case-study-card {
      border: 1.5px dashed var(--dash);
      background: rgba(255, 255, 255, 0.18);
    }

    .case-study-row {
      display: grid;
      grid-template-columns: 88px 1fr;
      border-bottom: 1.5px dashed var(--dash);
    }

    .case-study-row:last-child {
      border-bottom: none;
    }

    .case-study-label {
      padding: 1.3rem 1.25rem 1.3rem 1.5rem;
      font-size: .72rem;
      font-weight: 500;
      color: var(--ink3);
      letter-spacing: .1em;
      text-transform: uppercase;
      border-right: 1.5px dashed var(--dash);
      display: flex;
      align-items: flex-start;
      padding-top: 1.45rem;
    }

    .case-study-body {
      padding: 1.25rem 1.5rem;
      font-size: .875rem;
      color: var(--ink2);
      line-height: 1.75;
      font-weight: 300;
    }

    .case-study-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1.5px dashed var(--dash);
    }

    .case-study-metric {
      padding: 1.25rem;
      border-right: 1.5px dashed var(--dash);
    }

    .case-study-metric:last-child {
      border-right: none;
    }

    /* ── FEATURE ROWS ─────────────────────────────── */
    .features {
      max-width: 960px;
      margin: 0 auto
    }

    .feature {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 360px;
      position: relative;
      border-bottom: 1.5px dashed var(--dash);
    }

    .feature:last-child {
      border-bottom: none
    }

    .feature.flip {
      direction: rtl
    }

    .feature.flip>* {
      direction: ltr
    }

    .feature-text {
      padding: 3rem 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .feature-num {
      position: absolute;
      top: .75rem;
      left: 2rem;
      font-size: 7rem;
      font-weight: 500;
      color: var(--ghost);
      line-height: 1;
      letter-spacing: -.04em;
      pointer-events: none;
      user-select: none;
    }

    .feature.flip .feature-num {
      left: auto;
      right: 2rem;
    }

    .feature-text h3 {
      font-family: var(--mono);
      font-size: .95rem;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-color: var(--dash);
      margin-bottom: 1.25rem;
      margin-top: 3rem;
    }

    .feature-text p {
      font-size: .9rem;
      color: var(--ink2);
      line-height: 1.8;
      font-weight: 300;
      text-align: justify;
      margin-bottom: 1.25rem;
    }

    .feature-media {
      position: relative;
      overflow: hidden;
      background: var(--bg2);
      border-left: 1.5px dashed var(--dash);
    }

    .feature.flip .feature-media {
      border-left: none;
      border-right: 1.5px dashed var(--dash);
    }

    .feature-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: .88;
    }

    /* ── CREDENTIALS ─────────────────────────────── */
    .creds-section {
      max-width: 960px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    .section-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .12em;
      color: var(--ink3);
      text-transform: uppercase;
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: .6rem;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 18px;
      height: 1px;
      background: var(--dash);
    }

    .creds-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0;
      border: 1.5px dashed var(--dash);
    }

    .cred-card {
      padding: 1.5rem;
      border-right: 1.5px dashed var(--dash);
    }

    .cred-card:last-child {
      border-right: none
    }

    .cred-label {
      font-size: 10px;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: .08em;
      text-transform: uppercase;
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-color: var(--dash);
      margin-bottom: .6rem;
    }

    .cred-card p {
      font-size: .875rem;
      color: var(--ink2);
      line-height: 1.65;
      font-weight: 300;
      text-align: justify;
    }

    /* ── PROCESS ─────────────────────────────────── */
    .process-section {
      max-width: 960px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    .engagement-section {
      max-width: 960px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    .engagement-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1.5px dashed var(--dash);
      background: rgba(255, 255, 255, 0.18);
    }

    .engagement-item {
      padding: 1.5rem;
      border-right: 1.5px dashed var(--dash);
    }

    .engagement-item:last-child {
      border-right: none;
    }

    .engagement-item h3 {
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-color: var(--dash);
      margin-bottom: .65rem;
    }

    .engagement-item p {
      font-size: .85rem;
      color: var(--ink2);
      line-height: 1.7;
      font-weight: 300;
      text-align: justify;
    }

    .engagement-anchor {
      font-size: .875rem;
      color: var(--ink2);
      line-height: 1.8;
      font-weight: 300;
      text-align: justify;
      margin-bottom: 1.5rem;
      max-width: 680px;
    }

    .institution-note {
      max-width: 960px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    .institution-card {
      border: 1.5px dashed var(--dash);
      background: rgba(255, 255, 255, 0.24);
      padding: 1.75rem;
    }

    .institution-card h3 {
      font-size: .95rem;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-color: var(--dash);
      margin-bottom: .85rem;
    }

    .institution-card p {
      font-size: .9rem;
      color: var(--ink2);
      line-height: 1.8;
      font-weight: 300;
      text-align: justify;
    }

    .institution-card p+p {
      margin-top: .85rem;
    }

    .process-steps {
      display: flex;
      flex-direction: column
    }

    .step {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 1.5rem;
      padding: 1.75rem 0;
      border-bottom: 1.5px dashed var(--dash);
    }

    .step:last-child {
      border-bottom: none
    }

    .step-num {
      font-size: 2rem;
      font-weight: 500;
      color: var(--bg3);
      line-height: 1;
      padding-top: .1rem;
      letter-spacing: -.04em;
    }

    .step h4 {
      font-size: .9rem;
      font-weight: 500;
      letter-spacing: .05em;
      text-transform: uppercase;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-color: var(--dash);
      margin-bottom: .4rem;
    }

    .step p {
      font-size: .875rem;
      color: var(--ink2);
      line-height: 1.75;
      font-weight: 300;
      text-align: justify;
    }

    /* ── CTA ─────────────────────────────────────── */
    .cta-section {
      max-width: 960px;
      margin: 0 auto;
      padding: 3rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.25rem;
      text-align: center;
    }

    .cta-section h2 {
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      font-weight: 400;
      letter-spacing: -.01em;
      line-height: 1.35;
      max-width: 460px;
    }

    .cta-section h2 em {
      font-style: italic;
      font-weight: 300;
    }

    .cta-actions {
      width: 100%;
      max-width: 660px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .6rem;
    }

    .cta-actions .cta-note {
      text-align: center;
    }

    .cta-section .hero-actions {
      align-items: center;
    }

    /* ── FOOTER ──────────────────────────────────── */
    footer {
      padding: 1.5rem 2rem;
      font-size: 11px;
      color: var(--ink3);
      letter-spacing: .04em;
      text-align: center;
    }

    footer a {
      color: var(--ink2);
      text-decoration: none;
      border-bottom: 1px solid var(--dash)
    }

    footer a:hover {
      color: var(--ink)
    }

    /* ── RESPONSIVE ──────────────────────────────── */
    @media(max-width:720px) {
      nav {
        padding: .85rem 1.25rem
      }

      .hero-media {
        min-height: 280px
      }

      .hero-caption {
        padding: 1.25rem
      }

      .hero-intro {
        padding: 1.75rem 1.25rem 1.25rem;
        flex-direction: column
      }

      .hero-actions {
        align-items: flex-start
      }

      .hero-note {
        text-align: left;
      }

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

      .engagement-item {
        border-right: none;
        border-bottom: 1.5px dashed var(--dash);
      }

      .engagement-item:last-child {
        border-bottom: none;
      }

      .feature {
        grid-template-columns: 1fr;
        min-height: auto
      }

      .feature-media {
        min-height: 220px
      }

      .feature.flip {
        direction: ltr
      }

      .feature.flip .feature-media {
        border-right: none;
        border-top: 1.5px dashed var(--dash)
      }

      .feature-media {
        border-left: none;
        border-top: 1.5px dashed var(--dash)
      }

      .creds-grid {
        grid-template-columns: 1fr 1fr
      }

      .cred-card:nth-child(2n) {
        border-right: none
      }

      .cred-card {
        border-bottom: 1.5px dashed var(--dash)
      }

      .cta-section {
        padding: 2rem 1.25rem
      }

      .cta-actions {
        align-items: center;
      }

      .creds-section,
      .process-section,
      .institution-note,
      .engagement-section,
      .problem-section,
      .build-section,
      .sprint-section,
      .case-study-section,
      .reassure-section {
        padding: 2.5rem 1.25rem
      }

      .hero-reassure {
        text-align: left;
      }

      .sprint-week {
        grid-template-columns: 1fr;
      }

      .sprint-week-label {
        border-right: none;
        border-bottom: 1.5px dashed var(--dash);
        padding-bottom: .75rem;
      }

      .case-study-row {
        grid-template-columns: 1fr;
      }

      .case-study-label {
        border-right: none;
        border-bottom: 1.5px dashed var(--dash);
        padding-top: 1rem;
        padding-bottom: .5rem;
      }

      .case-study-metrics {
        grid-template-columns: 1fr;
      }

      .case-study-metric {
        border-right: none;
        border-bottom: 1.5px dashed var(--dash);
      }

      .case-study-metric:last-child {
        border-bottom: none;
      }
    }

    @media(max-width:480px) {
      .creds-grid {
        grid-template-columns: 1fr
      }

      .cred-card {
        border-right: none
      }
    }

    /* ── TOUCH TARGET IMPROVEMENTS ──────────────── */
    @media(pointer: coarse) {
      .btn-primary {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: .7rem 1.4rem;
      }

      .btn-secondary {
        min-height: 36px;
        display: inline-flex;
        align-items: center;
      }

      .nav-cta {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
      }
    }

    /* ── MOBILE STICKY CTA BAR ───────────────────── */
    #mobile-cta-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: var(--bg);
      border-top: 1.5px dashed var(--dash);
      padding: .85rem 1.25rem;
      gap: .75rem;
      align-items: center;
      transform: translateY(100%);
      transition: transform .25s ease;
    }

    @media(max-width: 720px) {
      #mobile-cta-bar {
        display: flex;
      }

      #mobile-cta-bar .btn-primary {
        flex: 1;
        text-align: center;
        font-size: 13px;
      }

      #mobile-cta-bar .btn-secondary {
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
      }

      /* Extra bottom space so sticky bar never covers content */
      footer {
        padding-bottom: 5rem;
      }
    }

    /* ── ADDITIONAL MOBILE REFINEMENTS ───────────── */
    @media(max-width: 720px) {
      /* text-align: justify creates unreadable gaps on narrow columns */
      .hero-sub,
      .build-card p,
      .feature-text p,
      .cred-card p,
      .institution-card p,
      .step p,
      .engagement-item p,
      .engagement-anchor,
      .reassure-item p,
      .case-study-body {
        text-align: left;
      }
    }

    @media(max-width: 480px) {
      /* Hide nav subtitle — only logo + CTA needed on small phones */
      .nav-tag {
        display: none;
      }

      .feature-text {
        padding: 2rem 1.25rem;
      }

      .build-card {
        padding: 1.5rem 1.25rem;
      }

      .institution-card {
        padding: 1.25rem;
      }
    }

    /* ── LOCOMOTIVE SCROLL ──────────────────────────── */
    html.has-scroll-smooth {
      overflow: hidden
    }

    .has-scroll-smooth body {
      overflow: hidden
    }

    .has-scroll-smooth [data-scroll-container] {
      min-height: 100vh
    }

    /* Scroll-reveal */
    .feature,
    .cred-card,
    .step {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .feature.is-inview,
    .cred-card.is-inview,
    .step.is-inview {
      opacity: 1;
      transform: none;
    }
  

    /* ── MULTI-LINK NAV (added for two-page layout) ───── */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .nav-link {
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 400;
      color: var(--ink2);
      text-decoration: none;
      letter-spacing: .03em;
      transition: color .15s;
    }

    .nav-link:hover {
      color: var(--ink);
    }

    .nav-link.is-active {
      color: var(--ink);
      border-bottom: 1px solid var(--dash);
      padding-bottom: 1px;
    }

    /* ── SOLUTIONS PRODUCT GRID ───────────────────────── */
    .solutions-section {
      max-width: 960px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    .product-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border: 1.5px dashed var(--dash);
      background: rgba(255, 255, 255, 0.18);
    }

    .product-card {
      padding: 1.75rem;
      border-right: 1.5px dashed var(--dash);
      border-bottom: 1.5px dashed var(--dash);
    }

    .product-card:nth-child(2n) {
      border-right: none;
    }

    .product-card:nth-last-child(-n+2) {
      border-bottom: none;
    }

    .product-name {
      font-family: 'IBM Plex Mono', 'DM Mono', monospace;
      font-size: .95rem;
      font-weight: 700;
      letter-spacing: .02em;
      color: var(--ink);
      margin-bottom: .25rem;
    }

    .product-kicker {
      display: block;
      font-size: 10px;
      font-weight: 500;
      color: var(--ink3);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: .7rem;
    }

    .product-card p {
      font-size: .875rem;
      color: var(--ink2);
      line-height: 1.7;
      font-weight: 300;
      text-align: justify;
    }

    .ip-note {
      font-size: 10px;
      color: var(--ink3);
      letter-spacing: .02em;
      line-height: 1.6;
      margin-top: .4rem;
    }

    /* Solutions intro lead */
    .section-lead {
      font-size: .95rem;
      color: var(--ink2);
      line-height: 1.8;
      font-weight: 300;
      max-width: 680px;
      margin-bottom: 2rem;
      text-align: justify;
    }

    @media(max-width: 720px) {
      .nav-links { gap: 1rem; }
      .solutions-section { padding: 2.5rem 1.25rem; }
      .product-grid { grid-template-columns: 1fr; }
      .product-card {
        border-right: none;
        border-bottom: 1.5px dashed var(--dash);
      }
      .product-card:last-child { border-bottom: none; }
      .product-card p, .section-lead { text-align: left; }
    }
