/* ============================================================
   Cobblestone Labs — homepage v2
   Extracted from the designer deliverable index-v2.html.
   Blocks appear in the original document order; the cascade
   depends on it. Contact/feedback overlay rules are appended
   last, carried over from home.css (v2 has none of them).
   ============================================================ */


/* ===== v2 block: unlabelled ===== */

    @font-face {
      font-family: 'trade-gothic-next-condensed';
      src: url('/TradeGothic-BoldCondensed.otf') format('opentype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'trade-gothic-next-condensed';
      src: url('/TradeGothic-BoldCondensed.otf') format('opentype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    /* ─── Reset & Base ─────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #0a0a0f;
      --navy:      #292B3D;
      --lavender:  #7F83A7;
      --text-light: #D9DBF4;
      --cream:     #FFE2C0;
      --terra:     #C47D6A;
      --magenta:   #C10644;
      --warm-grad: linear-gradient(120deg, #FFE2C0, #C47D6A);
      --cool-grad: linear-gradient(120deg, #D9DBF4, #7F83A7);
      --deep-cool-grad: linear-gradient(120deg, #7F83A7, #292B3D);
      --text:      #e8e8f0;
      /* Headlines: Oswald (semi-bold) replaces Trade Gothic. Bebas Neue + Trade
         Gothic kept as later fallbacks so nothing breaks if Oswald fails to load.
         All letter-spacing / size / weight values elsewhere in the file remain;
         we set the global heading weight to 600 below via .font-head-weight. */
      --font-head: 'trade-gothic-next-condensed', 'Oswald', 'Bebas Neue', 'Trade Gothic LT Std', 'TradeGothicLT-BoldCondTwenty', 'Trade Gothic', sans-serif;
      --font-head-weight: 600;
      --font-sub: 'avenir-next-lt-pro', 'Avenir Next', 'AvenirNext-Regular', 'Plus Jakarta Sans', Inter, sans-serif;
      --font-body: 'avenir-next-lt-pro', 'Avenir Next', 'AvenirNext-Regular', 'Plus Jakarta Sans', Inter, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: clip;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── Grain Overlay ────────────────────────────── */
    #circuit {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      pointer-events: none;
      z-index: 10;
      opacity: 0.65;
    }
    #grain {
      position: fixed;
      inset: -50%;
      width: 200%;
      height: 200%;
      z-index: 999;
      pointer-events: none;
      opacity: 0.032;
      animation: grain-shift 0.12s steps(1) infinite;
    }

    @keyframes grain-shift {
      0%   { transform: translate(0,0); }
      10%  { transform: translate(-3%,-4%); }
      20%  { transform: translate(4%, 2%); }
      30%  { transform: translate(-2%, 5%); }
      40%  { transform: translate(5%,-2%); }
      50%  { transform: translate(-1%, 3%); }
      60%  { transform: translate(3%,-5%); }
      70%  { transform: translate(-4%, 1%); }
      80%  { transform: translate(2%, 4%); }
      90%  { transform: translate(-3%,-1%); }
      100% { transform: translate(0, 0); }
    }

    /* ─── Nav ──────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 48px;
      background: rgba(10,10,15,0.92);
      border-bottom: 1px solid rgba(127,131,167,0.1);
      mix-blend-mode: normal;
    }



    .logo-img {
      height: 80px;
      width: auto;
      display: block;
      
    }
    .footer-logo-img {
      height: 63px;
      width: auto;
      opacity: 0.9;
      display: block;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    .nav-logo {
      font-family: var(--font-sub);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text);
      text-decoration: none;
      position: relative;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
      position: relative;
    }

    .nav-links a {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--lavender);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--text); }

    /* ─── Hero ─────────────────────────────────────── */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 108px 8vw 120px;
      overflow: hidden;
    }

    /* Animated gradient orbs */
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
    }

    .hero-orb-1 {
      width: 60vw; height: 60vw;
      background: radial-gradient(circle, rgba(168,5,58,0.12) 0%, transparent 70%);
      top: -20%; right: -15%;
      animation: orb-drift-1 18s ease-in-out infinite;
    }

    .hero-orb-2 {
      width: 40vw; height: 40vw;
      background: radial-gradient(circle, rgba(127,131,167,0.12) 0%, transparent 70%);
      bottom: -10%; left: 5%;
      animation: orb-drift-2 22s ease-in-out infinite;
    }

    .hero-orb-3 {
      width: 30vw; height: 30vw;
      background: radial-gradient(circle, rgba(196,125,106,0.10) 0%, transparent 70%);
      top: 30%; left: 40%;
      animation: orb-drift-3 16s ease-in-out infinite;
    }

    @keyframes orb-drift-1 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33%  { transform: translate(-3%, 5%) scale(1.05); }
      66%  { transform: translate(4%, -3%) scale(0.95); }
    }

    @keyframes orb-drift-2 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(5%, -8%) scale(1.08); }
    }

    @keyframes orb-drift-3 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      40% { transform: translate(-6%, 4%) scale(1.1); }
      80% { transform: translate(3%, -5%) scale(0.92); }
    }

    /* Hero scan line */
    .hero-scanline {
      position: absolute;
      left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(193,6,68,0.3), transparent);
      animation: scanline 6s linear infinite;
      pointer-events: none;
    }

    @keyframes scanline {
      0%   { top: -2%; opacity: 0; }
      5%   { opacity: 1; }
      95%  { opacity: 0.3; }
      100% { top: 102%; opacity: 0; }
    }

    .hero-eyebrow {
      font-family: var(--font-sub);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--magenta);
      margin-bottom: 24px;
      opacity: 0;
    }

    .hero-title {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: clamp(72px, 13vw, 200px);
      line-height: 0.92;
      text-transform: uppercase;
      /* Start tight so the GSAP intro animation has somewhere to travel to. */
      letter-spacing: 0.30em;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0, #C47D6A);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: warmShift 20s ease infinite;
      margin-bottom: 28px;
      overflow: hidden;
    }
    @keyframes warmShift {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .hero-sub {
      font-family: var(--font-sub);
      font-size: clamp(15px, 1.3vw, 17px);
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      max-width: 760px;
      opacity: 0;
      transform: translateY(20px);
      line-height: 1.7;
    }
    .hero-sub-line1 {
      color: #A8ABCA;
      display: block;
    }
    .hero-sub-line2 {
      color: #7F83A7;
      display: block;
    }

    .hero-cta {
      margin-top: 40px;
      display: flex;
      gap: 20px;
      opacity: 0;
    }
    .hero-cta .btn {
      opacity: 0;
      transform: translateY(16px);
    }

    .btn {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 16px 36px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.35s ease;
      display: inline-block;
    }

    .btn-primary {
      background: linear-gradient(135deg, #C10644, #4C041D);
      background-size: 200% 200%;
      animation: gradientShift 8s ease-in-out infinite alternate;
      color: white;
    }

    @keyframes gradientShift {
      0%   { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(193,6,68,0.45);
    }

    .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1px solid rgba(232,232,240,0.25);
    }

    .btn-outline:hover {
      border-color: var(--lavender);
      color: var(--lavender);
      transform: translateY(-2px);
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 40px;
      left: 8vw;
      display: flex;
      align-items: center;
      gap: 12px;
      opacity: 0;
    }

    .scroll-hint-line {
      width: 40px;
      height: 1px;
      background: var(--magenta);
    }

    .scroll-hint-text {
      font-family: var(--font-sub);
      font-size: 12px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--lavender);
    }

    /* ─── Sections General ─────────────────────────── */
    section {
      position: relative;
      overflow: hidden;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 8vw;
    }

    .section-label {
      font-family: var(--font-sub);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--magenta);
      margin-bottom: 28px;
      display: block;
    }

    .reveal-heading {
      overflow: hidden;
    }

    .reveal-heading-inner {
      display: block;
      clip-path: inset(0 100% 0 0);
    }

    /* ─── Section 2 — Engineering ──────────────────── */
    #engineering {
      padding: 100px 0 80px;
      background: var(--bg);
    }

    #engineering .section-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .eng-headline {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: clamp(36px, 4.2vw, 62px);
      line-height: 1.0;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--text);
      margin-bottom: 24px;
    }

    .eng-body {
      font-size: 17px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-light);
      margin-bottom: 28px;
    }

    .eng-lede {
      font-style: normal;
      font-size: 17px;
      font-weight: 300;
      line-height: 1.8;
      display: block;
      color: var(--text-light);
    }

    .eng-body--closing {
      margin-top: 28px;
      margin-bottom: 0;
    }

    .warm-grad-text {
      font-weight: 700;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0, #C47D6A);
      background-size: 300% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: labGradShift 9s ease-in-out infinite alternate;
    }

    .lab-tagline {
      font-family: var(--font-sub);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--lavender);
      text-align: center;
      padding: 48px 0 52px;
    }

    /* ── Lab Grid — Technical Readout Panels ── */
    .lab-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      padding: 0 5vw 60px;
    }

    .lab-grid-cell {
      position: relative;
      padding: 30px 34px 36px;
      min-height: 180px;
      background:
        radial-gradient(circle at 50% 50%, rgba(196,125,106,0.03) 0%, transparent 65%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='0.75' fill='rgba(127,131,167,0.18)'/%3E%3C/svg%3E");
      border: 1px solid rgba(127,131,167,0.14);
      display: flex;
      flex-direction: column;
      gap: 18px;
      overflow: hidden;
      transition: border-color 0.6s ease, box-shadow 0.6s ease, background 0.6s ease;
    }

    .lab-grid-cell:hover {
      border-color: rgba(196,125,106,0.3);
      box-shadow: 0 0 0 1px rgba(196,125,106,0.08) inset,
                  0 8px 48px rgba(196,125,106,0.07);
    }

    /* Corner tick marks — like the engineering visual */
    .lgc-corner {
      position: absolute;
      width: 10px; height: 10px;
      transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
      opacity: 0.35;
    }
    .lgc-corner::before, .lgc-corner::after {
      content: '';
      position: absolute;
      background: #C47D6A;
    }
    .lgc-corner::before { width: 100%; height: 1px; top: 0; left: 0; }
    .lgc-corner::after  { width: 1px; height: 100%; top: 0; left: 0; }

    .lgc-tl { top: 12px; left: 12px; }
    .lgc-tr { top: 12px; right: 12px; transform: scaleX(-1); }
    .lgc-bl { bottom: 12px; left: 12px; transform: scaleY(-1); }
    .lgc-br { bottom: 12px; right: 12px; transform: scale(-1); }

    .lab-grid-cell:hover .lgc-corner {
      width: 14px; height: 14px; opacity: 0.7;
    }

    /* Index number */
    .lgc-index {
      position: absolute;
      top: 12px; right: 16px;
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.2em;
      color: rgba(232,185,154,0.4);
      transition: color 0.5s ease;
    }
    .lab-grid-cell:hover .lgc-index { color: rgba(232,185,154,0.45); }

    /* Header row: pulse dot + label */
    .lgc-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }

    .lgc-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: #C47D6A;
      flex-shrink: 0;
      box-shadow: 0 0 0 0 rgba(196,125,106,0.5);
      animation: lgc-pulse 3s ease-in-out infinite;
    }

    @keyframes lgc-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(196,125,106,0.5); opacity: 1; }
      50%       { box-shadow: 0 0 0 5px rgba(196,125,106,0); opacity: 0.7; }
    }

    .lab-grid-label {
      font-family: var(--font-head);
      font-size: clamp(14px, 1.4vw, 20px);
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #E8B99A;
      -webkit-text-fill-color: #E8B99A;
      background: none;
      transition: color 0.4s ease;
    }

    .lab-grid-cell:hover .lab-grid-label { color: #F0C9AE; }



    /* Inner layout — simple stacked */
    .lgc-inner {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .lgc-headline {
      font-family: var(--font-sub);
      font-size: clamp(14px, 1.2vw, 17px);
      font-weight: 600;
      line-height: 1.65;
      letter-spacing: 0.02em;
      text-transform: none;
      color: rgba(232,232,240,0.9);
      margin: 0;
      transition: color 0.5s ease;
    }
    .lab-grid-cell:hover .lgc-headline { color: #D9DBF4; }

    .lgc-vdivider {
      display: none;
      width: 1px;
      align-self: stretch;
      background: linear-gradient(to bottom, #E8B99A 0%, rgba(232,185,154,0.1) 100%);
      transition: opacity 0.5s ease;
      opacity: 0.45;
    }
    .lab-grid-cell:hover .lgc-vdivider { opacity: 0.85; }

    .lgc-detail {
      font-family: var(--font-sub);
      font-size: clamp(12px, 0.95vw, 14px);
      font-weight: 300;
      line-height: 1.9;
      letter-spacing: 0.03em;
      padding-top: 0;
      background: linear-gradient(120deg, #D9DBF4 0%, #C8CCE8 50%, #E8B99A 100%);
      background-size: 200% 100%;
      background-position: 0% center;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: background-position 1.2s ease;
    }
    .lab-grid-cell:hover .lgc-detail { background-position: 60% center; }

    @media (max-width: 768px) {
      .lab-grid { grid-template-columns: 1fr; padding: 0 6vw 60px; }
    }

    .eng-stat-row {
      display: flex;
      gap: 64px;
      margin-top: 48px;
    }

    .eng-stat {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .eng-stat-num {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: 52px;
      line-height: 1;
      color: #C47D6A;
    }

    .eng-stat-label {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--lavender);
      white-space: nowrap;
    }

    /* Decorative line art */
    .eng-visual {
      position: relative;
      height: 420px;
    }

    .eng-visual-box {
      position: absolute;
      inset: 0;
      border: 1px solid rgba(127,131,167,0.15);
      border-radius: 2px;
    }

    .eng-visual-inner {
      position: absolute;
      inset: 24px;
      border: 1px solid rgba(127,131,167,0.08);
      border-radius: 2px;
    }



    .eng-visual-center {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
    }

    .eng-visual-dim {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: 64px;
      color: rgba(255,226,192,0.08);
      line-height: 1;
    }

    .eng-visual-dim-label {
      font-family: var(--font-sub);
      font-size: 12px;
      letter-spacing: 0.3em;
      color: rgba(127,131,167,0.3);
      text-transform: uppercase;
    }

    /* Animated grid lines */
    .eng-visual-grid {
      position: absolute;
      inset: 40px;
      background-image:
        linear-gradient(rgba(127,131,167,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127,131,167,0.04) 1px, transparent 1px);
      background-size: 30px 30px;
    }

    /* Glow dot */
        .eng-callout {
      position: absolute;
      will-change: auto;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .eng-callout-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: linear-gradient(to bottom, #D9DBF4, #7F83A7);
      box-shadow: 0 0 10px rgba(196,125,106,0.7), 0 0 20px rgba(255,226,192,0.3);
      flex-shrink: 0;
      animation: dot-pulse 2.5s ease-in-out infinite;
    }
    .eng-callout-line {
      width: 32px;
      transform-origin: left center;
      height: 1px;
      background: linear-gradient(to right, #FFE2C0, rgba(196,125,106,0.3));
    }
    .eng-callout-label {
      font-family: var(--font-sub);
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      background: linear-gradient(to bottom, #D9DBF4, #7F83A7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      white-space: nowrap;
    }



    /* Centered callout list */
    .eng-callout-list {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;
    }
    .eng-callout-list .eng-callout {
      position: static;
    }

    @keyframes dot-pulse {
      0%, 100% { opacity: 0.7; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.5); }
    }

    /* ─── Section 3 — Space ────────────────────────── */
    #space {
      padding: 140px 0;
      background: linear-gradient(180deg, var(--bg) 0%, #0e0e1a 50%, var(--bg) 100%);
    }

    #space .section-inner {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .space-headline {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: clamp(48px, 6.5vw, 96px);
      line-height: 1.0;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text);
      margin-bottom: 60px;
    }

    .space-features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      margin-top: 80px;
    }
    @media (max-width: 900px) {
      .space-features { grid-template-columns: repeat(2, 1fr) !important; gap: 1px; }
      .space-feature { padding: 30px 18px; }
    }
    @media (max-width: 480px) {
      .space-features { grid-template-columns: 1fr !important; }
    }

    .space-feature {
      padding: 48px 32px;
      background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(41,43,61,0.3) 100%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 4px 24px rgba(0,0,0,0.2);
      border-top: 1px solid rgba(127,131,167,0.12);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .space-feature::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #C47D6A, #7F83A7, transparent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .space-feature:hover::after { transform: scaleX(1); }

    .space-feature:hover {
      background: rgba(41,43,61,0.6);
      transform: translateY(-4px);
    }

    .feature-icon {
      font-size: 28px;
      margin-bottom: 20px;
      display: block;
    }

    .feature-title {
      font-family: var(--font-sub);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cream);
      margin-bottom: 12px;
    }

    .feature-desc {
      font-size: 13px;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* ─── Section 4 — What We Solve For ───────────── */
    #solutions {
      padding: 160px 0;
      background: var(--bg);
    }

    .solutions-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 72px;
    }

    .solutions-headline {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: clamp(48px, 6.5vw, 96px);
      line-height: 1.0;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--text);
      max-width: 700px;
    }

    #solutions .reveal-heading {
      padding-right: 0.2em;
      padding-bottom: 0.12em;
    }

    .solutions-intro {
      font-size: 14px;
      font-weight: 300;
      color: var(--text-light);
      max-width: 300px;
      line-height: 1.8;
      text-align: left;
    }

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

    .solution-card {
      position: relative;
      padding: 56px 32px 48px;
      background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(41,43,61,0.35) 100%);
      border: 1px solid rgba(217,219,244,0.12);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 8px 32px rgba(0,0,0,0.3);
      cursor: default;
      transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .solution-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(193,6,68,0.06) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .solution-card:hover::before { opacity: 1; }

    .solution-card:hover {
      background: rgba(41,43,61,0.5);
      border-color: rgba(193,6,68,0.25);
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.4);
    }

    .card-num {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: 48px;
      color: rgba(193,6,68,0.45);
      line-height: 1;
      transition: color 0.4s;
    }

    .solution-card:hover .card-num { color: rgba(193,6,68,0.7); }

    .card-title {
      font-family: var(--font-sub);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: linear-gradient(to bottom, #D9DBF4, #7F83A7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.3;
    }

    .card-desc {
      font-size: 13px;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.75;
    }

    .card-arrow {
      margin-top: auto;
      font-family: var(--font-sub);
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--magenta);
      opacity: 0;
      transform: translateX(-8px);
      transition: all 0.35s;
    }

    .solution-card:hover .card-arrow {
      opacity: 1;
      transform: translateX(0);
    }

    /* ─── Section 5 — Activations ──────────────────── */
    #activations {
      padding: 160px 0;
      background: linear-gradient(180deg, var(--bg) 0%, #0d0b14 100%);
      border-top: 1px solid rgba(127,131,167,0.08);
    }

    .activations-inner {
      text-align: center;
    }

    .activations-eyebrow {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--lavender);
      margin-bottom: 64px;
    }

    .activations-marquee-wrapper {
      overflow: hidden;
      margin: 0 -8vw;
      padding: 48px 0;
      border-top: 1px solid rgba(127,131,167,0.08);
      border-bottom: 1px solid rgba(127,131,167,0.08);
    }

    .activations-marquee {
      display: flex;
      gap: 0;
      animation: marquee 20s linear infinite;
      width: max-content;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 0;
      white-space: nowrap;
    }

    .brand-name {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: clamp(56px, 8vw, 110px);
      text-transform: uppercase;
      color: rgba(232,232,240,0.58); /* 2026-08-05: old hover color is now default */
      letter-spacing: 0.04em;
      padding: 0 40px;
      transition: color 0.3s;
      cursor: default;
    }

    .brand-name:hover { color: rgba(232,232,240,0.8); }

    .marquee-sep {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: clamp(56px, 8vw, 110px);
      color: var(--magenta);
      opacity: 0.4;
      line-height: 1;
    }

    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .activations-copy {
      margin-top: 80px;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }

    .activations-copy p {
      font-size: 18px;
      font-weight: 300;
      color: var(--lavender);
      line-height: 1.8;
    }

    /* ─── Section 6 — Contact ──────────────────────── */
    #contact {
      padding: 140px 0 140px;
      position: relative;
      overflow: hidden;
    }

    #contact::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(193,6,68,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .contact-inner {
      text-align: center;
      position: relative;
    }

    .contact-headline {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: clamp(52px, 8vw, 120px);
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text);
      margin-bottom: 56px;
    }

    .contact-headline span {
      color: var(--magenta);
    }

    .contact-sub {
      font-size: 16px;
      font-weight: 300;
      color: var(--lavender);
      margin-bottom: 60px;
      letter-spacing: 0.04em;
    }

    .contact-links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .contact-link {
      font-family: var(--font-sub);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--lavender);
      text-decoration: none;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-link::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--magenta);
    }

    .contact-link:hover { color: var(--text); }

    /* ─── Footer ───────────────────────────────────── */
    footer {
      border-top: 1px solid rgba(127,131,167,0.1);
      padding: 40px 8vw;
      padding-bottom: max(40px, calc(24px + env(safe-area-inset-bottom)));
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      position: relative;
    }

    .footer-logo {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--lavender);
    }

    .footer-copy {
      font-family: var(--font-sub);
      font-size: 12px;
      letter-spacing: 0.14em;
      color: rgba(217,219,244,0.7);
    }

    .footer-links {
      display: flex;
      gap: 28px;
    }

    .footer-links a {
      font-family: var(--font-sub);
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(127,131,167,0.7);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-links a:hover { color: var(--lavender); }

    /* ─── Divider ───────────────────────────────────── */
    .section-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(127,131,167,0.15), transparent);
    }


    /* Hamburger */
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 200;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--lavender);
      margin: 5px 0;
      transition: all 0.3s ease;
    }
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(4px, 5px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(4px, -5px);
    }

    /* Mobile overlay menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 90;
      background: rgba(10,10,15,0.97);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 32px;
    }
    .mobile-menu.open {
      display: flex;
    }
    .mobile-link {
      font-family: var(--font-head);
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text);
      text-decoration: none;
      transition: color 0.3s;
    }
    .mobile-link:hover { color: var(--magenta); }


    /* Mobile connector: problem → solution (right-angle + circle) */
    @media (max-width: 900px) {
      .solve-col {
        position: relative;
      }
      /* Vertical segment of the L-connector */
      /* Indent solution col + add crimson marker */
      .solve-col:last-child {
        padding-left: 20px;
        border-left: 2px solid rgba(193,6,68,0.8);
        margin-top: 4px;
      }
    }



    /* ─── Mobile Services: retro terminal cards ─── */
    .svc-m { display: none; }

    @media (max-width: 1024px) {
      .svc-radial-wrap { display: flex !important; flex-direction: column !important; min-height: auto !important; }
      .svc-radial-wrap { flex-direction: column !important; align-items: center !important; padding: 0 6vw !important; gap: 0 !important; min-height: auto !important; margin-top: 0 !important; }
      .svc-diagram-area { display: none !important; }

      .svc-connector-lines { display: none !important; }
      .svc-conn-mobile { display: none !important; }
      .svc-cards-col { flex: none !important; width: 100% !important; flex-direction: column !important; gap: 0 !important; padding: 0 !important; align-items: stretch !important; }
      .svc-nd-card { max-width: 100% !important; display: flex !important; flex-direction: row !important; align-items: center !important; gap: 16px !important; padding: 18px 20px !important; border-left: 1px solid rgba(196,125,106,0.25) !important; border-right: 1px solid rgba(196,125,106,0.25) !important; border-top: 1px solid rgba(196,125,106,0.15) !important; border-bottom: none !important; }
      .svc-nd-card:last-of-type { border-bottom: 1px solid rgba(196,125,106,0.15) !important; }
      .svc-nd-card br { display: none; }
      .svc-nd-edge-diamond { position: relative !important; left: auto !important; top: auto !important; transform: none !important; display: block !important; width: 36px !important; height: 36px !important; flex-shrink: 0 !important; }
      .svc-nd-edge-diamond .svc-nd-diamond { width: 26px !important; height: 26px !important; top: 5px !important; left: 5px !important; }
      .svc-nd-index { font-size: 24px !important; font-weight: 700 !important; margin-bottom: 0 !important; flex-shrink: 0 !important; min-width: 36px !important; text-align: left !important; color: rgba(193,6,68,0.45) !important; }
      .svc-nd-title { font-size: 13px !important; max-width: none !important; flex: 1 !important; line-height: 1.4 !important; }
      .svc-nd-coord { font-size: 10px !important; margin-top: 0 !important; white-space: nowrap; position: absolute; bottom: 6px; right: 16px; text-align: right !important; }
      .svc-diamond-sep { display: none !important; }
      .svc-track-seg { display: none !important; }
      .svc-indicator-dots { display: none !important; }
      .svc-selector-dots { display: none !important; }
      .svc-status-bar { display: none !important; }
      .svc-detail-diamond { display: none !important; }
      .svc-detail-tagline { display: none !important; }
      .svc-dots-detail { display: none !important; }
      .svc-frame-corner { display: none !important; }
      .svc-right-panel { display: flex !important; flex: none !important; width: 100% !important; border-left: none !important; padding: 16px 0 0 !important; justify-content: center; }
      .svc-right-card { max-width: 100% !important; }
      .svc-right-card .src-corner { display: block !important; }
      .svc-panel-title { margin-bottom: 12px !important; }
      .svc-panel-title::after { content: ''; display: block; margin-top: 12px; height: 1px; background: linear-gradient(to right, rgba(196,125,106,0.3), transparent); }
      .svc-panel-result { border-top: 1px solid rgba(196,125,106,0.15) !important; padding-top: 16px !important; }
      .svc-right-panel { flex: none !important; width: 100% !important; border-left: none !important; border-top: 1px solid rgba(127,131,167,0.1); padding: 32px 6vw !important; }
      .svc-right-card { max-width: 100% !important; padding: 24px 28px !important; }
      .svc-intro-wrap { padding: 10px 6vw 8px !important; margin-bottom: -8px !important; }
      .svc-diagram-area > * { transform: scale(0.7); transform-origin: center top; }
      .svc-right-panel { padding: 12px 6vw !important; margin-top: 0 !important; }
      .svc-m { display: none !important; }

      .svc-m-card {
        position: relative;
        padding: 32px 24px;
        border-bottom: 1px solid rgba(127,131,167,0.1);
        background: transparent;
      }

      .svc-m-card::before {
        content: '';
        position: absolute;
        top: 0; left: 24px;
        width: 1px;
        height: 100%;
        background: linear-gradient(to bottom, rgba(193,6,68,0.3), rgba(127,131,167,0.1));
      }

      .svc-m-card::after {
        content: '';
        position: absolute;
        top: 42px; left: 20px;
        width: 9px; height: 9px;
        border: 1.5px solid rgba(193,6,68,0.6);
        transform: rotate(45deg);
        background: rgba(193,6,68,0.15);
      }

      .svc-m-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        padding-left: 20px;
      }

      .svc-m-idx {
        font-family: var(--font-sub);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.2em;
        color: rgba(196,125,106,0.5);
      }

      .svc-m-code {
        font-family: var(--font-sub);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(127,131,167,0.7);
        padding: 2px 8px;
        border: 1px solid rgba(127,131,167,0.15);
        border-radius: 2px;
      }

      .svc-m-dot {
        width: 5px; height: 5px;
        border-radius: 50%;
        background: var(--magenta);
        box-shadow: 0 0 6px rgba(193,6,68,0.5);
        animation: pulse 2.5s ease-in-out infinite;
        margin-left: auto;
      }

      .svc-m-title {
        font-family: var(--font-head);
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        background: linear-gradient(120deg, #FFE2C0, #C47D6A);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.25;
        margin-bottom: 12px;
        padding-left: 20px;
      }

      .svc-m-body {
        font-family: var(--font-sub);
        font-size: 14px;
        font-weight: 300;
        line-height: 1.7;
        color: rgba(200,204,232,0.65);
        margin-bottom: 16px;
        padding-left: 20px;
      }

      .svc-m-result {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 16px;
        margin-left: 20px;
        border: 1px solid rgba(232,185,154,0.18);
        border-left: 2px solid rgba(232,185,154,0.5);
        background: rgba(232,185,154,0.02);
        font-family: var(--font-sub);
        font-size: 13px;
        font-weight: 400;
        line-height: 1.65;
        color: rgba(232,185,154,0.75);
      }

      .svc-m-arrow {
        color: #E8B99A;
        font-weight: 600;
        flex-shrink: 0;
        font-size: 14px;
      }
    }


    @media (max-width: 1024px) {
      .svc-connector-lines { display: none !important; }
      .svc-conn-mobile { display: block !important; }
    }
    /* ─── Sub-desktop: consistent padding for all non-desktop ─── */
    @media (max-width: 1024px) {
      #space { padding-left: 6vw; padding-right: 6vw; }
      #services { padding-left: 6vw; padding-right: 6vw; padding-top: 60px !important; padding-bottom: 20px !important; }
      .solve-right { padding-bottom: 40px !important; }
      #the-lab { padding-left: 6vw; padding-right: 6vw; padding-top: 60px !important; }
      #contact { padding-left: 6vw; padding-right: 6vw; }
      #activations { padding-left: 6vw; padding-right: 6vw; }
      .solve-timeline { padding-left: 64px; padding-right: 4vw; }
      .solve-timeline-track { left: 36px; }
      .solve-item-left { left: -56px; }
      .lab-eyebrow-row { padding-left: 0; padding-right: 0; }
      .lab-callouts { padding-left: 0; padding-right: 0; }
      .lab-callout-card { padding: 24px 24px 28px; }
      .lab-callout-num { margin-bottom: 10px; }
      .lab-callout-label { margin-bottom: 14px; font-size: 15px; }
      .lab-callout-divider { margin-bottom: 14px; }
      .lab-callout-body { font-size: 15px; margin-bottom: 8px; }
      .lab-callout-detail { font-size: 14px; }
      #engineering { padding-top: 60px !important; padding-bottom: 40px !important; }
      #space { padding-top: 60px !important; padding-bottom: 60px !important; }
      #solve { padding-top: 60px !important; }
      .solve-right { padding-bottom: 40px !important; }
      #activations { padding-top: 60px !important; padding-bottom: 60px !important; }
      #contact { padding-top: 60px !important; padding-bottom: 60px !important; }
      .lab-eyebrow-row { padding-top: 60px !important; padding-bottom: 40px !important; }
      .hero-title { letter-spacing: 0.30em; overflow: visible; }
      .hero-eyebrow { font-size: 11px; letter-spacing: 0.2em; }
      .hero-cta { flex-wrap: wrap; }
      .btn { letter-spacing: 0.1em !important; padding: 12px 20px !important; white-space: nowrap; }
    }

    /* ─── Mobile ───────────────────────────────────── */
    @media (max-width: 900px) {
      nav { padding: 16px 6vw; flex-direction: row; }
      .nav-links { display: none; }
      .hamburger { display: block; order: -1; }
      .nav-logo { margin-left: auto; }

      #hero { padding: 0 6vw; }
      .hero-title { font-size: clamp(52px, 15vw, 96px); }

      #engineering .section-inner { grid-template-columns: 1fr; gap: 48px; }
      .eng-visual { height: 280px; overflow: hidden; }
      .eng-stat-row { gap: 20px; flex-wrap: wrap; }

      .space-features { grid-template-columns: repeat(2, 1fr); gap: 1px; }
      .space-feature { padding: 32px 20px; }
      .feature-title { font-size: 12px; letter-spacing: 0.14em; }
      .feature-desc { font-size: 13px; }

      .solutions-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .solutions-intro { text-align: left; max-width: 100%; }
      .solutions-grid { grid-template-columns: 1fr; }

      .svc-intro-wrap { padding: 48px 6vw 40px; }
      .svc-intro-positive { font-size: clamp(32px, 8vw, 52px); }
      /* mobile: stack diagram above card panel */


      justify-content: center;
      .contact-links { flex-direction: column; gap: 24px; }

      footer { flex-direction: column; text-align: center; gap: 16px; align-items: center; }
      .footer-links { order: 1; }
      .footer-copy { order: 2; }
      .footer-logo-img { order: 3; position: static !important; transform: none !important; }
      .btn { padding: 14px 28px; font-size: 11px; letter-spacing: 0.16em; text-align: center; display: flex; align-items: center; justify-content: center; }
      .hero-cta { gap: 14px; }
      .lab-eyebrow-row { flex-direction: column; align-items: flex-start; padding: 60px 6vw 40px; gap: 24px; }
      .lab-eyebrow-row > div:last-child { text-align: left !important; max-width: 100% !important; }
      .lab-callouts { grid-template-columns: 1fr; padding: 0 6vw 60px; }

      .svc-right-card { padding: 20px 20px !important; max-width: 100% !important; }
      .svc-panel-inner { padding: 20px 0 16px !important; grid-template-columns: 40px 1fr !important; column-gap: 16px !important; }
      .svc-panel-body { font-size: 14px !important; }
      .svc-panel-result { font-size: 13px !important; }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: clamp(28px, 13vw, 68px); letter-spacing: 0.10em; }
      .hero-sub { font-size: 12px; }

      .space-features { grid-template-columns: 1fr; }
      .space-feature { padding: 28px 20px; }

      .eng-stat-row { flex-direction: column; gap: 16px; }
      .eng-stat-num { font-size: 40px; }

      .solve-card { padding: 24px 20px; }

      .svc-intro-positive { font-size: clamp(28px, 9vw, 44px); }
      .svc-intro-negative { font-size: 13px; }

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

    /* Mobile service list */
    .svc-mobile-list { display: none; flex-direction: column; padding: 0 6vw 48px; gap: 0; }
    .svc-mobile-item { padding: 24px 0; border-top: 1px solid rgba(127,131,167,0.15); }
    .svc-mobile-num { font-family: var(--font-sub); font-size: 12px; letter-spacing: 0.2em; color: rgba(196,125,106,0.7); margin-bottom: 8px; }
    .svc-mobile-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #FFE2C0; margin-bottom: 12px; line-height: 1.2; }
    .svc-mobile-body { font-family: var(--font-sub); font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(200,204,232,0.65); margin-bottom: 12px; }
    .svc-mobile-result { font-family: var(--font-sub); font-size: 13px; color: rgba(232,185,154,0.8); border-top: 1px solid rgba(232,185,154,0.15); padding-top: 10px; line-height: 1.6; }


    /* ── WARM GRADIENT: large bold headings only ── */
    h2, h3,
    .section-title, .eng-heading, .solution-title,
    .contact-heading, .footer-brand {
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0, #C47D6A);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: warmShift 20s ease infinite;
    }

    /* Feature card titles — subtle warm gradient */
    .feature-title {
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0, #C47D6A);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: warmShift 20s ease infinite;
    }

    /* texture overlay removed */
    #engineering, #space, #solutions, #activations {
      position: relative;
    }


    /* ── Orphan & widow prevention ── */
    p, .card-desc, .feature-desc, .eng-body, .solutions-intro {
      orphans: 3;
      widows: 3;
      text-wrap: pretty; /* modern browsers: smart line-break balancing */
    }
    /* Tie last two words together on headings */
    h1, h2, h3 {
      text-wrap: balance;
    }



    /* ── Lab section — new layout ── */
    .lab-new-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      padding: 100px 8vw 120px;
    }
    .lab-copy { }
    .lab-name-lockup {
      display: flex;
      align-items: baseline;
      gap: 14px;
      margin: 20px 0 32px;
      line-height: 1;
    }
    .lab-name-the {
      font-family: var(--font-head);
      font-size: clamp(22px, 2.5vw, 38px);
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(217,219,244,0.6);
    }
    .lab-name-lab {
      font-family: var(--font-head);
      font-size: clamp(52px, 7.5vw, 108px);
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0, #C47D6A);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: warmShift 20s ease infinite;
      line-height: 0.95;
    }
    .lab-subhead {
      font-family: var(--font-head);
      font-size: clamp(14px, 1.4vw, 20px);
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(217,219,244,0.7);
      line-height: 1.45;
      margin-bottom: 32px;
    }
    .lab-cells {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items: start;
    }
    @media (max-width: 960px) {
      .lab-new-inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 6vw 80px; }
      .lab-cells { grid-template-columns: 1fr; }
    }


    
    .lab2-wrap {
      padding: 0 8vw 120px;
      position: relative;
    }
    .lab2-topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 40px 0 28px;
      border-bottom: 1px solid rgba(127,131,167,0.15);
      margin-bottom: 0;
    }
    .lab2-tag {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--magenta);
    }
    .lab2-coord {
      font-family: var(--font-sub);
      font-size: 12px;
      letter-spacing: 0.14em;
      color: rgba(127,131,167,0.45);
      text-transform: uppercase;
    }
    .lab2-title-row {
      display: flex;
      align-items: flex-end;
      gap: 60px;
      padding: 40px 0 0;
      border-bottom: 1px solid rgba(127,131,167,0.08);
      padding-bottom: 40px;
    }
    .lab2-title-left {
      display: flex;
      flex-direction: column;
      line-height: 0.9;
      flex-shrink: 0;
    }
    .lab2-the {
      font-family: var(--font-head);
      font-size: clamp(18px, 2vw, 32px);
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(217,219,244,0.65);
    }
    .lab2-lab {
      font-family: var(--font-head);
      font-size: clamp(64px, 9vw, 130px);
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0, #C47D6A);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: warmShift 20s ease infinite;
      line-height: 0.88;
    }
    .lab2-headline-col {
      padding-bottom: 8px;
    }
    .lab2-headline {
      font-family: var(--font-head);
      font-size: clamp(16px, 1.6vw, 24px);
      font-weight: 400;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(217,219,244,0.75);
      line-height: 1.5;
    }
    .lab2-rule {
      display: flex;
      align-items: center;
      gap: 0;
      height: 1px;
      background: linear-gradient(to right, rgba(127,131,167,0.2), rgba(127,131,167,0.06));
      margin: 0;
      position: relative;
    }
    .lab2-rule-tick {
      display: inline-block;
      width: 1px;
      height: 8px;
      background: rgba(127,131,167,0.3);
      margin-left: 20%;
      margin-top: -4px;
    }
    .lab2-body-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      padding: 40px 0 48px;
    }
    .lab2-body {
      font-family: var(--font-sub);
      font-size: clamp(14px, 1.1vw, 16px);
      font-weight: 300;
      line-height: 1.8;
      color: rgba(200,204,232,0.75);
      letter-spacing: 0.02em;
    }
    .lab2-panels {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .lab2-panel {
      position: relative;
      border: 1px solid rgba(127,131,167,0.14);
      padding: 32px 36px 36px;
      background: rgba(127,131,167,0.03);
      transition: background 0.3s ease;
    }
    .lab2-panel:hover {
      background: rgba(127,131,167,0.07);
    }
    /* corner accents */
    .lab2-panel-corner {
      position: absolute;
      width: 12px;
      height: 12px;
      border-color: rgba(196,125,106,0.7);
      border-style: solid;
    }
    .lab2-panel-corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
    .lab2-panel-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
    .lab2-panel-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
    .lab2-panel-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
    .lab2-panel-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }
    .lab2-panel-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--magenta);
      animation: pulse-dot 2.5s ease-in-out infinite;
      flex-shrink: 0;
    }
    .lab2-panel-label {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(217,219,244,0.8);
      flex: 1;
    }
    .lab2-panel-index {
      font-family: var(--font-sub);
      font-size: 12px;
      letter-spacing: 0.2em;
      color: rgba(127,131,167,0.7);
    }
    .lab2-panel-divider {
      height: 1px;
      background: linear-gradient(to right, rgba(196,125,106,0.3), transparent);
      margin-bottom: 20px;
    }
    .lab2-panel-body {
      font-family: var(--font-sub);
      font-size: clamp(14px, 1.1vw, 17px);
      font-weight: 600;
      line-height: 1.6;
      color: rgba(232,232,240,0.88);
      margin-bottom: 14px;
      letter-spacing: 0.01em;
    }
    .lab2-panel-detail {
      font-family: var(--font-sub);
      font-size: 14px;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(180,183,210,0.65);
      letter-spacing: 0.02em;
    }
    @media (max-width: 900px) {
      .lab2-body-row { grid-template-columns: 1fr; gap: 24px; }
      .lab2-panels { grid-template-columns: 1fr; }
      .lab2-title-row { flex-direction: column; gap: 20px; align-items: flex-start; }
      .lab2-wrap { padding: 0 6vw 80px; }
    }



    /* ── Lab section: eyebrow + coord row ── */
    .lab-eyebrow-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 100px 8vw 72px;
      gap: 48px;
    }

    .lab-crosshair {
      color: var(--magenta);
      opacity: 0.5;
      font-size: 14px;
      margin-right: 6px;
      animation: lab-xhair-pulse 3s ease-in-out infinite;
    }
    @keyframes lab-xhair-pulse {
      0%, 100% { opacity: 0.3; }
      50% { opacity: 0.7; }
    }

    .lab-coord {
      font-family: var(--font-sub);
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(180,185,220,0.7);
      text-align: left;
    }


    /* ── Lab callout cards (replaces lgc grid) ── */
    .lab-callouts {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--lab-grid-gap, 24px);
      padding: 0 var(--lab-side-pad, 8vw) 100px;
      max-width: var(--lab-max, 1280px);
      margin: 0 auto;
      box-sizing: content-box;
    }
    .lab-callout-card {
      border: 1px solid rgba(127,131,167,0.15);
      padding: 36px 40px 40px;
      position: relative;
      background: rgba(127,131,167,0.025);
      transition: background 0.3s ease, border-color 0.3s ease;
    }
    .lab-callout-card:hover {
      background: rgba(127,131,167,0.06);
      border-color: rgba(196,125,106,0.25);
    }
    /* corner accents */
    .lab-callout-card::before,
    .lab-callout-card::after {
      content: '';
      position: absolute;
      width: 10px;
      height: 10px;
      border-color: rgba(196,125,106,0.5);
      border-style: solid;
      transition: border-color 0.3s ease;
    }
    .lab-callout-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
    .lab-callout-card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
    .lab-callout-card:hover::before,
    .lab-callout-card:hover::after { border-color: rgba(196,125,106,0.9); }
    .lab-callout-num {
      font-family: var(--font-sub);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.28em;
      color: rgba(196,125,106,0.55);
      margin-bottom: 18px;
    }
    .lab-callout-label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-head);
      font-size: clamp(18px, 1.7vw, 24px);
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #E8B99A;
      margin-bottom: 24px;
    }
    .lab-callout-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--magenta);
      flex-shrink: 0;
      animation: lgc-pulse 3s ease-in-out infinite;
    }
    .lab-callout-divider {
      height: 1px;
      background: linear-gradient(to right, rgba(196,125,106,0.4), transparent);
      margin-bottom: 20px;
    }
    .lab-callout-body {
      font-family: var(--font-sub);
      font-size: clamp(16px, 1.25vw, 19px);
      font-weight: 500;
      line-height: 1.65;
      color: #E9ECF8;
      margin-bottom: 14px;
      letter-spacing: 0.01em;
    }
    .lab-callout-detail {
      font-family: var(--font-sub);
      font-size: clamp(15px, 1.1vw, 17px);
      font-weight: 300;
      line-height: 1.7;
      color: rgba(217,219,244,0.78);
      letter-spacing: 0.01em;
    }
    @media (max-width: 768px) {
      .lab-callouts { grid-template-columns: 1fr; padding: 0 6vw 60px; }

      .svc-right-card { padding: 20px 20px !important; max-width: 100% !important; }
      .svc-panel-inner { padding: 20px 0 16px !important; grid-template-columns: 40px 1fr !important; column-gap: 16px !important; }
      .svc-panel-body { font-size: 14px !important; }
      .svc-panel-result { font-size: 13px !important; }
    }


    /* ── Eng visual wrap + topbar ── */
    .eng-visual-wrap { display: flex; flex-direction: column; }
    .eng-visual-topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 0 10px 0;
      border-bottom: 1px solid rgba(127,131,167,0.12);
      margin-bottom: 10px;
    }
    .eng-visual-toplabel {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(168,171,202,0.55);
    }
    /* Corners: gradient #C10644 → #4C041D */
    .eng-visual-corner {
      position: absolute;
      width: 20px; height: 20px;
    }
    .eng-visual-corner::before,
    .eng-visual-corner::after {
      content: '';
      position: absolute;
      background: linear-gradient(135deg, #C10644, #4C041D);
    }
    .eng-visual-corner::before { width: 100%; height: 2px; top: 0; left: 0; }
    .eng-visual-corner::after  { width: 2px; height: 100%; top: 0; left: 0; }
    .eng-visual-corner.tl { top: 24px; left: 24px; }
    .eng-visual-corner.tr { top: 24px; right: 24px; transform: scaleX(-1); }
    .eng-visual-corner.bl { bottom: 24px; left: 24px; transform: scaleY(-1); }
    .eng-visual-corner.br { bottom: 24px; right: 24px; transform: scale(-1); }
    /* 5 callouts: left-aligned, equally spaced */



    /* ── Lab entrance animations ── */
    .lab-header-bar {
      opacity: 0;
      transform: scaleX(0);
      transform-origin: center;
    }
    .lab-header-bar.lab-in {
      opacity: 1;
      transform: scaleX(1);
      transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .lab-title-lab {
      opacity: 0;
      transform: translateY(40px);
      filter: blur(8px);
    }
    .lab-title-lab.lab-in {
      opacity: 1 !important;
      transform: translateY(0) !important;
      filter: blur(0) !important;
      transition: opacity 0.7s ease 0.2s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, filter 0.7s ease 0.2s;
    }

    .lab-eyebrow-row > div:last-child {
      opacity: 0;
      transform: translateX(40px);
    }
    .lab-eyebrow-row > div:last-child.lab-in {
      opacity: 1;
      transform: translateX(0);
      transition: opacity 0.7s ease 0.4s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
    }

    .lab-callout-card {
      opacity: 0;
      transform: translateY(30px) scale(0.97);
    }
    .lab-callout-card.lab-in {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* ── Lab header bar ── */
    .lab-header-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 8vw 24px;
      border-bottom: 1px solid rgba(127,131,167,0.08);
      margin-bottom: -20px;
    }
    .lab-hb-left, .lab-hb-right, .lab-hb-center {
      font-family: var(--font-sub);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(180,178,220,0.35);
    }
    .lab-hb-left { color: rgba(196,125,106,0.5); }
    .lab-hb-center { color: rgba(127,131,167,0.2); }

    /* ── Lab card header: 01 | SYSTEM MODULE | status dots ── */
    .lab-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(127,131,167,0.08);
    }
    .lab-card-num {
      font-family: var(--font-head);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: rgba(232,185,154,0.5);
    }
    .lab-card-module {
      font-family: var(--font-sub);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      color: rgba(127,131,167,0.5);
      margin-left: auto;
    }
    .lab-card-status-dots {
      display: flex;
      gap: 3px;
      align-items: center;
    }
    .lab-card-status-dots span {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(127,131,167,0.2);
    }
    .lab-card-status-dots .lab-sd-on {
      background: var(--magenta);
      box-shadow: 0 0 4px rgba(193,6,68,0.4);
    }
    .lab-card-status-dots .lab-sd-blue {
      background: rgba(180,200,240,0.85);
      box-shadow: 0 0 6px rgba(180,200,240,0.4);
    }

    /* ── Lab card footer: STATUS ▸ ONLINE ── */
    .lab-card-footer {
      margin-top: 20px;
      padding-top: 12px;
      border-top: 1px solid rgba(127,131,167,0.08);
      font-family: var(--font-sub);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(127,131,167,0.4);
    }
    .lab-status-live {
      color: rgba(196,125,106,0.7);
    }

    /* ── Lab footer bar ── */
    .lab-footer-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 8vw 0;
      border-top: 1px solid rgba(127,131,167,0.08);
      margin-top: 20px;
    }
    .lab-fb-left, .lab-fb-right, .lab-fb-center {
      font-family: var(--font-sub);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(127,131,167,0.3);
    }
    .lab-fb-dot {
      display: inline-block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(196,125,106,0.5);
      vertical-align: middle;
      margin-left: 4px;
    }
    .lab-fb-center { color: rgba(127,131,167,0.15); }

    /* ── Corner brackets: also add to the eyebrow row panels ── */
    .lab-eyebrow-row > div:first-child {
      position: relative;
      padding: 24px;
    }
    .lab-eyebrow-row > div:first-child::before,
    .lab-eyebrow-row > div:first-child::after {
      content: '';
      position: absolute;
      width: 12px;
      height: 12px;
      border-color: rgba(196,125,106,0.3);
      border-style: solid;
    }
    .lab-eyebrow-row > div:first-child::before { top: 0; left: 0; border-width: 1px 0 0 1px; }
    .lab-eyebrow-row > div:first-child::after { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

    .lab-eyebrow-row > div:last-child {
      position: relative;
      padding: 24px;
      border: 1px solid rgba(127,131,167,0.08);
    }
    .lab-eyebrow-row > div:last-child::before,
    .lab-eyebrow-row > div:last-child::after {
      content: '';
      position: absolute;
      width: 12px;
      height: 12px;
      border-color: rgba(127,131,167,0.3);
      border-style: solid;
    }
    .lab-eyebrow-row > div:last-child::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
    .lab-eyebrow-row > div:last-child::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

    /* ── Scan line for The Lab ── */
    #the-lab::before {
      content: '';
      position: absolute;
      left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(127,131,167,0.12) 30%, rgba(127,131,167,0.2) 50%, rgba(127,131,167,0.12) 70%, transparent 100%);
      animation: lab-scan 18s linear infinite;
      pointer-events: none;
      z-index: 2;
    }
    @keyframes lab-scan {
      0%   { top: 0%;   opacity: 0; }
      5%   { opacity: 1; }
      95%  { opacity: 0.3; }
      100% { top: 100%; opacity: 0; }
    }

    /* ─── THE LAB Section ────────────────────────── */
    #the-lab {
      padding: 140px 0 60px;
      background:
        linear-gradient(180deg, var(--bg) 0%, #0e0e1a 50%, var(--bg) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ccircle cx='16' cy='16' r='0.5' fill='rgba(127,131,167,0.08)'/%3E%3C/svg%3E");
      position: relative;
      overflow: hidden;
    }
    /* Subtle grid overlay */
    #the-lab::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(0deg, rgba(127,131,167,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127,131,167,0.025) 1px, transparent 1px);
      background-size: 100px 100px;
      pointer-events: none;
      z-index: 0;
    }
    #the-lab > * { position: relative; z-index: 1; }

    .lab-triptych {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 32px;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .lab-card {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(127,131,167,0.15);
      border-radius: 2px;
      padding: 36px 32px;
      position: relative;
      transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
      overflow: hidden;
    }

    .lab-card::before {
      content: ;
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,226,192,0.06) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }

    .lab-card::after {
      content: ;
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(255,226,192,0.6), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .lab-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255,226,192,0.25);
      box-shadow: 0 20px 60px rgba(196,125,106,0.12), 0 4px 20px rgba(0,0,0,0.3);
      background: rgba(255,226,192,0.03);
    }

    .lab-card:hover::before { opacity: 1; }
    .lab-card:hover::after { opacity: 1; }

    .lab-card:hover p { color: rgba(217,219,244,0.85); }

    .lab-card p {
      font-size: 15px;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.8;
      margin: 0;
    }

    .lab-card strong {
      color: var(--cream);
      font-weight: 500;
    }

    .lab-title-block {
      text-align: center;
      padding: 0 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    .lab-connector {
      width: 1px;
      height: 32px;
      background: linear-gradient(to bottom, transparent, rgba(255,226,192,0.3));
    }

    .lab-connector.bottom {
      background: linear-gradient(to bottom, rgba(255,226,192,0.3), transparent);
    }

    .lab-title-text {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 12px 0;
    }

    .lab-title-the {
      font-family: var(--font-sub);
      font-size: clamp(13px, 1.2vw, 18px);
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(255,226,192,0.4);
      display: block;
      margin-bottom: 4px;
    }

    .lab-title-lab {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: clamp(36px, 4.2vw, 62px);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0, #C47D6A);
      background-size: 300% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      display: block;
      animation: labGradShift 7s ease-in-out infinite alternate;
    }

    @keyframes labGradShift {
      0%   { background-position: 0% center; }
      100% { background-position: 100% center; }
    }

    @media (max-width: 860px) {
      .lab-triptych {
        grid-template-columns: 1fr;
      }
      .lab-title-block { order: -1; }
      .lab-connector { display: none; }
    }
  
/* ── Lab Grid — Technical Readout Panels ── */
    .lab-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      padding: 0 5vw 60px;
    }

    .lab-grid-cell {
      position: relative;
      padding: 30px 34px 36px;
      min-height: 180px;
      background:
        radial-gradient(circle at 50% 50%, rgba(196,125,106,0.03) 0%, transparent 65%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='0.75' fill='rgba(127,131,167,0.18)'/%3E%3C/svg%3E");
      border: 1px solid rgba(127,131,167,0.14);
      display: flex;
      flex-direction: column;
      gap: 18px;
      overflow: hidden;
      transition: border-color 0.6s ease, box-shadow 0.6s ease, background 0.6s ease;
    }

    .lab-grid-cell:hover {
      border-color: rgba(196,125,106,0.3);
      box-shadow: 0 0 0 1px rgba(196,125,106,0.08) inset,
                  0 8px 48px rgba(196,125,106,0.07);
    }

    /* Corner tick marks — like the engineering visual */
    .lgc-corner {
      position: absolute;
      width: 10px; height: 10px;
      transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
      opacity: 0.35;
    }
    .lgc-corner::before, .lgc-corner::after {
      content: '';
      position: absolute;
      background: #C47D6A;
    }
    .lgc-corner::before { width: 100%; height: 1px; top: 0; left: 0; }
    .lgc-corner::after  { width: 1px; height: 100%; top: 0; left: 0; }

    .lgc-tl { top: 12px; left: 12px; }
    .lgc-tr { top: 12px; right: 12px; transform: scaleX(-1); }
    .lgc-bl { bottom: 12px; left: 12px; transform: scaleY(-1); }
    .lgc-br { bottom: 12px; right: 12px; transform: scale(-1); }

    .lab-grid-cell:hover .lgc-corner {
      width: 14px; height: 14px; opacity: 0.7;
    }

    /* Index number */
    .lgc-index {
      position: absolute;
      top: 12px; right: 16px;
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.2em;
      color: rgba(232,185,154,0.4);
      transition: color 0.5s ease;
    }
    .lab-grid-cell:hover .lgc-index { color: rgba(232,185,154,0.45); }

    /* Header row: pulse dot + label */
    .lgc-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }

    .lgc-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: #C47D6A;
      flex-shrink: 0;
      box-shadow: 0 0 0 0 rgba(196,125,106,0.5);
      animation: lgc-pulse 3s ease-in-out infinite;
    }

    @keyframes lgc-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(196,125,106,0.5); opacity: 1; }
      50%       { box-shadow: 0 0 0 5px rgba(196,125,106,0); opacity: 0.7; }
    }

    .lab-grid-label {
      font-family: var(--font-head);
      font-size: clamp(14px, 1.4vw, 20px);
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #E8B99A;
      -webkit-text-fill-color: #E8B99A;
      background: none;
      transition: color 0.4s ease;
    }

    .lab-grid-cell:hover .lab-grid-label { color: #F0C9AE; }



    /* Inner layout — simple stacked */
    .lgc-inner {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .lgc-headline {
      font-family: var(--font-sub);
      font-size: clamp(14px, 1.2vw, 17px);
      font-weight: 600;
      line-height: 1.65;
      letter-spacing: 0.02em;
      text-transform: none;
      color: rgba(232,232,240,0.9);
      margin: 0;
      transition: color 0.5s ease;
    }
    .lab-grid-cell:hover .lgc-headline { color: #D9DBF4; }

    .lgc-vdivider {
      display: none;
      width: 1px;
      align-self: stretch;
      background: linear-gradient(to bottom, #E8B99A 0%, rgba(232,185,154,0.1) 100%);
      transition: opacity 0.5s ease;
      opacity: 0.45;
    }
    .lab-grid-cell:hover .lgc-vdivider { opacity: 0.85; }

    .lgc-detail {
      font-family: var(--font-sub);
      font-size: clamp(12px, 0.95vw, 14px);
      font-weight: 300;
      line-height: 1.9;
      letter-spacing: 0.03em;
      padding-top: 0;
      background: linear-gradient(120deg, #D9DBF4 0%, #C8CCE8 50%, #E8B99A 100%);
      background-size: 200% 100%;
      background-position: 0% center;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: background-position 1.2s ease;
    }
    .lab-grid-cell:hover .lgc-detail { background-position: 60% center; }

    @media (max-width: 768px) {
      .lab-grid { grid-template-columns: 1fr; padding: 0 6vw 60px; }
    }

    .eng-stat-row {
      display: flex;
      gap: 64px;
      margin-top: 48px;
    }

    .eng-stat {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .eng-stat-num {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: 52px;
      line-height: 1;
      color: #C47D6A;
    }

    .eng-stat-label {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--lavender);
      white-space: nowrap;
    }

    /* Decorative line art */
    .eng-visual {
      position: relative;
      height: 420px;
    }

    .eng-visual-box {
      position: absolute;
      inset: 0;
      border: 1px solid rgba(127,131,167,0.15);
      border-radius: 2px;
    }

    .eng-visual-inner {
      position: absolute;
      inset: 24px;
      border: 1px solid rgba(127,131,167,0.08);
      border-radius: 2px;
    }



    .eng-visual-center {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
    }

    .eng-visual-dim {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: 64px;
      color: rgba(255,226,192,0.08);
      line-height: 1;
    }

    .eng-visual-dim-label {
      font-family: var(--font-sub);
      font-size: 12px;
      letter-spacing: 0.3em;
      color: rgba(127,131,167,0.3);
      text-transform: uppercase;
    }

    /* Animated grid lines */
    .eng-visual-grid {
      position: absolute;
      inset: 40px;
      background-image:
        linear-gradient(rgba(127,131,167,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127,131,167,0.04) 1px, transparent 1px);
      background-size: 30px 30px;
    }

    /* Glow dot */
        .eng-callout {
      position: absolute;
      will-change: auto;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .eng-callout-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: linear-gradient(to bottom, #D9DBF4, #7F83A7);
      box-shadow: 0 0 10px rgba(196,125,106,0.7), 0 0 20px rgba(255,226,192,0.3);
      flex-shrink: 0;
      animation: dot-pulse 2.5s ease-in-out infinite;
    }
    .eng-callout-line {
      width: 32px;
      transform-origin: left center;
      height: 1px;
      background: linear-gradient(to right, #FFE2C0, rgba(196,125,106,0.3));
    }
    .eng-callout-label {
      font-family: var(--font-sub);
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      background: linear-gradient(to bottom, #D9DBF4, #7F83A7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      white-space: nowrap;
    }



    /* Centered callout list */
    .eng-callout-list {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;
    }
    .eng-callout-list .eng-callout {
      position: static;
    }

    @keyframes dot-pulse {
      0%, 100% { opacity: 0.7; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.5); }
    }

    /* ─── Section 3 — Space ────────────────────────── */
    #space {
      padding: 140px 0;
      background: linear-gradient(180deg, var(--bg) 0%, #0e0e1a 50%, var(--bg) 100%);
    }

    #space .section-inner {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .space-headline {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: clamp(48px, 6.5vw, 96px);
      line-height: 1.0;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text);
      margin-bottom: 60px;
    }

    .space-features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      margin-top: 80px;
    }

    .space-feature {
      padding: 48px 32px;
      background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(41,43,61,0.3) 100%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 4px 24px rgba(0,0,0,0.2);
      border-top: 1px solid rgba(127,131,167,0.12);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .space-feature::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #C47D6A, #7F83A7, transparent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .space-feature:hover::after { transform: scaleX(1); }

    .space-feature:hover {
      background: rgba(41,43,61,0.6);
      transform: translateY(-4px);
    }

    .feature-icon {
      font-size: 28px;
      margin-bottom: 20px;
      display: block;
    }

    .feature-title {
      font-family: var(--font-sub);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cream);
      margin-bottom: 12px;
    }

    .feature-desc {
      font-size: 13px;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* ── What We Solve For ── */
    #solve {
      padding: 120px 0 0;
      overflow: visible;
    }

    .solve-two-col {
      display: grid;
      grid-template-columns: 40% 60%;
      gap: 0;
      align-items: start;
    }

    .solve-left {
      position: sticky;
      top: 15vh;
      padding: 0 5vw 80px;
    }

    .solve-headline {
      font-family: var(--font-head);
      font-size: clamp(36px, 4.5vw, 72px);
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      line-height: 1.0;
      color: var(--text);
      margin-top: 20px;
    }

    .solve-right {
      border-left: 1px solid rgba(127,131,167,0.1);
      padding-bottom: 120px;
    }

    .solve-card {
      padding: 56px 5vw;
      border-bottom: 1px solid rgba(127,131,167,0.07);
      position: relative;
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    /* Warm left accent line */
    .solve-card::before {
      content: '';
      position: absolute;
      left: 0; top: 20%; bottom: 20%;
      width: 2px;
      background: linear-gradient(to bottom, transparent, rgba(232,185,154,0.4), transparent);
      opacity: 0;
      transition: opacity 0.6s ease 0.3s;
    }

    .solve-card.in-view::before { opacity: 1; }

    .solve-index {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.3em;
      color: rgba(127,131,167,0.7);
      margin-bottom: 24px;
    }

    /* Side-by-side problem / solution within each card */
    .solve-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    .solve-col {
      padding-right: 32px;
    }
    .solve-col + .solve-col {
      padding-right: 28px;
      padding-left: 32px;
      border-left: 1px solid rgba(127,131,167,0.12);
    }
    .solve-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-sub);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .solve-label::before {
      content: '';
      display: inline-block;
      width: 12px;
      height: 1px;
      flex-shrink: 0;
    }
    .solve-label-problem {
      color: rgba(127,131,167,0.9);
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
    }
    .solve-label-problem::before { background: rgba(127,131,167,0.6); }
    .solve-label-solution {
      color: #FFE2C0;
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
    }
    .solve-label-solution::before { background: #FFE2C0; }

    .solve-problem {
      font-family: var(--font-sub);
      font-size: clamp(14px, 1.2vw, 17px);
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: rgba(217,219,244,0.82);
      line-height: 1.55;
    }

    .solve-solution {
      font-family: var(--font-sub);
      font-size: clamp(14px, 1.2vw, 18px);
      font-weight: 700;
      letter-spacing: 0.01em;
      text-transform: none;
      line-height: 1.55;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    @media (max-width: 480px) {
      .solve-two-col { grid-template-columns: 1fr; }
      .solve-left { position: relative; top: auto; }
      .solve-right { border-left: none; border-top: 1px solid rgba(127,131,167,0.1); }
      .solve-card { padding: 48px 6vw; opacity: 1; transform: none; }
    }


    /* ── Services Section ──    /* ── Services Section ── */
    #services {
      padding: 120px 0 60px;
      position: relative;
      overflow: visible;
      /* Retro-technical dot grid + subtle gradient */
      background:
        radial-gradient(circle at 20% 30%, rgba(193,6,68,0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(196,125,106,0.02) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ccircle cx='16' cy='16' r='0.5' fill='rgba(127,131,167,0.12)'/%3E%3C/svg%3E");
    }

    /* Retro grid overlay */
    #services::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(0deg, rgba(127,131,167,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127,131,167,0.03) 1px, transparent 1px);
      background-size: 120px 120px;
      pointer-events: none;
      z-index: 0;
    }

    #services > * {
      position: relative;
      z-index: 1;
    }

    #services::before {
      content: '';
      position: absolute;
      left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(232,185,154,0.18) 30%, rgba(232,185,154,0.35) 50%, rgba(232,185,154,0.18) 70%, transparent 100%);
      animation: svc-scan 12s linear infinite;
      pointer-events: none;
    }

    @keyframes svc-scan {
      0%   { top: 0%;   opacity: 0; }
      5%   { opacity: 1; }
      95%  { opacity: 0.4; }
      100% { top: 100%; opacity: 0; }
    }

    /* Services intro — editorial treatment */
    .svc-intro-wrap {
      padding: 80px 8vw 48px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .svc-intro-label {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(196,125,106,0.7);
      margin-bottom: 20px;
    }

    .svc-intro-negative {
      font-family: var(--font-head);
      font-size: clamp(16px, 1.6vw, 22px);
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #D9DBF4;
      margin-bottom: 6px;
      line-height: 1;
      text-decoration: line-through;
      text-decoration-color: rgba(217,219,244,0.45);
    }

    .svc-intro-positive {
      font-family: var(--font-head);
      font-size: clamp(36px, 4.5vw, 72px);
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      line-height: 1.05;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0);
      background-size: 200% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: labGradShift 10s ease-in-out infinite alternate;
      margin-bottom: 20px;
    }

    .svc-intro-detail {
      font-family: var(--font-sub);
      font-size: clamp(13px, 1.1vw, 16px);
      font-weight: 300;
      line-height: 1.8;
      color: #D9DBF4;
      letter-spacing: 0.04em;
      max-width: 560px;
    }

    .svc-intro { display: none; }

    /* radial diagram */
    .svc-radial-wrap {
      position: relative;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      min-height: 480px;
      max-width: 1300px;
      margin: 0 auto;
      gap: 40px;
      padding: 0 4vw;
    }

    .svc-diagram-area {
      position: relative;
      flex: 0 0 auto;
      width: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 300px;
      background-image: radial-gradient(circle, rgba(180,178,220,0.13) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    /* Right panel — hidden, tooltips handle content */
    .svc-right-panel {
      flex: 0 1 380px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 0 0 0 3vw;
      border-left: 1px solid rgba(127,131,167,0.08);
    }

    .svc-right-card {
      width: 100%;
      max-width: 600px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.4s ease, transform 0.4s ease;
      background: rgba(10,10,18,0.3);
      border: 1px solid rgba(127,131,167,0.1);
      border-top: 1px solid rgba(196,125,106,0.2);
      padding: 36px 40px;
      position: relative;
      overflow: hidden;
    }
    
    .svc-right-card.svc-default .svc-panel-inner {
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 200px;
    }
    .svc-right-card.svc-default .svc-right-num { text-align: center; }
    .svc-right-card.svc-default .svc-right-title { text-align: center; letter-spacing: 0.2em; }
    .svc-right-card.visible {
      opacity: 1;
      transform: translateY(0);
      border-color: rgba(196,125,106,0.3);
      box-shadow: 0 0 0 1px rgba(196,125,106,0.08) inset, 0 8px 48px rgba(196,125,106,0.07);
    }
    /* Corner ticks — match lgc-corner */
    .svc-right-card .src-corner {
      position: absolute;
      width: 10px; height: 10px;
    }
    .svc-right-card .src-corner::before,
    .svc-right-card .src-corner::after {
      content: '';
      position: absolute;
      background: #C47D6A;
    }
    .svc-right-card .src-corner::before { width: 100%; height: 1px; top: 0; left: 0; }
    .svc-right-card .src-corner::after  { width: 1px; height: 100%; top: 0; left: 0; }
    .svc-right-card .src-tl { top: 12px; left: 12px; }
    .svc-right-card .src-tr { top: 12px; right: 12px; transform: scaleX(-1); }
    .svc-right-card .src-bl { bottom: 12px; left: 12px; transform: scaleY(-1); }
    .svc-right-card .src-br { bottom: 12px; right: 12px; transform: scale(-1); }

    .svc-right-num {
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: rgba(193,6,68,0.45);
      margin-bottom: 16px;
      text-transform: uppercase;
    }
    .svc-right-title {
      font-family: var(--font-head);
      font-size: clamp(14px, 1.4vw, 18px);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: linear-gradient(120deg, #D9DBF4, #7F83A7, #D9DBF4, #7F83A7);
      background-size: 300% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: svcTitleShift 16s ease-in-out infinite;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    @keyframes svcTitleShift {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    .svc-right-body {
      font-family: var(--font-sub);
      font-size: 13px;
      font-weight: 300;
      line-height: 1.75;
      color: #FFE2C0;
      margin-bottom: 20px;
    }
    .svc-right-result {
      font-family: var(--font-sub);
      font-size: 15px;
      font-weight: 500;
      background: linear-gradient(135deg, #FFF1E0, #FFE2C0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      border-top: 1px solid rgba(127,131,167,0.12);
      padding-top: 16px;
      line-height: 1.6;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* SVG connector lines */
    .svc-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: visible;
    }

    .svc-line {
      stroke: rgba(180,178,220,0.28);
      stroke-width: 1;
      stroke-dasharray: 3 5;
      animation: svc-dash 3s linear infinite;
      transition: stroke 0.4s ease, stroke-width 0.3s ease;
    }

    .svc-line.warm {
      stroke: rgba(232,185,154,0.65);
      stroke-width: 1;
      animation: svc-dash 1.6s linear infinite;
    }

    @keyframes svc-dash {
      to { stroke-dashoffset: -18; }
    }

    /* center node */
    .svc-center-node {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 120px;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
    }

    .svc-c-circle {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(180,178,220,0.1);
      pointer-events: none;
    }
    .svc-c-circle.c1 { width: 300px; height: 300px; border-color: rgba(76,4,29,0.3); }
    .svc-c-circle.c2 { width: 370px; height: 370px; border-color: rgba(180,178,220,0.12); }
    .svc-c-circle.c3 { width: 440px; height: 440px; border-color: rgba(180,178,220,0.08); }

    .svc-c-orbit {
      position: absolute;
      width: 275px;
      height: 275px;
      border-radius: 50%;
      border: 1px dashed rgba(232,185,154,0.22);
      border-top-color: rgba(232,185,154,0.65);
      animation: svc-orbit-spin 8s linear infinite;
      pointer-events: none;
    }

    @keyframes svc-orbit-spin {
      to { transform: rotate(360deg); }
    }

    .svc-c-diamond {
      position: absolute;
      width: 260px;
      height: 260px;
      border: 1px solid rgba(232,185,154,0.55);
      outline: 1px solid rgba(76,4,29,0.3);
      outline-offset: 14px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(76,4,29,0.35) 0%, rgba(76,4,29,0.08) 60%, transparent 100%);
      animation: svc-center-pulse 4s ease-in-out infinite;
    }

    @keyframes svc-center-pulse {
      0%, 100% { outline-color: rgba(76,4,29,0.2); box-shadow: 0 0 0 0 rgba(76,4,29,0); }
      50%       { outline-color: rgba(76,4,29,0.45); box-shadow: 0 0 16px rgba(76,4,29,0.3); }
    }


    /* Circle center title */
    .svc-c-title {
      position: relative;
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: rgba(232,185,154,0.95);
      text-transform: uppercase;
      white-space: nowrap;
      z-index: 4;
      margin-bottom: 4px;
      text-align: center;
    }
    /* Make label smaller as subtitle */
    .svc-c-label {
      font-size: 11px !important;
      color: rgba(180,178,220,0.55) !important;
      letter-spacing: 0.2em !important;
      text-align: center !important;
    }

    .svc-c-label {
      position: relative;
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 0.24em;
      color: rgba(232,185,154,0.92);
      text-transform: uppercase;
      white-space: nowrap;
      z-index: 4;
    }

    .svc-c-coord {
      position: absolute;
      bottom: -24px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-sub);
      font-size: 12px;
      letter-spacing: 0.07em;
      color: rgba(180,178,220,0.5);
      white-space: nowrap;
    }

    /* ── Services: two-column layout (circle left, cards right) ── */
    .svc-cards-col {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: 20px 0;
      flex: 0 0 auto;
    }

    /* Outer frame corner brackets */
    .svc-frame-corner {
      position: absolute;
      width: 14px;
      height: 14px;
      border-color: rgba(196,125,106,0.35);
      border-style: solid;
      z-index: 1;
    }
    .svc-fc-tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
    .svc-fc-tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
    .svc-fc-bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
    .svc-fc-br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

    /* Diamond separators between cards */
    .svc-diamond-sep {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding: 8px 0;
    }
    .svc-ds-gem {
      width: 10px;
      height: 10px;
      border: 1px solid rgba(196,125,106,0.5);
      transform: rotate(45deg);
      flex-shrink: 0;
    }
    .svc-ds-line {
      width: 40px;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(196,125,106,0.3));
    }
    .svc-ds-top .svc-ds-line:first-child {
      background: linear-gradient(to right, rgba(196,125,106,0.3), transparent);
    }

    /* Card frame */
    .svc-nd-card {
      position: relative;
      border: 1px solid rgba(196,125,106,0.25);
      padding: 14px 18px 14px 28px;
      background: rgba(10,10,18,0.4);
      text-align: left;
      width: 100%;
      max-width: 260px;
      cursor: pointer;
      transition: border-color 0.3s ease, background 0.3s ease;
    }

    .svc-nd-card:hover,
    .svc-nd-card.active {
      border-color: rgba(232,185,154,0.5);
      background: rgba(232,185,154,0.04);
    }

    .svc-nd-edge-diamond {
      position: absolute;
      left: -20px;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      z-index: 2;
    }
    .svc-nd-edge-diamond .svc-nd-diamond {
      top: 5px;
      left: 5px;
      width: 30px;
      height: 30px;
    }

    

    /* Corner accents on cards */
    .svc-nd-corner {
      position: absolute;
      width: 8px;
      height: 8px;
      border-color: rgba(196,125,106,0.5);
      border-style: solid;
      transition: border-color 0.3s ease;
    }
    .svc-nc-tl { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
    .svc-nc-tr { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
    .svc-nc-bl { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
    .svc-nc-br { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

    .svc-nd-card:hover .svc-nd-corner,
    .svc-nd-card.active .svc-nd-corner {
      border-color: rgba(232,185,154,0.8);
    }

    .svc-nd-card:hover .svc-nd-title,
    .svc-nd-card.active .svc-nd-title {
      color: rgba(217,219,244,0.92);
    }

    .svc-nd-shell {
      width: 56px;
      height: 56px;
      flex-shrink: 0;
      cursor: pointer;
    }

    .svc-nd-diamond {
      position: absolute;
      top: 8px;
      left: 8px;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(196,125,106,0.55);
      transform: rotate(45deg);
      transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    }

    .svc-node.active .svc-nd-diamond,
    .svc-node:hover .svc-nd-diamond {
      border-color: rgba(196,125,106,0.95);
      background: rgba(76,4,29,0.18);
      box-shadow: 0 0 10px rgba(196,125,106,0.15);
    }

    .svc-nd-dot {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(196,125,106,0.85);
      transition: background 0.35s ease, box-shadow 0.35s ease;
      animation: svc-node-pulse 2.5s ease-in-out infinite;
    }

    .svc-node.active .svc-nd-dot,
    .svc-node:hover .svc-nd-dot {
      background: #C10644;
      box-shadow: 0 0 8px rgba(193,6,68,0.7);
    }

    #svc-node-02 .svc-nd-dot { animation-delay: 0.85s; }
    #svc-node-03 .svc-nd-dot { animation-delay: 1.7s; }

    @keyframes svc-node-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(196,125,106,0.6); }
      50%       { box-shadow: 0 0 0 5px rgba(196,125,106,0); }
    }

    .svc-nd-tick {
      position: absolute;
      background: rgba(196,125,106,0.5);
      transition: background 0.35s ease;
    }
    .svc-node.active .svc-nd-tick,
    .svc-node:hover .svc-nd-tick { background: rgba(196,125,106,1); }

    .tick-t { top: 0;    left: 50%; transform: translateX(-50%); width: 1px; height: 8px; }
    .tick-r { right: 0;  top: 50%;  transform: translateY(-50%); width: 8px; height: 1px; }
    .tick-b { bottom: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 8px; }
    .tick-l { left: 0;   top: 50%;  transform: translateY(-50%); width: 8px; height: 1px; }

    .svc-nd-index {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: rgba(232,185,154,0.75);
      margin-bottom: 10px;
      text-align: left;
    }

    .svc-nd-title {
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      line-height: 1.35;
      color: rgba(232,185,154,0.92);
      margin-top: 0;
      max-width: 200px;
      transition: color 0.35s ease;
    }

    .svc-node.active .svc-nd-title,
    .svc-node:hover .svc-nd-title { color: rgba(217,219,244,0.92); }

    .svc-nd-coord {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.14em;
      color: rgba(196,125,106,0.7);
      margin-top: 8px;
      text-transform: uppercase;
      text-align: left;
    }

    /* detail panel */
    .svc-panel { display: none !important; }
    .svc-panel-DISABLED {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
    }

    .svc-panel.open {
      max-height: 320px;
      opacity: 1;
    }

    .svc-panel-inner {
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .svc-panel-idx {
      grid-row: auto;
      grid-column: 1 / -1;
      font-family: var(--font-head);
      font-size: clamp(40px, 6vw, 56px);
      font-weight: 700;
      line-height: 1;
      color: var(--magenta);
      opacity: 0.35;
      letter-spacing: 0.04em;
      margin-bottom: 16px;
    }

    .svc-panel-title {
      font-family: var(--font-head);
      font-size: clamp(14px, 1.5vw, 18px);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(217,219,244,0.92);
      margin-bottom: 16px;
    }

    .svc-panel-body {
      font-family: var(--font-sub);
      font-size: 14px;
      font-weight: 300;
      line-height: 1.75;
      color: rgba(200,204,232,0.72);
      margin-bottom: 20px;
    }

    .svc-panel-result {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 14px 0 0;
      border: none;
      border-top: 1px solid rgba(127,131,167,0.08);
    }

    .svc-result-arrow {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 600;
      color: #E8B99A;
      opacity: 0.8;
      flex-shrink: 0;
      letter-spacing: 0.1em;
    }

    .svc-result-text {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 400;
      line-height: 1.7;
      color: rgba(232,185,154,0.75);
      letter-spacing: 0.02em;
    }

    @media (max-width: 860px) {
      .svc-diagram-area { min-height: 400px; }
      .svc-panel-inner { grid-template-columns: 38px 1fr; }
    }
  
    /* Hover card — retro technical vibe */
    .svc-tooltip { display: none !important; }
    .svc-tooltip-DISABLED {
      position: absolute;
      width: 240px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease, transform 0.4s ease;
      transform: translateY(6px);
      z-index: 20;
      background: rgba(10,10,14,0.97);
      border: 1px solid rgba(232,185,154,0.22);
      padding: 18px 20px;
      text-align: left;
      background-image: radial-gradient(circle, rgba(127,131,167,0.1) 1px, transparent 1px);
      background-size: 20px 20px;
    }

    /* Corner ticks */
    .svc-tooltip::before,
    .svc-tooltip::after {
      content: '';
      position: absolute;
      width: 7px;
      height: 7px;
      border-color: rgba(232,185,154,0.55);
      border-style: solid;
    }
    .svc-tooltip::before { top: 5px; left: 5px; border-width: 1px 0 0 1px; }
    .svc-tooltip::after  { bottom: 5px; right: 5px; border-width: 0 1px 1px 0; }

    .svc-node:hover,
    .svc-node.active { z-index: 15; }
    .svc-node:hover .svc-tooltip,
    .svc-node.active .svc-tooltip {
      opacity: 1;
      transform: translateY(0);
    }

    /* Node 01: top-left — card goes right */
    #svc-node-01 .svc-tooltip {
      left: 60px;
      top: 0;
    }

    /* Node 02: top-right — card goes left */
    #svc-node-02 .svc-tooltip {
      right: 60px;
      top: 0;
    }

    /* Node 03: bottom — card goes above-right */
    #svc-node-03 .svc-tooltip {
      left: 60px;
      bottom: 20px;
    }

    .svc-tooltip-title {
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0);
      background-size: 200% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: labGradShift 8s ease-in-out infinite alternate;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .svc-tooltip-body {
      font-family: var(--font-sub);
      font-size: 14px;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(200,204,232,0.65);
      margin-bottom: 10px;
    }

    .svc-tooltip-result {
      font-family: var(--font-sub);
      font-size: 14px;
      font-weight: 400;
      color: rgba(232,185,154,0.82);
      border-top: 1px solid rgba(232,185,154,0.15);
      padding-top: 8px;
      line-height: 1.65;
    }

  
    /* ── Mobile overrides (final) ── */
    @media (max-width: 900px) {
      .space-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1px;
      }
      .space-feature {
        padding: 32px 20px;
      }
      .feature-title {
        font-size: 12px;
        letter-spacing: 0.12em;
      }
      .feature-desc {
        font-size: 13px;
      }
    }
    @media (max-width: 480px) {
      .space-features {
        grid-template-columns: 1fr !important;
      }
    }
  
    /* ─── Case Studies ───────────────────────────────── */
    #case-studies {
      padding: 80px 0 120px;
    }

    .cs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 60px;
    }

    .cs-card {
      padding: 48px 36px;
      background: radial-gradient(circle at 50% 0%, rgba(196,125,106,0.05) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='0.75' fill='rgba(127,131,167,0.15)'/%3E%3C/svg%3E");
      border-top: 1px solid rgba(127,131,167,0.14);
      position: relative;
      overflow: hidden;
      transition: border-color 0.5s ease, box-shadow 0.5s ease;
    }

    .cs-card:hover {
      border-color: rgba(196,125,106,0.35);
      box-shadow: 0 0 0 1px rgba(196,125,106,0.08) inset, 0 8px 48px rgba(196,125,106,0.07);
    }

    /* Corner ticks */
    .cs-card .cs-tl, .cs-card .cs-br {
      position: absolute;
      width: 10px; height: 10px;
    }
    .cs-card .cs-tl::before, .cs-card .cs-tl::after,
    .cs-card .cs-br::before, .cs-card .cs-br::after {
      content: ''; position: absolute; background: #C47D6A; opacity: 0.5;
    }
    .cs-card .cs-tl::before { width: 100%; height: 1px; top: 0; left: 0; }
    .cs-card .cs-tl::after  { width: 1px; height: 100%; top: 0; left: 0; }
    .cs-card .cs-br::before { width: 100%; height: 1px; bottom: 0; right: 0; top: auto; left: auto; }
    .cs-card .cs-br::after  { width: 1px; height: 100%; bottom: 0; right: 0; top: auto; left: auto; }
    .cs-card .cs-tl { top: 12px; left: 12px; }
    .cs-card .cs-br { bottom: 12px; right: 12px; }

    .cs-card:hover .cs-tl::before, .cs-card:hover .cs-tl::after,
    .cs-card:hover .cs-br::before, .cs-card:hover .cs-br::after { opacity: 1; }

    .cs-client {
      font-family: var(--font-head);
      font-size: clamp(32px, 3.5vw, 52px);
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0);
      background-size: 200% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: labGradShift 10s ease-in-out infinite alternate;
      line-height: 1;
      margin-bottom: 16px;
    }

    .cs-project {
      text-wrap: balance;
      font-family: var(--font-sub);
      font-size: 14px;
      font-weight: 300;
      font-style: italic;
      color: rgba(217,219,244,0.7);
      letter-spacing: 0.04em;
      margin-bottom: 36px;
      line-height: 1.4;
    }

    .cs-services {
      list-style: none;
      padding: 0; margin: 0;
      border-top: 1px solid rgba(127,131,167,0.12);
      padding-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .cs-services li {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 400;
      color: rgba(200,204,232,0.65);
      letter-spacing: 0.06em;
      padding-left: 14px;
      position: relative;
      line-height: 1.5;
    }

    .cs-services li::before {
      content: '';
      position: absolute;
      left: 0; top: 7px;
      width: 5px; height: 1px;
      background: #C47D6A;
      opacity: 0.7;
    }

    @media (max-width: 900px) {
      .cs-grid { grid-template-columns: 1fr; }
      .cs-card { padding: 36px 24px; }
    }

  
    /* ─── Case Study Tabs ─────────────────────────────── */
    .cs-tabs-wrap {
      margin-top: 40px;
      border-bottom: 1px solid rgba(127,131,167,0.1);
    }

    .cs-tabs {
      display: flex;
      justify-content: center;
      gap: 0;
    }

    .cs-tab {
      font-family: var(--font-head);
      font-size: clamp(18px, 2vw, 28px);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(200,204,232,0.7);
      padding: 20px 40px;
      cursor: pointer;
      position: relative;
      transition: color 0.3s ease;
      border: none;
      background: none;
      white-space: nowrap;
    }

    .cs-tab::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; right: 50%;
      height: 2px;
      background: linear-gradient(90deg, #FFE2C0, #C47D6A);
      transition: left 0.35s ease, right 0.35s ease;
    }

    .cs-tab:hover { color: rgba(232,185,154,0.8); }
    .cs-tab.active { color: rgba(232,185,154,0.95); }
    .cs-tab.active::after { left: 20%; right: 20%; }

    .cs-panels {
      overflow: hidden;
    }

    .cs-panel {
      display: none;
      padding: 48px 5vw 56px;
      animation: csFadeIn 0.35s ease;
    }
    .cs-panel.active { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }

    @keyframes csFadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .cs-panel-client {
      font-family: var(--font-head);
      font-size: clamp(40px, 5vw, 72px);
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0);
      background-size: 200% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: labGradShift 10s ease-in-out infinite alternate;
      line-height: 1;
      margin-bottom: 12px;
    }

    .cs-panel-project {
      font-family: var(--font-sub);
      font-size: 14px;
      font-weight: 300;
      font-style: italic;
      color: rgba(217,219,244,0.6);
      line-height: 1.5;
    }

    .cs-panel-services {
      list-style: none;
      padding: 0; margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .cs-panel-services li {
      font-family: var(--font-sub);
      font-size: 14px;
      font-weight: 300;
      color: rgba(200,204,232,0.75);
      letter-spacing: 0.04em;
      padding-left: 18px;
      position: relative;
      line-height: 1.5;
      border-bottom: 1px solid rgba(127,131,167,0.08);
      padding-bottom: 14px;
    }

    .cs-panel-services li:last-child { border-bottom: none; padding-bottom: 0; }

    .cs-panel-services li::before {
      content: '';
      position: absolute;
      left: 0; top: 8px;
      width: 7px; height: 1px;
      background: #C47D6A;
    }

    /* Highlight case study brands in reel */
    .brand-name--cs {
      color: rgba(232,185,154,0.75) !important;
      cursor: pointer;
      transition: color 0.2s ease;
    }
    .brand-name--cs:hover { color: rgba(232,185,154,1) !important; }

    @media (max-width: 900px) {
      .cs-tab { padding: 16px 20px; font-size: 12px; }
      .cs-panel.active { grid-template-columns: 1fr; gap: 24px; }
      .cs-panel { padding: 32px 6vw 40px; }
    }

  
    /* ─── Case Showcase ───────────────────────────── */
    .cs-showcase {
      border-top: 1px solid rgba(127,131,167,0.12);
    }

    .cs-cols {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .cs-col {
      border-right: 1px solid rgba(127,131,167,0.1);
    }
    .cs-col:last-child { border-right: none; }

    .cs-name-btn {
      display: block;
      width: 100%;
      font-family: var(--font-head);
      font-size: clamp(28px, 3.5vw, 52px);
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(217,219,244,0.65);
      background: none;
      border: none;
      border-bottom: 1px solid rgba(127,131,167,0.1);
      padding: 32px 36px;
      text-align: left;
      cursor: pointer;
      transition: color 0.3s ease, background 0.3s ease;
      position: relative;
    }

    .cs-name-btn::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 0; right: 100%;
      height: 2px;
      background: linear-gradient(90deg, #C47D6A, #FFE2C0);
      transition: right 0.4s ease;
    }

    .cs-name-btn:hover { color: rgba(217,219,244,0.8); background: rgba(127,131,167,0.03); }
    .cs-name-btn.active { color: rgba(232,185,154,0.95); }
    .cs-name-btn.active::after { right: 0; }

    /* Dropdown panel — retro-technical */
    .cs-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
      opacity: 0;
      position: relative;
      background:
        radial-gradient(circle at 50% 0%, rgba(196,125,106,0.06) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='0.75' fill='rgba(127,131,167,0.14)'/%3E%3C/svg%3E");
    }

    .cs-panel.active {
      max-height: 400px;
      opacity: 1;
    }

    /* Corner ticks */
    .cs-corner {
      position: absolute;
      width: 10px; height: 10px;
      pointer-events: none;
    }
    .cs-corner::before, .cs-corner::after {
      content: ''; position: absolute; background: #C47D6A; opacity: 0.5;
    }
    .cs-corner::before { width: 100%; height: 1px; }
    .cs-corner::after  { width: 1px; height: 100%; }
    .cs-tl { top: 12px; left: 12px; }
    .cs-tl::before { top: 0; left: 0; }
    .cs-tl::after  { top: 0; left: 0; }
    .cs-br { bottom: 12px; right: 12px; }
    .cs-br::before { bottom: 0; right: 0; }
    .cs-br::after  { bottom: 0; right: 0; }

    .cs-panel-project {
      font-family: var(--font-sub);
      font-size: 13px;
      font-weight: 400;
      font-style: italic;
      color: rgba(217,219,244,0.65);
      letter-spacing: 0.06em;
      padding: 24px 36px 16px;
      border-bottom: 1px solid rgba(127,131,167,0.08);
      text-wrap: balance;
    }

    .cs-panel-services {
      list-style: none;
      padding: 16px 36px 28px;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .cs-panel-services li {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 300;
      color: rgba(200,204,232,0.65);
      letter-spacing: 0.05em;
      padding-left: 16px;
      position: relative;
      line-height: 1.5;
    }

    .cs-panel-services li::before {
      content: '';
      position: absolute;
      left: 0; top: 7px;
      width: 7px; height: 1px;
      background: #C47D6A;
      opacity: 0.8;
    }

    @media (max-width: 900px) {
      .cs-cols { grid-template-columns: 1fr; }
      .cs-col { border-right: none; border-bottom: 1px solid rgba(127,131,167,0.1); }
      .cs-name-btn { font-size: clamp(24px, 7vw, 40px); padding: 24px 6vw; }
      .cs-panel-project, .cs-panel-services { padding-left: 6vw; padding-right: 6vw; }
    }


    /* ── SERVICES: force stack on non-desktop ── */
    @media (max-width: 900px) {
      div.svc-radial-wrap { flex-direction: column !important; min-height: auto !important; }
      div.svc-diagram-area { flex: none !important; width: 100% !important; min-height: 520px !important; max-height: none !important; }
      div.svc-right-panel  { flex: none !important; width: 100% !important; border-left: none !important; border-top: 1px solid rgba(127,131,167,0.1); padding: 40px 6vw !important; }
      .svc-right-card { max-width: 100% !important; padding: 24px 28px !important; }
      .svc-intro-wrap { padding: 10px 6vw 8px !important; margin-bottom: -8px !important; }
      .svc-diagram-area > * { transform: scale(0.7); transform-origin: center top; }
      .svc-right-panel { padding: 12px 6vw !important; margin-top: 0 !important; }
    }

    /* ── Solve card retro enhancements ── */
    .solve-header-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }
    .solve-status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--magenta);
      flex-shrink: 0;
      animation: lgc-pulse 3s ease-in-out infinite;
    }
    .solve-index {
      font-family: var(--font-sub);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.32em;
      color: rgba(127,131,167,0.7);
      margin-bottom: 0;
    }
    .solve-tick-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, rgba(193,6,68,0.3), transparent);
    }
    /* Bottom-left data readout on each card */
    .solve-card::after {
      content: attr(data-index) ' ── STATUS: ACTIVE';
      position: absolute;
      bottom: 14px;
      right: 5vw;
      font-family: var(--font-sub);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(127,131,167,0.18);
      transition: color 0.4s ease;
    }
    .solve-card.in-view::after {
      color: rgba(127,131,167,0.32);
    }
    /* Enhanced left bar */
    .solve-card::before {
      content: '';
      position: absolute;
      left: 0; top: 20%; bottom: 20%;
      width: 2px;
      background: linear-gradient(to bottom, transparent, rgba(193,6,68,0.5), transparent);
      opacity: 0;
      transition: opacity 0.6s ease 0.3s;
    }
    .solve-card.in-view::before { opacity: 1; }


    /* ── Logo reel marquee ── */
    .activations-marquee-wrapper {
      overflow: hidden;
      margin: 0 -8vw;
      padding: 48px 0;
      border-top: 1px solid rgba(127,131,167,0.08);
      border-bottom: 1px solid rgba(127,131,167,0.08);
    }
    .activations-marquee {
      display: flex;
      gap: 0;
      animation: marquee 20s linear infinite;
      width: max-content;
    }
    .marquee-item {
      display: flex;
      align-items: center;
      gap: 0;
      white-space: nowrap;
    }
    .brand-name {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: clamp(56px, 8vw, 110px);
      text-transform: uppercase;
      color: rgba(232,232,240,0.58); /* 2026-08-05: old hover color is now default */
      letter-spacing: 0.04em;
      padding: 0 40px;
      transition: color 0.3s;
      cursor: default;
    }
    .brand-name:hover { color: rgba(232,232,240,0.8); }
    .marquee-sep {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: clamp(56px, 8vw, 110px);
      color: var(--magenta);
      opacity: 0.4;
      line-height: 1;
    }
    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }


    /* ── Logo reel marquee ── */
    .activations-marquee-wrapper {
      overflow: hidden;
      margin: 0 -8vw;
      padding: 48px 0;
      border-top: 1px solid rgba(127,131,167,0.08);
      border-bottom: 1px solid rgba(127,131,167,0.08);
    }
    .activations-marquee {
      display: flex;
      align-items: center;
      white-space: nowrap;
      width: max-content;
      animation: marquee 24s linear infinite;
      will-change: transform;
    }
    .brand-name {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: clamp(56px, 8vw, 110px);
      text-transform: uppercase;
      color: rgba(232,232,240,0.58); /* 2026-08-05: old hover color is now default */
      letter-spacing: 0.04em;
      padding: 0 40px;
      transition: color 0.3s;
      cursor: default;
    }
    .brand-name:hover { color: rgba(232,232,240,0.8); }
    .marquee-sep {
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: clamp(56px, 8vw, 110px);
      color: var(--magenta);
      opacity: 0.4;
      line-height: 1;
    }
    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }


    /* ── Solve timeline layout ── */
    .solve-timeline {
      position: relative;
      padding-left: 80px;
      padding-right: 6vw;
    }
    .solve-timeline-track {
      position: absolute;
      left: 40px;
      top: 8px;
      bottom: 8px;
      width: 1px;
      border-left: 1px dashed rgba(193,6,68,0.35);
    }
    .solve-item {
      display: flex;
      align-items: flex-start;
      gap: 0;
      padding: 20px 0;
      position: relative;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .solve-item.in-view {
      opacity: 1;
      transform: translateY(0);
    }
    .solve-item:last-child { border-bottom: none; }
    .solve-item-left {
      position: absolute;
      left: -76px;
      top: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .solve-item-num {
      font-family: var(--font-sub);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: rgba(127,131,167,0.7);
    }
    .solve-item-node {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--magenta);
      box-shadow: 0 0 10px rgba(193,6,68,0.5);
      position: relative;
    }
    .solve-item-node::before {
      content: '';
      position: absolute;
      top: -4px; left: -4px;
      width: 18px; height: 18px;
      border-radius: 50%;
      border: 1px solid rgba(193,6,68,0.25);
    }
    .solve-item-content {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 0;
      width: 100%;
      border: 1px solid rgba(127,131,167,0.12);
      background: rgba(10,10,18,0.3);
      position: relative;
    }
    /* Corner accents on solve cards */

    .solve-item-content {
      transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
      cursor: default;
    }
    .solve-item-content:hover,
    .solve-item-content.touched {
      background: rgba(196,125,106,0.06);
      border-color: rgba(196,125,106,0.25);
      box-shadow: 0 4px 24px rgba(196,125,106,0.08), inset 0 0 40px rgba(196,125,106,0.04);
      transform: scale(1.015);
    }
    .solve-item-content:hover::before,
    .solve-item-content.touched::before {
      border-color: rgba(196,125,106,0.65);
    }
    .solve-item-content:hover::after,
    .solve-item-content.touched::after {
      border-color: rgba(196,125,106,0.65);
    }

    .solve-item-content::before,
    .solve-item-content::after {
      content: '';
      position: absolute;
      width: 10px;
      height: 10px;
      border-color: rgba(196,125,106,0.35);
      border-style: solid;
    }
    .solve-item-content::before {
      top: -1px; left: -1px;
      border-width: 1px 0 0 1px;
    }
    .solve-item-content::after {
      bottom: -1px; right: -1px;
      border-width: 0 1px 1px 0;
    }
    .solve-col {
      padding: 22px 28px;
    }
    .solve-col:first-child {
      border-right: 1px solid rgba(127,131,167,0.08);
    }

    /* Solution: bold warm gradient */
    .solve-solution {
      font-family: var(--font-sub) !important;
      font-size: clamp(14px, 1.15vw, 17px) !important;
      font-weight: 700 !important;
      letter-spacing: 0.01em;
      text-transform: none;
      line-height: 1.6;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A) !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      background-clip: text !important;
    }
    /* Node connector line from track to card */
    .solve-item::before {
      content: '';
      position: absolute;
      left: -36px;
      top: 38px;
      width: 36px;
      height: 1px;
      background: linear-gradient(to right, rgba(193,6,68,0.35), rgba(127,131,167,0.12));
    }
    @media (max-width: 768px) {
      .solve-timeline { padding-left: 44px; padding-right: 6vw; box-sizing: border-box; }
      .solve-timeline-track { left: 22px; }
      .solve-item-left { left: -38px; }
      .solve-item { min-width: 0; }
      .solve-item::before { left: -22px; width: 22px; }
      .solve-item-content { grid-template-columns: 1fr; min-width: 0; }
      .solve-col { min-width: 0; }
      .solve-col:first-child { border-right: none; border-bottom: 1px solid rgba(127,131,167,0.08); }
      .solve-col { padding: 20px 22px; }
    }


    .trusted-by-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 32px;
    }
    .trusted-by-line {
      width: 40px;
      height: 1px;
      background: var(--magenta);
    }
    .trusted-by-label {
      font-family: var(--font-sub);
      font-size: 12px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--lavender);
    }

    .hero-eyebrow-divider {
      display: inline-block;
      width: 1px;
      height: 12px;
      background: var(--magenta);
      vertical-align: middle;
      margin: 0 10px;
      opacity: 0.7;
      font-size: 0;
    }

    .contact-link-row {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 16px;
    }
    .contact-link-line {
      width: 32px;
      height: 1px;
      background: var(--magenta);
      flex-shrink: 0;
    }
    .contact-link-phone {
      font-family: var(--font-sub);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: var(--magenta);
      text-decoration: none;
      transition: color 0.2s;
      margin-top: 8px;
    }
    .contact-link-phone:hover { opacity: 0.75; }
  
    /* ── Reduced motion preference ── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .hero-orb-1, .hero-orb-2, .hero-orb-3 { animation: none !important; }
      .solve-item, .eng-callout, .reveal-heading-inner {
        opacity: 1 !important;
        transform: none !important;
      }
    }

    


    /* Selector dots — 3 dots that illuminate based on active service */
    .svc-selector-dots {
      display: flex;
      gap: 10px;
      justify-content: center;
      padding: 8px 0 12px;
    }
    .svc-sel-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(180,178,220,0.25);
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }
    .svc-sel-dot.active {
      background: rgba(180,200,240,0.85);
      box-shadow: 0 0 6px rgba(180,200,240,0.4);
    }

    /* ── Services: vertical track + nodes ── */
    .svc-track-seg {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: 0;
    }
    .svc-track-line {
      width: 1px;
      height: 16px;
      border-left: 1px dashed rgba(180,178,220,0.12);
    }
    .svc-track-node {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(180,178,220,0.15);
      box-shadow: none;
      flex-shrink: 0;
    }

    /* Indicator dots */
    .svc-indicator-dots {
      display: flex;
      gap: 4px;
      justify-content: center;
      padding: 10px 0;
    }
    .svc-indicator-dots span {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(180,178,220,0.12);
    }
    .svc-indicator-dots .dot-active {
      background: rgba(180,178,220,0.2);
      box-shadow: none;
    }

    /* Status bar accent (top-right of card) */
    .svc-status-bar {
      position: absolute;
      top: 8px;
      right: 12px;
      width: 28px;
      height: 2px;
      background: rgba(196,125,106,0.3);
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }
    .svc-nd-card:hover .svc-status-bar,
    .svc-nd-card.active .svc-status-bar {
      background: var(--magenta);
      box-shadow: 0 0 6px rgba(193,6,68,0.4);
    }

    /* Active card: red glow border */
    .svc-nd-card.active {
      border-color: rgba(193,6,68,0.45) !important;
      box-shadow: 0 0 20px rgba(193,6,68,0.08), inset 0 0 30px rgba(193,6,68,0.03);
    }

    /* Corner brackets: bigger and more visible */
    .svc-nd-corner {
      width: 12px !important;
      height: 12px !important;
    }

    /* Detail card diamond separator */
    .svc-detail-diamond {
      display: flex;
      justify-content: center;
      padding: 20px 0 16px;
    }
    .svc-detail-diamond span {
      display: block;
      width: 8px;
      height: 8px;
      border: 1px solid rgba(196,125,106,0.4);
      transform: rotate(45deg);
    }

    /* Detail card tagline */
    .svc-detail-tagline {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(232,185,154,0.8);
      text-align: left;
      padding-top: 4px;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .svc-right-card.visible .svc-detail-tagline {
      opacity: 1;
    }
    .svc-right-card.svc-default .svc-detail-tagline {
      opacity: 0;
    }
    .svc-tl-icon {
      color: var(--magenta);
      font-size: 10px;
      margin-right: 4px;
    }

    .svc-dots-detail {
      position: absolute;
      bottom: 12px;
      right: 16px;
    }

    /* Detail card: stronger corner brackets */
    .svc-right-card .src-corner::before,
    .svc-right-card .src-corner::after {
      background: rgba(127,131,167,0.25) !important;
    }
    .svc-right-card:hover .src-corner::before,
    .svc-right-card:hover .src-corner::after {
      background: rgba(196,125,106,0.4) !important;
    }


    /* ── Services entrance animations (initial states) ── */
    .svc-intro-wrap {
      opacity: 0;
      transform: translateY(20px);
    }
    .svc-intro-wrap.svc-revealed {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .svc-diagram-area {
      opacity: 0;
      transform: scale(0.9) rotate(-5deg);
    }
    .svc-diagram-area.svc-revealed {
      opacity: 1;
      transform: scale(1) rotate(0deg);
      transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
    }
    .svc-cards-col .svc-nd-card {
      opacity: 0;
      transform: translateX(-20px);
    }
    .svc-cards-col .svc-nd-card.svc-revealed {
      opacity: 1;
      transform: translateX(0);
    }
    .svc-right-panel {
      opacity: 0;
      transform: translateX(30px);
    }
    .svc-right-panel.svc-revealed {
      opacity: 1;
      transform: translateX(0);
      transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
    }
    .svc-connector-lines {
      opacity: 0;
    }
    .svc-connector-lines.svc-revealed {
      opacity: 1;
      transition: opacity 1s ease 0.8s;
    }
    .svc-selector-dots {
      opacity: 0;
    }
    .svc-selector-dots.svc-revealed {
      opacity: 1;
      transition: opacity 0.5s ease 0.5s;
    }
    .svc-track-seg {
      opacity: 0;
    }
    .svc-track-seg.svc-revealed {
      opacity: 1;
      transition: opacity 0.4s ease;
    }

    /* ── Skip link ── */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      padding: 12px 24px;
      background: var(--magenta);
      color: #fff;
      font-family: var(--font-sub);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-decoration: none;
      z-index: 10000;
      border-radius: 4px;
      transition: top 0.2s ease;
    }
    .skip-link:focus {
      top: 16px;
    }

    /* ── Focus styles for keyboard navigation ── */
    a:focus-visible,
    button:focus-visible,
    .svc-nd-card:focus-visible,
    .svc-m-box:focus-visible,
    .btn:focus-visible {
      outline: 2px solid var(--magenta);
      outline-offset: 3px;
    }
    *:focus:not(:focus-visible) {
      outline: none;
    }


    /* ── SERVICES INLINE GRID (v2 — always visible) ── */
    .svc-inline-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 40px auto 60px;
      padding: 0 40px;
    }

    /* ── Circle + stacked cards layout ── */
    .svc-circle-layout {
      position: relative;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      max-width: 1400px;
      margin: 40px auto 60px;
      gap: 50px;
      padding: 0 3vw;
    }

    .svc-circle-area {
      position: relative;
      flex: 0 0 500px;
      width: 500px;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-image: radial-gradient(circle, rgba(180,178,220,0.1) 1px, transparent 1px);
      background-size: 24px 24px;
      align-self: center;
    }

    .svc-center-node {
      position: absolute !important;
      top: 50% !important;
      left: 50% !important;
      transform: translate(-50%, -50%) !important;
      width: 360px;
      height: 360px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .svc-c-circle {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(180,178,220,0.1);
      pointer-events: none;
      top: 50%; left: 50%; transform: translate(-50%, -50%);
    }
    .svc-c-circle.c1 { width: 300px; height: 300px; border-color: rgba(76,4,29,0.3); }
    .svc-c-circle.c2 { width: 370px; height: 370px; border-color: rgba(180,178,220,0.12); }
    .svc-c-circle.c3 { width: 440px; height: 440px; border-color: rgba(180,178,220,0.08); }

    .svc-c-orbit {
      position: absolute;
      width: 275px;
      height: 275px;
      border-radius: 50%;
      border: 1px dashed rgba(232,185,154,0.22);
      border-top-color: rgba(232,185,154,0.65);
      animation: svc-orbit-spin 8s linear infinite;
      pointer-events: none;
      top: 50%; left: 50%; transform: translate(-50%, -50%);
    }
    @keyframes svc-orbit-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

    .svc-c-diamond {
      position: absolute;
      width: 260px;
      height: 260px;
      border: 1px solid rgba(232,185,154,0.55);
      outline: 1px solid rgba(76,4,29,0.3);
      outline-offset: 14px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(76,4,29,0.35) 0%, rgba(76,4,29,0.08) 60%, transparent 100%);
      animation: svc-center-pulse 4s ease-in-out infinite;
      top: 50%; left: 50%; transform: translate(-50%, -50%);
    }
    @keyframes svc-center-pulse {
      0%, 100% { outline-color: rgba(76,4,29,0.2); box-shadow: 0 0 0 0 rgba(76,4,29,0); }
      50%       { outline-color: rgba(76,4,29,0.45); box-shadow: 0 0 16px rgba(76,4,29,0.3); }
    }


    /* Circle center title */
    .svc-c-title {
      position: relative;
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: rgba(232,185,154,0.95);
      text-transform: uppercase;
      white-space: nowrap;
      z-index: 4;
      margin-bottom: 4px;
      text-align: center;
    }
    /* Make label smaller as subtitle */
    .svc-c-label {
      font-size: 11px !important;
      color: rgba(180,178,220,0.55) !important;
      letter-spacing: 0.2em !important;
      text-align: center !important;
    }

    .svc-c-label {
      position: relative;
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 0.24em;
      color: rgba(232,185,154,0.92);
      text-transform: uppercase;
      white-space: nowrap;
      z-index: 4;
    }

    .svc-c-coord {
      position: absolute;
      top: calc(50% + 160px);
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-sub);
      font-size: 11px;
      letter-spacing: 0.14em;
      color: rgba(180,178,220,0.45);
      white-space: nowrap;
    }


    /* ── Circle crosshair lines ── */
    .svc-crosshair-h,
    .svc-crosshair-v {
      position: absolute;
      pointer-events: none;
      z-index: 1;
    }
    /* Horizontal line through center */
    .svc-crosshair-h {
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right,
        transparent 5%,
        rgba(180,178,220,0.12) 15%,
        rgba(180,178,220,0.2) 40%,
        rgba(180,178,220,0.08) 50%,
        rgba(180,178,220,0.2) 60%,
        rgba(180,178,220,0.12) 85%,
        transparent 95%
      );
      transform: translateY(-0.5px);
    }
    /* Vertical line through center */
    .svc-crosshair-v {
      left: 50%;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom,
        transparent 5%,
        rgba(180,178,220,0.12) 15%,
        rgba(180,178,220,0.2) 40%,
        rgba(180,178,220,0.08) 50%,
        rgba(180,178,220,0.2) 60%,
        rgba(180,178,220,0.12) 85%,
        transparent 95%
      );
      transform: translateX(-0.5px);
    }

    /* Small diamond markers at cardinal points of innermost circle */
    .svc-xhair-marker {
      position: absolute;
      width: 8px;
      height: 8px;
      border: 1px solid rgba(196, 125, 106, 0.5);
      transform: rotate(45deg);
      background: rgba(10, 10, 18, 0.8);
      z-index: 2;
    }
    .svc-xm-top    { top: calc(50% - 150px - 4px); left: calc(50% - 4px); }
    .svc-xm-bottom { top: calc(50% + 150px - 4px); left: calc(50% - 4px); }
    .svc-xm-left   { top: calc(50% - 4px); left: calc(50% - 150px - 4px); }
    .svc-xm-right  { top: calc(50% - 4px); left: calc(50% + 150px - 4px); }

    /* Small tick marks along crosshair lines */
    .svc-xhair-tick {
      position: absolute;
      background: rgba(180, 178, 220, 0.2);
      pointer-events: none;
      z-index: 1;
    }
    /* Horizontal ticks (vertical dashes) */
    .svc-xt-h { width: 1px; height: 6px; top: calc(50% - 3px); }
    .svc-xt-h1 { left: calc(50% - 200px); }
    .svc-xt-h2 { left: calc(50% - 100px); }
    .svc-xt-h3 { left: calc(50% + 100px); }
    .svc-xt-h4 { left: calc(50% + 200px); }
    /* Vertical ticks (horizontal dashes) */
    .svc-xt-v { height: 1px; width: 6px; left: calc(50% - 3px); }
    .svc-xt-v1 { top: calc(50% - 200px); }
    .svc-xt-v2 { top: calc(50% - 100px); }
    .svc-xt-v3 { top: calc(50% + 100px); }
    .svc-xt-v4 { top: calc(50% + 200px); }

    /* Small crosshair at center (behind the label) */
    .svc-center-xhair {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 16px; height: 16px;
      z-index: 3;
      pointer-events: none;
    }
    .svc-center-xhair::before,
    .svc-center-xhair::after {
      content: '';
      position: absolute;
      background: rgba(193, 6, 68, 0.35);
    }
    .svc-center-xhair::before { width: 16px; height: 1px; top: 50%; left: 0; }
    .svc-center-xhair::after { width: 1px; height: 16px; top: 0; left: 50%; }

    @media (max-width: 900px) {
      .svc-crosshair-h, .svc-crosshair-v,
      .svc-xhair-marker, .svc-xhair-tick,
      .svc-center-xhair { display: none; }
    }

    .svc-stacked-cards {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      width: auto;
      min-width: 0;
      align-self: center;
    }

    @media (max-width: 900px) {
      .svc-circle-layout {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        margin: 30px auto 40px;
      }
      .svc-circle-area {
        width: 220px;
        height: 220px;
        flex: 0 0 220px;
      }
  
    /* ── Circle crosshair lines ── */
    .svc-crosshair-h,
    .svc-crosshair-v {
      position: absolute;
      pointer-events: none;
      z-index: 1;
    }
    /* Horizontal line through center */
    .svc-crosshair-h {
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right,
        transparent 5%,
        rgba(180,178,220,0.12) 15%,
        rgba(180,178,220,0.2) 40%,
        rgba(180,178,220,0.08) 50%,
        rgba(180,178,220,0.2) 60%,
        rgba(180,178,220,0.12) 85%,
        transparent 95%
      );
      transform: translateY(-0.5px);
    }
    /* Vertical line through center */
    .svc-crosshair-v {
      left: 50%;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom,
        transparent 5%,
        rgba(180,178,220,0.12) 15%,
        rgba(180,178,220,0.2) 40%,
        rgba(180,178,220,0.08) 50%,
        rgba(180,178,220,0.2) 60%,
        rgba(180,178,220,0.12) 85%,
        transparent 95%
      );
      transform: translateX(-0.5px);
    }

    /* Small diamond markers at cardinal points of innermost circle */
    .svc-xhair-marker {
      position: absolute;
      width: 8px;
      height: 8px;
      border: 1px solid rgba(196, 125, 106, 0.5);
      transform: rotate(45deg);
      background: rgba(10, 10, 18, 0.8);
      z-index: 2;
    }
    .svc-xm-top    { top: calc(50% - 150px - 4px); left: calc(50% - 4px); }
    .svc-xm-bottom { top: calc(50% + 150px - 4px); left: calc(50% - 4px); }
    .svc-xm-left   { top: calc(50% - 4px); left: calc(50% - 150px - 4px); }
    .svc-xm-right  { top: calc(50% - 4px); left: calc(50% + 150px - 4px); }

    /* Small tick marks along crosshair lines */
    .svc-xhair-tick {
      position: absolute;
      background: rgba(180, 178, 220, 0.2);
      pointer-events: none;
      z-index: 1;
    }
    /* Horizontal ticks (vertical dashes) */
    .svc-xt-h { width: 1px; height: 6px; top: calc(50% - 3px); }
    .svc-xt-h1 { left: calc(50% - 200px); }
    .svc-xt-h2 { left: calc(50% - 100px); }
    .svc-xt-h3 { left: calc(50% + 100px); }
    .svc-xt-h4 { left: calc(50% + 200px); }
    /* Vertical ticks (horizontal dashes) */
    .svc-xt-v { height: 1px; width: 6px; left: calc(50% - 3px); }
    .svc-xt-v1 { top: calc(50% - 200px); }
    .svc-xt-v2 { top: calc(50% - 100px); }
    .svc-xt-v3 { top: calc(50% + 100px); }
    .svc-xt-v4 { top: calc(50% + 200px); }

    /* Small crosshair at center (behind the label) */
    .svc-center-xhair {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 16px; height: 16px;
      z-index: 3;
      pointer-events: none;
    }
    .svc-center-xhair::before,
    .svc-center-xhair::after {
      content: '';
      position: absolute;
      background: rgba(193, 6, 68, 0.35);
    }
    .svc-center-xhair::before { width: 16px; height: 1px; top: 50%; left: 0; }
    .svc-center-xhair::after { width: 1px; height: 16px; top: 0; left: 50%; }

    @media (max-width: 900px) {
      .svc-crosshair-h, .svc-crosshair-v,
      .svc-xhair-marker, .svc-xhair-tick,
      .svc-center-xhair { display: none; }
    }

    .svc-stacked-cards {
        max-width: 100%;
      }
    }
    .svc-inline-card {
      position: relative;
      background: rgba(10, 10, 18, 0.4);
      border: 1px solid rgba(196, 125, 106, 0.25);
      padding: 14px 16px 14px 28px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      max-width: 190px;
      width: 190px;
      transition: border-color 0.3s ease, background 0.3s ease;
    }
    .svc-inline-card:hover {
      border-color: rgba(232, 185, 154, 0.5);
      background: rgba(232, 185, 154, 0.04);
    }
    .svc-inline-card .svc-nd-corner { display: block; }
    .svc-inline-card:hover .svc-nd-corner::before,
    .svc-inline-card:hover .svc-nd-corner::after {
      background: rgba(232, 185, 154, 0.7);
    }
    .svc-inline-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .svc-inline-header .svc-nd-index {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      color: rgba(193, 6, 68, 0.7);
      letter-spacing: 0.14em;
      margin-bottom: 4px;
    }
    .svc-inline-title {
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      line-height: 1.35;
      background: linear-gradient(120deg, #D9DBF4, #7F83A7, #D9DBF4, #7F83A7);
      background-size: 300% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: svcTitleShift 16s ease-in-out infinite;
      margin-bottom: 2px;
    }
    .svc-inline-body {
      font-family: var(--font-sub);
      font-size: 13px;
      font-weight: 300;
      color: #FFE2C0;
      line-height: 1.7;
      margin-bottom: 4px;
    }
    .svc-inline-result {
      font-family: var(--font-sub);
      font-size: 12px;
      font-weight: 400;
      background: linear-gradient(135deg, #FFF1E0, #FFE2C0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.5;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      padding-top: 4px;
      border-top: 1px solid rgba(127,131,167,0.12);
      margin-top: auto;
    }
    .svc-inline-card .svc-nd-coord {
      font-family: var(--font-sub);
      font-size: 12px;
      color: rgba(196, 125, 106, 0.7);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-top: 8px;
    }
    .svc-inline-card .svc-nd-edge-diamond {
      position: absolute;
      left: -20px;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      z-index: 2;
    }
    .svc-inline-card .svc-nd-diamond {
      position: absolute;
      top: 5px;
      left: 5px;
      width: 30px;
      height: 30px;
      border: 1px solid rgba(196, 125, 106, 0.55);
      transform: rotate(45deg);
      background: rgba(10, 10, 18, 0.95);
    }
    .svc-inline-card .svc-nd-dot {
      width: 6px;
      height: 6px;
      background: rgba(196, 125, 106, 0.85);
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: svcPulse 2.5s ease-in-out infinite;
    }
    @keyframes svcPulse {
      0%, 100% { opacity: 0.4; }
      50% { opacity: 1; }
    }



    @keyframes svc-dash-flow {
      to { stroke-dashoffset: -100; }
    }



    /* ── Linked hover: name card + body box illuminate together ── */
    .svc-name-card.svc-hover,
    .svc-body-box.svc-hover {
      border-color: rgba(232, 185, 154, 0.5);
    }
    .svc-name-card.svc-hover {
      background: rgba(232, 185, 154, 0.04);
    }
    .svc-body-box.svc-hover {
      border-color: rgba(232, 185, 154, 0.5);
    }
    .svc-name-card.svc-hover .svc-nd-corner {
      border-color: rgba(232, 185, 154, 0.8);
    }
    .svc-name-card.svc-hover .svc-inline-title {
      -webkit-text-fill-color: rgba(217, 219, 244, 0.95);
      background: none;
    }
    .svc-name-card.svc-hover .svc-nd-diamond {
      border-color: rgba(196, 125, 106, 0.95);
      background: rgba(76, 4, 29, 0.18);
      box-shadow: 0 0 10px rgba(196, 125, 106, 0.15);
    }
    .svc-name-card.svc-hover .svc-nd-dot {
      background: #C10644;
      box-shadow: 0 0 8px rgba(193, 6, 68, 0.7);
    }

    /* Connector lines: no animation by default, animate only on hover */
    .svc-all-conn line[id^="svc-bline"] {
      stroke-dasharray: 4 6;
      stroke-dashoffset: 0;
      animation: none;
      transition: stroke 0.3s ease;
    }
    /* Active/hovered lines brighten and animate */
    .svc-all-conn line.svc-line-active {
      stroke: rgba(232, 185, 154, 0.5);
      animation: svc-dash-flow 8s linear infinite;
    }



    /* Body box corners illuminate red on hover */
    .svc-body-box.svc-hover .svc-nd-corner {
      border-color: rgba(193, 6, 68, 0.8) !important;
    }
    /* Result text: bold + warm gradient on hover */
    .svc-body-box.svc-hover .svc-inline-result {
      font-weight: 700;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0);
      background-size: 200% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: svcWarmShift 4s ease-in-out infinite alternate;
    }
    @keyframes svcWarmShift {
      0% { background-position: 0% center; }
      100% { background-position: 100% center; }
    }

    /* ── Pair bounding box hints ── */
    .svc-pair-row {
      display: contents;
    }
    .svc-pair-bounds {
      position: absolute;
      pointer-events: none;
      z-index: 0;
    }
    /* Small corner bracket marks at outer corners of each pair */
    .svc-pb-corner {
      position: absolute;
      width: 8px;
      height: 8px;
      pointer-events: none;
    }
    .svc-pb-corner::before,
    .svc-pb-corner::after {
      content: '';
      position: absolute;
      background: rgba(196, 125, 106, 0.18);
      transition: background 0.3s ease;
    }
    .svc-pb-corner::before { width: 100%; height: 1px; top: 0; left: 0; }
    .svc-pb-corner::after  { width: 1px; height: 100%; top: 0; left: 0; }
    .svc-pb-tl { top: 0; left: -20px; }
    .svc-pb-tr { top: 0; right: -20px; transform: scaleX(-1); }
    .svc-pb-bl { bottom: 0; left: -20px; transform: scaleY(-1); }
    .svc-pb-br { bottom: 0; right: -20px; transform: scale(-1); }

    /* Thin top/bottom rule lines spanning the pair */
    .svc-pb-rule {
      position: absolute;
      left: -20px;
      right: -20px;
      height: 1px;
      background: linear-gradient(to right,
        rgba(196,125,106,0.15),
        rgba(196,125,106,0.08) 30%,
        rgba(196,125,106,0.03) 50%,
        rgba(196,125,106,0.08) 70%,
        rgba(196,125,106,0.15)
      );
      pointer-events: none;
    }
    .svc-pb-rule-top { top: -5px; }
    .svc-pb-rule-bottom { bottom: -5px; }

    /* Illuminate brackets on pair hover */
    .svc-pair-wrap:hover .svc-pb-corner::before,
    .svc-pair-wrap:hover .svc-pb-corner::after {
      background: rgba(196, 125, 106, 0.4);
    }
    .svc-pair-wrap:hover .svc-pb-rule {
      background: linear-gradient(to right,
        rgba(196,125,106,0.3),
        rgba(196,125,106,0.12) 30%,
        rgba(196,125,106,0.05) 50%,
        rgba(196,125,106,0.12) 70%,
        rgba(196,125,106,0.3)
      );
    }

    /* Pair wrapper spans both grid columns */
    .svc-pair-wrap {
      display: grid;
      grid-column: 1 / -1;
      grid-template-columns: subgrid;
      align-items: center;
      position: relative;
      padding: 10px 0;
    }

    @media (max-width: 900px) {
      .svc-pair-wrap {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .svc-pb-corner, .svc-pb-rule { display: none; }
    }


    /* ── Name card area: small corner bracket accents ── */
    .svc-name-bracket {
      position: absolute;
      width: 12px;
      height: 12px;
      pointer-events: none;
      z-index: 1;
    }
    .svc-name-bracket::before,
    .svc-name-bracket::after {
      content: '';
      position: absolute;
      background: rgba(193, 6, 68, 0.45);
      transition: background 0.3s ease;
    }
    .svc-name-bracket::before { width: 100%; height: 1px; top: 0; left: 0; }
    .svc-name-bracket::after  { width: 1px; height: 100%; top: 0; left: 0; }
    /* Position relative to the paired grid's name card column */
    .svc-nb-tl { top: -8px; left: -8px; }
    .svc-nb-tr { top: -8px; left: 190px; transform: scaleX(-1); }
    .svc-nb-bl { bottom: -8px; left: -8px; transform: scaleY(-1); }
    .svc-nb-br { bottom: -8px; left: 190px; transform: scale(-1); }

    /* Small crosshair between brackets */
    .svc-name-xhair {
      position: absolute;
      top: -14px;
      left: 91px;
      width: 14px;
      height: 14px;
      pointer-events: none;
      z-index: 1;
    }
    .svc-name-xhair::before,
    .svc-name-xhair::after {
      content: '';
      position: absolute;
      background: rgba(180, 178, 220, 0.2);
    }
    .svc-name-xhair::before { width: 14px; height: 1px; top: 50%; left: 0; }
    .svc-name-xhair::after { width: 1px; height: 14px; top: 0; left: 50%; }

    @media (max-width: 900px) {
      .svc-name-bracket, .svc-name-xhair { display: none; }
    }

    /* ── Paired grid: name + body in same row ── */
    .svc-paired-grid {
      display: grid;
      grid-template-columns: 190px minmax(0, 380px);
      grid-template-rows: auto auto auto;
      gap: 20px 50px;
      align-items: center;
      flex: 0 0 auto;
      max-width: 700px;
      min-width: 0;
    }



    @media (max-width: 900px) {
      .svc-c-coord { display: none !important; }
    }

    /* Mobile: hide all connector lines */
    @media (max-width: 900px) {
      .svc-all-conn { display: none !important; }
      .svc-conn-svg { display: none !important; }
    }

    @media (max-width: 900px) {
      .svc-paired-grid {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .svc-paired-grid .svc-body-box { display: none; }
    }


    /* 45° corner slants on body boxes */
    .svc-body-box .svc-corner-slant {
      position: absolute;
      width: 10px;
      height: 10px;
      pointer-events: none;
      z-index: 1;
    }
    .svc-body-box .svc-corner-slant::before {
      content: '';
      position: absolute;
      width: 14px;
      height: 1px;
      background: rgba(196, 125, 106, 0.4);
      transform-origin: 0 0;
    }
    /* Top-left: slant goes from corner inward at 45° */
    .svc-body-box .svc-cs-tl { top: 0; left: 0; }
    .svc-body-box .svc-cs-tl::before { transform: rotate(45deg); top: 0; left: 0; }
    /* Top-right */
    .svc-body-box .svc-cs-tr { top: 0; right: 0; }
    .svc-body-box .svc-cs-tr::before { transform: rotate(-45deg); top: 0; right: 0; left: auto; transform-origin: 100% 0; }
    /* Bottom-left */
    .svc-body-box .svc-cs-bl { bottom: 0; left: 0; }
    .svc-body-box .svc-cs-bl::before { transform: rotate(-45deg); bottom: 0; left: 0; top: auto; transform-origin: 0 100%; }
    /* Bottom-right */
    .svc-body-box .svc-cs-br { bottom: 0; right: 0; }
    .svc-body-box .svc-cs-br::before { transform: rotate(45deg); bottom: 0; right: 0; left: auto; top: auto; transform-origin: 100% 100%; }

    /* Boxing lines around name cards column */
    .svc-name-frame {
      position: absolute;
      pointer-events: none;
      z-index: 0;
    }
    /* Horizontal lines — extend across full width above and below the name card area */
    .svc-frame-h {
      height: 1px;
      background: rgba(196, 125, 106, 0.12);
      left: 0;
      right: 0;
    }
    .svc-frame-h-top { top: 0; }
    .svc-frame-h-bottom { bottom: 0; }
    /* Vertical lines — left and right edges of name card area */
    .svc-frame-v {
      width: 1px;
      background: rgba(196, 125, 106, 0.12);
      top: 0;
      bottom: 0;
    }
    .svc-frame-v-left { left: 0; }
    .svc-frame-v-right { right: 0; }
    /* Crosshair at center */
    .svc-frame-crosshair {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 20px;
      height: 20px;
      pointer-events: none;
      z-index: 0;
    }
    .svc-frame-crosshair::before,
    .svc-frame-crosshair::after {
      content: '';
      position: absolute;
      background: rgba(196, 125, 106, 0.2);
    }
    .svc-frame-crosshair::before {
      width: 20px; height: 1px;
      top: 50%; left: 0;
    }
    .svc-frame-crosshair::after {
      width: 1px; height: 20px;
      top: 0; left: 50%;
    }

    /* Name card column needs relative positioning for the frame */
    .svc-paired-grid {
      position: relative;
    }

    /* Corner accents on the frame — magenta like in the reference */
    .svc-frame-accent {
      position: absolute;
      width: 10px;
      height: 10px;
      border-style: solid;
      border-color: rgba(193, 6, 68, 0.5);
      pointer-events: none;
      z-index: 1;
    }
    .svc-fa-tl { top: -6px; left: -6px; border-width: 1px 0 0 1px; }
    .svc-fa-tr { top: -6px; right: -6px; border-width: 1px 1px 0 0; }
    .svc-fa-bl { bottom: -6px; left: -6px; border-width: 0 0 1px 1px; }
    .svc-fa-br { bottom: -6px; right: -6px; border-width: 0 1px 1px 0; }

    @media (max-width: 900px) {
      .svc-name-frame, .svc-frame-crosshair, .svc-frame-accent { display: none; }
      .svc-body-box .svc-corner-slant { display: none; }
    }

    /* ── 3-column services layout (desktop) ── */
    .svc-body-col {
      position: relative;
      flex: 1 1 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
      max-width: 480px;
      min-width: 0;
    }

    .svc-body-box {
      position: relative;
      border: none;
      padding: 22px 28px 22px 32px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: transparent;
    }
    /* Border layer: top-right corner chamfered only */
    .svc-body-box::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(196, 125, 106, 0.2);
      clip-path: polygon(
        0% 0%,
        calc(100% - 14px) 0%,
        100% 14px,
        100% 100%,
        0% 100%
      );
      z-index: -2;
      transition: background 0.3s ease;
    }
    /* Fill layer: 1px inset, dark background, same shape */
    .svc-body-box::after {
      content: '';
      position: absolute;
      inset: 1px;
      background: rgba(10, 10, 18, 0.95);
      clip-path: polygon(
        0% 0%,
        calc(100% - 13px) 0%,
        100% 13px,
        100% 100%,
        0% 100%
      );
      z-index: -1;
    }
    .svc-body-box:hover::before {
      background: rgba(196, 125, 106, 0.35);
    }
    .svc-body-box .svc-nd-corner { display: block; z-index: 1; }
    /* Corner tick marks — centered on each 45° chamfer
       Each chamfer midpoint is at ~8.5px from the corner on both axes */
    .svc-body-box .svc-nc-tl { top: 6px; left: 6px; }
    .svc-body-box .svc-nc-tr { top: 8px; right: 4px; }
    .svc-body-box .svc-nc-bl { bottom: 6px; left: 6px; }
    .svc-body-box .svc-nc-br { bottom: 6px; right: 6px; }

    .svc-body-diamond {
      position: absolute;
      left: -6px;
      top: 50%;
      transform: translateY(-50%);
      width: 12px;
      height: 12px;
      z-index: 2;
    }
    .svc-body-diamond .svc-nd-diamond {
      display: none !important;
    }
    .svc-body-diamond .svc-nd-dot {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(196, 125, 106, 0.85);
      animation: svcPulse 2.5s ease-in-out infinite;
    }

    /* On desktop: hide mobile detail inside name cards */
    .svc-mobile-detail { display: none; }

    /* Name cards: compact, just title + index */
    .svc-name-card .svc-inline-body,
    .svc-name-card .svc-inline-result { display: none; }

    /* On mobile: show detail inside name cards, hide body col */
    @media (max-width: 900px) {
      .svc-mobile-detail { display: flex; flex-direction: column; gap: 4px; }
      .svc-paired-grid .svc-body-box { display: none !important; }
      .svc-name-card .svc-inline-body,
      .svc-name-card .svc-inline-result { display: none; }
      .svc-mobile-detail .svc-inline-body,
      .svc-mobile-detail .svc-inline-result { display: block; }
    }

    /* ── SERVICES INLINE GRID: responsive ── */
    @media (max-width: 900px) {
      .svc-inline-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
        margin: 30px auto 40px;
      }
    }
    @media (max-width: 600px) {
      .svc-circle-area {
        width: 180px;
        height: 180px;
        flex: 0 0 180px;
        background-size: 20px 20px;
      }
      .svc-c-circle.c1 { width: 120px; height: 120px; }
      .svc-c-circle.c2 { width: 150px; height: 150px; }
      .svc-c-circle.c3 { width: 180px; height: 180px; }
      .svc-c-orbit { width: 110px; height: 110px; }
      .svc-c-diamond { width: 100px; height: 100px; }
    }
    @media (max-width: 600px) {
      .svc-inline-grid {
        padding: 0 16px;
        gap: 16px;
      }
      .svc-inline-card {
        padding: 24px 20px 20px;
      }
    }


    /* Mobile: wider cards, better spacing, diamond centered on top border */
    @media (max-width: 900px) {
      .svc-inline-card {
        max-width: 100% !important;
        width: 100% !important;
        padding: 28px 24px 24px !important;
        gap: 10px !important;
      }
      /* Diamond centered horizontally, bisected by top border */
      .svc-inline-card .svc-nd-edge-diamond {
        position: absolute !important;
        left: 50% !important;
        top: -15px !important;
        transform: translateX(-50%) !important;
        width: 30px !important;
        height: 30px !important;
      }
      .svc-inline-card .svc-nd-diamond {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) rotate(45deg) !important;
        width: 22px !important;
        height: 22px !important;
      }
      .svc-inline-card .svc-nd-dot {
        width: 5px !important;
        height: 5px !important;
      }
      /* More space for text */
      .svc-mobile-detail {
        margin-top: 4px;
      }
      .svc-mobile-detail .svc-inline-body {
        font-size: 14px !important;
        line-height: 1.7 !important;
      }
      .svc-mobile-detail .svc-inline-result {
        font-size: 13px !important;
        line-height: 1.6 !important;
        padding-top: 10px !important;
      }
      /* Cards take full width of the grid */
      .svc-paired-grid {
        padding: 0 5vw !important;
      }
    }


    /* Mobile: result text always has bold shifting gradient */
    @media (max-width: 900px) {
      .svc-mobile-detail .svc-inline-result {
        font-weight: 700 !important;
        background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0) !important;
        background-size: 200% 100% !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        animation: svcWarmShift 4s ease-in-out infinite alternate !important;
      }
    }

    /* Hide old service elements if any remain */
    .svc-radial-wrap, .svc-m, .svc-right-panel { display: none !important; }

/* ===== v2 block: solve-final-0730 ===== */

/* SOLVE section final comp B (Theresa-approved 2026-07-30, Slack F0BLJMZD34P):
   annotation chrome removed, full figure visible (contain), no crop. */
#solve .secreg{ display:none !important; }
.solve-left-photo .slp-corner, .solve-left-photo .slp-leader{ display:none !important; }
.solve-left-photo{ background:#0a0a0f !important; }
.solve-left-photo img{
  object-fit:contain !important;
  opacity:.9 !important; /* 2026-08-10 (Theresa): ~90% opacity */
}
/* light top wash purely for headline legibility; figure sits in the lower area */
.solve-left-photo::before{
  background:linear-gradient(to bottom, rgba(10,10,15,.55) 0%, rgba(10,10,15,.18) 14%, rgba(10,10,15,0) 30%) !important;
}
.solve-left-photo::after{ background:none !important; }
.solve-left-photo img{ object-position:50% 100% !important; transform:scale(1.14); transform-origin:50% 100%; }
/* mobile guard: no upscale transform at phone widths so nothing overflows at 390 */
@media (max-width:480px){
  .solve-left-photo img{ transform:none !important; }
  .solve-left{ min-height:64vh !important; }
}

/* ===== v2 block: pebble-fourpack-0731 ===== */

/* ═══ 4-change pass (Theresa, 2026-07-31): solutions width/align, lab rebalance,
   solve responsive + light gradient, contact CTA photo bg ═══ */

/* 1 ── WHERE WE DO IT: cards collectively 80% of page width; title block and
   card grid share the same container => same left edge. More inner padding. */
@media (min-width: 1101px) {
  #solutions .container { width: 79vw !important; max-width: 1520px !important; padding: 0 !important; }
}
#solutions .solution-card { padding: 42px 42px 40px !important; gap: 14px !important; }

/* 2 ── THE LAB: smaller render, wider info panel; row still fills cleanly. */
@media (min-width: 1025px) {
  .labx-render { display: flex; justify-content: center; }
  .labx-render img { max-width: 76%; }
  .labx-info-panel { flex: 0 0 545px; padding: 36px 40px; }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .labx-info-panel { flex: 0 0 430px; padding: 30px 32px; }
  .labx-render img { max-width: 88%; }
}

/* 3 ── PROBLEMS WE SOLVE: responsive image fix + restore light gradient. */
/* No upscale transform at ANY width — scale(1.14) was cropping the figure's
   head/arms at mid breakpoints (overflow:hidden on .solve-left). contain keeps
   the full focal subject visible at 1440/1200/1024/768/480/390. */
.solve-left-photo img { transform: none !important; }
/* portrait source 2026-08-04 (Theresa, vertical edge): bottom-anchored, uncropped */
.solve-left-photo img { object-fit: contain !important; object-position: 50% 100% !important; }
/* subtle light gradient behind the section, consistent with #solutions' warm wash */
/* deep burgundy #4C041D at low opacity fading to transparent */
#solve {
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(76,4,29,0.42), transparent 60%),
    radial-gradient(1000px 620px at 85% 45%, rgba(76,4,29,0.30), transparent 62%),
    linear-gradient(180deg, #12101a 0%, #0a0a0f 100%) !important;
}
/* let the letterbox blend into the gradient instead of a flat black slab */
.solve-left-photo { background: transparent !important; }
/* 2026-08-10 (Theresa): breathing room so the contained image never sits flush
   against (or appears cut by) the viewport/column edge at any breakpoint */
.solve-left-photo { padding: 0 10px 30px !important; box-sizing: border-box !important; }
/* soften the old bottom wash so the stand/base and feet stay clearly visible */
.solve-left-photo::before{
  background:linear-gradient(to bottom, rgba(10,10,15,.9) 0%, rgba(10,10,15,.62) 22%, rgba(10,10,15,.12) 44%, rgba(10,10,15,0) 60%, rgba(10,10,15,.12) 100%) !important;
}
/* narrow-column guard (900–1100px): give the sticky column breathing room */
@media (min-width: 901px) and (max-width: 1100px) {
  .solve-left { padding-left: 3.5vw; padding-right: 3.5vw; }
}
/* desktop (2026-08-10 v2, Theresa): photo layer is full-bleed (no top offset —
   the old 33% offset created a visible gradient edge/gap under the title).
   The image itself bottom-anchors at ~64% height so it still sits below the
   heading, flush with the section — no divider line. */
@media (min-width: 901px) {
  .solve-left-photo { top: 0 !important; display: flex !important; align-items: flex-end !important; justify-content: center !important; }
  .solve-left-photo img { width: 100% !important; height: 64% !important; }
}
/* 2026-08-10 (Theresa): center the 4 service cards on mobile + tablet */
@media (max-width: 1100px) {
  #services .svc-pair-wrap { justify-content: center !important; justify-items: center !important; margin-left: auto !important; margin-right: auto !important; }
  #services .svc-inline-card { margin-left: auto !important; margin-right: auto !important; }
}
/* tablet/stacked (≤900): sensible height so the figure reads full and uncropped */
@media (max-width: 900px) {
  .solve-left { min-height: 70vh; }
  /* 2026-08-10 v2: full-bleed layer, image bottom-anchored (no gradient edge/gap) */
  .solve-left-photo { top: 0 !important; display: flex !important; align-items: flex-end !important; justify-content: center !important; }
  .solve-left-photo img { width: 100% !important; height: 62% !important; }
}
@media (max-width: 480px) {
  .solve-left { min-height: 60vh !important; }
}

/* 4 ── CONTACT CTA: low-opacity photo behind "Let's build something together". */
#contact { position: relative; }
#contact .contact-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url('/contact-bg-collab-0731.webp') center 38% / cover no-repeat;
  opacity: 0.22;
}
#contact .contact-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.72) 0%, rgba(10,10,15,0.35) 45%, rgba(10,10,15,0.78) 100%);
}
#contact .container { position: relative; z-index: 2; }
#contact::before { z-index: 1; }
@media (max-width: 480px) {
  #contact .contact-bg { background-position: center 45%; opacity: 0.2; }
  #contact .contact-link { letter-spacing: 0.06em !important; max-width: 100%; overflow-wrap: anywhere; }
}
/* keep email/phone legible over the photo */
#contact .contact-link, #contact .contact-link-phone {
  position: relative; z-index: 2;
  text-shadow: 0 2px 16px rgba(10,10,15,0.95), 0 1px 5px rgba(10,10,15,0.9);
}
#contact .contact-link { color: #F2F0FA !important; font-size: 16px !important; }
#contact .contact-link-phone { color: #EE5C86 !important; font-size: 16px !important; }

/* ===== v2 block: pebble-solve-refine-0810b ===== */

/* ═══ Problems We Solve refinement (Theresa, 2026-08-10 17:27) ═══
   1) Title top-aligned with the top of the cards (kill the 14vh offset on desktop).
   2) Parallax drift on the section image (JS sets --solve-par; scrubbed via GSAP).
   3) Image at 60% opacity and scaled to 125% (bottom-anchored; picture is
      letterboxed inside its box so the visible figure still fits — nothing cut). */
@media (min-width: 901px) {
  .solve-left { padding-top: 0 !important; }
  .solve-headline { margin-top: 0 !important; }
}
.solve-left-photo img {
  opacity: 0.6 !important;
  transform: translateY(var(--solve-par, 0px)) scale(1.25) !important;
  transform-origin: 50% 100% !important;
  will-change: transform;
}
/* phones: keep the 125% scale but shrink slightly if the drawn picture would
   touch the side padding (guarded again by JS measure below) */
@media (max-width: 480px) {
  .solve-left-photo img { transform: translateY(var(--solve-par, 0px)) scale(1.18) !important; }
}
/* mid breakpoints (481–900): narrow left column — 125% would clip the figure at
   the side, so cap the upscale to keep the full picture visible (Theresa rule:
   nothing cut off at the sides takes priority) */
@media (min-width: 481px) and (max-width: 900px) {
  .solve-left-photo img { transform: translateY(var(--solve-par, 0px)) scale(1.05) !important; }
}

/* ===== v2 block: unlabelled ===== */

    /* ============================================================
       WHAT WE DO — icon row: 3 large schematic SVGs across the full
       section width, under the existing headline+visual block.
       Labels stack BELOW each icon.
       ============================================================ */
    #engineering .ww-icon-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      gap: clamp(16px, 2.5vw, 40px);
      align-items: end;
      max-width: 1280px;
      margin: 96px auto 16px;
      padding: 0 clamp(20px, 5vw, 56px);
      box-sizing: border-box;
    }
    /* [+] separators between icons — echoes the bracketed-tag motif from
       the rest of the site (concentric circles + crosshair language). */
    #engineering .ww-icon-sep {
      align-self: center;
      font-family: var(--font-mono, 'JetBrains Mono', 'IBM Plex Mono', monospace);
      font-weight: 500;
      font-size: clamp(16px, 1.4vw, 22px);
      letter-spacing: 0.04em;
      color: var(--terra, #C47D6A);
      opacity: 0.95;
      line-height: 1;
      transform: translateY(-8%); /* visually center against the icon glyph */
      user-select: none;
      pointer-events: none;
    }
    #engineering .ww-icon {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 40px; /* 2026-08-03: more breathing room between icon and label (was 18px) */
      text-align: center;
    }
    #engineering .ww-icon img {
      /* Icons mockup: native aspect ratios differ wildly (tall figure, wide
         brain, mid bulb) — lock a single fixed visual HEIGHT and let width
         follow, so all three read at identical scale on one baseline. */
      display: block;
      height: clamp(150px, 15vw, 210px);
      width: auto;
      max-width: 100%;
      object-fit: contain;
      margin: 0 auto;
    }
    /* Optical-balance pass (2026-08-03): equal pixel height ≠ equal perceived
       size. The dense/wide brain reads heaviest -> shorter; the sparse narrow
       person reads lightest -> taller; bulb stays as the reference. */
    #engineering .ww-icon[data-icon="immersive"] img { height: clamp(154px, 15.4vw, 215px); }
    #engineering .ww-icon[data-icon="ai"] img        { height: clamp(141px, 14.1vw, 197px); }

    #engineering .ww-icon-label {
      font-family: var(--font-sub);
      font-size: clamp(12px, 0.95vw, 14px);
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      background: linear-gradient(120deg, #D9DBF4, #7F83A7, #D9DBF4, #7F83A7);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: coolShift 18s ease infinite;
      max-width: none;
      line-height: 1.5;
      white-space: nowrap;
    }
    /* On narrower screens allow wrapping but on full word boundaries */
    @media (max-width: 1100px) {
      #engineering .ww-icon-label {
        white-space: normal;
        max-width: 18ch;
      }
    }
    /* Tablet: shrink + tighten */
    @media (max-width: 1024px) {
      #engineering .ww-icon-row { margin-top: 56px; gap: 28px; }
      #engineering .ww-icon { gap: 34px; }
      #engineering .ww-icon img { height: 160px; }
      #engineering .ww-icon[data-icon="immersive"] img { height: 164px; }
      #engineering .ww-icon[data-icon="ai"] img { height: 150px; }
    }
    /* Mobile: stack vertically, hide separators (they don't make sense vertically) */
    @media (max-width: 700px) {
      #engineering .ww-icon-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 48px;
      }
      #engineering .ww-icon { gap: 30px; }
      #engineering .ww-icon img { height: 180px; }
      #engineering .ww-icon[data-icon="immersive"] img { height: 185px; }
      #engineering .ww-icon[data-icon="ai"] img { height: 169px; }
      #engineering .ww-icon-sep { display: none; }
    }

/* ===== v2 block: whoweare-hero-0731 ===== */

  #engineering .ww-hero{position:relative;min-height:clamp(600px,62vw,900px);
    /* 2026-08-10 (Theresa): left-align the Who-We-Are text block with the "The Problems We Solve." heading (solve-left sits at 5vw from viewport edge; this container sits at max((100vw-1440px)/2,0)+8vw) */
    margin-left:calc(-1 * (max((100vw - 1440px) / 2, 0px) + 3vw));
  }
  #engineering .ww-hero .section-label{font-size:16px;color:var(--magenta);margin-bottom:30px;}
  #engineering .ww-hero .eng-headline{
    font-size:clamp(38px,4vw,58px);
    line-height:1.02;
    letter-spacing:0.04em;
    background:linear-gradient(120deg,#FFE2C0,#C47D6A,#FFE2C0);
    background-size:200% 100%;
    -webkit-background-clip:text;background-clip:text;
    -webkit-text-fill-color:transparent;color:#FFE2C0;
    margin-bottom:30px;
  }
  #engineering .ww-hero .eng-body{font-size:17px;line-height:1.65;max-width:none;}
  #engineering .container{max-width:1440px;} /* 2026-08-05 Theresa: section max-width 1440px */
  /* 2026-08-10 16:06 (Theresa): text block nudged ~150px right of the solve-heading alignment */
  #engineering .ww-hero-text{position:relative;z-index:2;width:min(620px,48%);margin-left:150px;}
  #engineering .ww-hero-art{position:absolute;top:-5px;right:calc(-1*clamp(120px,13.5vw,200px));width:min(980px,72vw);z-index:1;}
  #engineering .ww-hero-art img{
    display:block;width:100%;height:auto;
  }
  @media (max-width: 900px){
    #engineering .ww-hero{min-height:0;}
    #engineering .ww-fac-row{margin-top:40px;}
    #engineering .ww-hero-text{width:100%;margin-left:0;}
    #engineering .ww-hero-art{position:static;width:100%;max-width:640px;margin:24px auto 0;}
  }
  @media (max-width: 480px){
    #engineering .ww-hero .eng-headline{font-size:34px;}
    #engineering .ww-hero .section-label{font-size:16px;letter-spacing:0.22em;margin-bottom:18px;}
    #engineering .ww-hero .eng-body, #engineering .ww-hero .eng-lede{font-size:16px !important;line-height:1.7;}
  }

/* ===== v2 block: ww-facets-0805 ===== */

        #engineering .ww-fac-row{
          display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(32px,4vw,72px);
          /* 2026-08-10 (Theresa): divider removed; block pulled up tight to the image */
          margin-top:-80px;padding-top:0;
        }
        #engineering .ww-fac{position:relative;display:flex;flex-direction:column;gap:18px;}
        #engineering .ww-fac-num{
          font-family:var(--font-sub);font-size:13px;font-weight:600;letter-spacing:0.32em;
          color:rgba(196,125,106,0.75);
        }
        #engineering .ww-fac-rule{
          display:block;width:44px;height:1px;
          background:linear-gradient(to right,#C47D6A,rgba(196,125,106,0));
          transition:width 0.5s cubic-bezier(.22,1,.36,1);
        }
        #engineering .ww-fac-label{
          font-family:var(--font-head);font-weight:var(--font-head-weight);
          font-size:clamp(22px,1.9vw,30px);line-height:1.15;
          text-transform:uppercase;letter-spacing:0.06em;
          background:linear-gradient(120deg,#D9DBF4,#7F83A7,#D9DBF4,#7F83A7);
          background-size:300% 100%;
          -webkit-background-clip:text;background-clip:text;
          -webkit-text-fill-color:transparent;color:#D9DBF4;
          animation:labGradShift 9s ease-in-out infinite alternate;
        }
        #engineering .ww-fac:hover .ww-fac-rule{width:100%;}
        @media (max-width:700px){
          #engineering .ww-fac-row{grid-template-columns:1fr;gap:36px;margin-top:28px;padding-top:0;}
          #engineering .ww-fac-label{font-size:24px;}
        }

/* ===== v2 block: unlabelled ===== */

    /* ================================================================
       Services section — butterfly layout (mirror across central circle)
       Cards 01↔03 share one row, 02↔04 share the next row.
       ================================================================ */

    /* Outer 3-col / 2-row grid. Pair-wraps are placed directly into cells
       via display:contents on the paired-grid wrappers so all 4 pair-wraps
       share the SAME row tracks. */
    #services .svc-circle-layout {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) 500px minmax(0, 1fr);
      grid-template-rows: 1fr 1fr;
      grid-template-areas:
        "left01 circle right03"
        "left02 circle right04";
      align-items: center;
      justify-items: center;
      gap: 96px 90px; /* 2026-08-05 Theresa: spread the 4 cards vertically + horizontally (was 40px 30px) */
      max-width: 1760px;
    }
    #services .svc-circle-area { grid-area: circle; align-self: center; }
    #services .svc-paired-grid.svc-paired-grid-left,
    #services .svc-paired-grid.svc-paired-grid-right { display: contents; }

    /* Place each pair-wrap into the right outer cell */
    #services .svc-paired-grid-left .svc-pair-wrap:nth-of-type(1) { grid-area: left01; justify-self: end; }
    #services .svc-paired-grid-left .svc-pair-wrap:nth-of-type(2) { grid-area: left02; justify-self: end; }
    #services .svc-paired-grid-right .svc-pair-wrap:nth-of-type(1) { grid-area: right03; justify-self: start; }
    #services .svc-paired-grid-right .svc-pair-wrap:nth-of-type(2) { grid-area: right04; justify-self: start; }

    /* Pair-wrap internal layout: body-box + name-card side by side */
    #services .svc-pair-wrap {
      display: grid !important;
      grid-template-columns: minmax(0, 380px) 230px;
      grid-template-rows: 1fr;
      grid-auto-flow: row dense;
      align-items: center;
      align-content: center;
      gap: 40px;
      max-width: 660px;
      width: 100%;
    }
    #services .svc-paired-grid-right .svc-pair-wrap { grid-template-columns: 230px minmax(0, 380px); }
    #services .svc-paired-grid-right .svc-pair-wrap .svc-name-card { grid-column: 1; grid-row: 1; }
    #services .svc-paired-grid-right .svc-pair-wrap .svc-body-box { grid-column: 2; grid-row: 1; }
    #services .svc-paired-grid-left .svc-pair-wrap .svc-body-box { grid-column: 1; grid-row: 1; }
    #services .svc-paired-grid-left .svc-pair-wrap .svc-name-card { grid-column: 2; grid-row: 1; }

    /* Equalize heights so rows mirror */
    #services .svc-pair-wrap .svc-body-box { min-height: 240px; align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
    #services .svc-pair-wrap .svc-name-card { min-height: 140px; align-self: center; }

    /* Diamond on the edge facing the circle */
    #services .svc-paired-grid-left .svc-inline-card .svc-nd-edge-diamond {
      left: auto !important;
      right: -20px;
    }
    /* Mirror the body-box diamond on the LEFT side too: put it on the RIGHT edge
       of the body-box (facing the name-card) so the connector hits it correctly. */
    #services .svc-paired-grid-left .svc-body-box .svc-body-diamond {
      left: auto !important;
      right: -6px;
    }

    /* ---- Smaller central circle so cards can be larger and text more legible.
       "Cobblestone Labs" is wrapped to 2 lines and absolutely centered on the
       crosshair, so the horizontal crosshair line bisects between the two
       lines. The CBL-STN-LBS code sits just below the title; [SRV-S] hidden. ---- */
    #services .svc-circle-area { width: 260px !important; height: 260px !important; flex: 0 0 260px !important; }
    #services .svc-center-node { width: 195px !important; height: 195px !important; position: relative; }
    #services .svc-c-circle.c1 { width: 165px !important; height: 165px !important; }
    #services .svc-c-circle.c2 { width: 200px !important; height: 200px !important; }
    #services .svc-c-circle.c3 { width: 235px !important; height: 235px !important; }
    #services .svc-c-orbit  { width: 148px !important; height: 148px !important; }
    #services .svc-c-diamond { width: 140px !important; height: 140px !important; }

    /* Title: 2-line, absolutely centered on the crosshair */
    #services .svc-c-title {
      position: absolute !important;
      top: 50% !important;
      left: 50% !important;
      transform: translate(-50%, -50%) !important;
      white-space: normal !important;
      max-width: 110px;
      line-height: 1.15;
      margin: 0 !important;
    }
    /* Hide the [SRV-S] line; put the CBL-STN-LBS code just below the title */
    #services .svc-c-label { display: none !important; }
    #services .svc-c-coord {
      position: absolute !important;
      top: calc(50% + 32px) !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
    }

    /* ---- Larger, more legible card copy ---- */
    #services .svc-inline-title {
      font-size: 22px !important;
      letter-spacing: 0.06em !important;
      line-height: 1.3 !important;
      /* Always show the lighter pale blue (default state was an animated gradient).
         Clear the gradient/animation so this solid color shows through. */
      background: none !important;
      -webkit-background-clip: initial !important;
      background-clip: initial !important;
      -webkit-text-fill-color: #D9DBF4 !important;
      color: #D9DBF4 !important;
      animation: none !important;
    }
    #services .svc-inline-body {
      font-size: 16px !important;
      line-height: 1.6 !important;
      color: #FFE9D2 !important;
    }
    #services .svc-inline-result {
      font-size: 14px !important;
      line-height: 1.55 !important;
    }
    /* Lock all 4 name-cards to exactly the same dimensions */
    #services .svc-name-card,
    #services .svc-pair-wrap .svc-name-card {
      width: 230px !important;
      max-width: 230px !important;
      min-width: 230px !important;
      height: 170px !important;
      min-height: 170px !important;
      max-height: 170px !important;
      box-sizing: border-box !important;
      align-self: center !important;
      padding-bottom: 22px !important;
      position: relative !important;
    }
    /* Pin the SVC code to a fixed offset from the bottom so it's consistent
       across all 4 cards regardless of how many lines the title wraps to. */
    #services .svc-inline-card .svc-nd-coord {
      position: absolute !important;
      left: 28px !important;
      right: 16px !important;
      bottom: 12px !important;
      margin: 0 !important;
    }
    #services .svc-pair-wrap .svc-body-box { min-height: 280px !important; }

    /* ---- Persistent "hover-style" treatment on the result line (always bold + warm gradient) ---- */
    #services .svc-body-box .svc-inline-result {
      font-weight: 700 !important;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0) !important;
      background-size: 200% 100% !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      background-clip: text !important;
      animation: svcWarmShift 4s ease-in-out infinite alternate !important;
    }

    /* Update the outer grid to use the smaller circle column width */
    #services .svc-circle-layout { grid-template-columns: minmax(0, 1fr) 260px minmax(0, 1fr) !important; }

    /* ---- Medium (≤ 1500px): shrink circle further so cards keep breathing room ---- */
    @media (max-width: 1500px) {
      #services .svc-circle-layout { grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr) !important; gap: 36px 22px; }
      #services .svc-circle-area { width: 220px !important; height: 220px !important; flex: 0 0 220px !important; }
      #services .svc-center-node { width: 165px !important; height: 165px !important; }
      #services .svc-c-circle.c1 { width: 140px !important; height: 140px !important; }
      #services .svc-c-circle.c2 { width: 170px !important; height: 170px !important; }
      #services .svc-c-circle.c3 { width: 200px !important; height: 200px !important; }
      #services .svc-c-orbit  { width: 125px !important; height: 125px !important; }
      #services .svc-c-diamond { width: 120px !important; height: 120px !important; }
      #services .svc-inline-title { font-size: 20px !important; }
      #services .svc-name-card, #services .svc-pair-wrap .svc-name-card { width: 220px !important; min-width: 220px !important; max-width: 220px !important; height: 165px !important; min-height: 165px !important; max-height: 165px !important; }
      #services .svc-pair-wrap { grid-template-columns: minmax(0, 1fr) 220px; gap: 30px; }
      #services .svc-paired-grid-right .svc-pair-wrap { grid-template-columns: 220px minmax(0, 1fr); }
    }

    /* ---- 1280px: shrink circle even more so butterfly survives lower ---- */
    @media (max-width: 1280px) {
      #services .svc-circle-layout { grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr) !important; gap: 28px 18px; }
      #services .svc-circle-area { width: 190px !important; height: 190px !important; flex: 0 0 190px !important; }
      #services .svc-center-node { width: 145px !important; height: 145px !important; }
      #services .svc-c-circle.c1 { width: 122px !important; height: 122px !important; }
      #services .svc-c-circle.c2 { width: 148px !important; height: 148px !important; }
      #services .svc-c-circle.c3 { width: 174px !important; height: 174px !important; }
      #services .svc-c-orbit  { width: 110px !important; height: 110px !important; }
      #services .svc-c-diamond { width: 105px !important; height: 105px !important; }
      #services .svc-inline-title { font-size: 19px !important; }
      #services .svc-name-card, #services .svc-pair-wrap .svc-name-card { width: 210px !important; min-width: 210px !important; max-width: 210px !important; height: 160px !important; min-height: 160px !important; max-height: 160px !important; }
      #services .svc-pair-wrap { grid-template-columns: minmax(0, 1fr) 210px; gap: 22px; }
      #services .svc-paired-grid-right .svc-pair-wrap { grid-template-columns: 210px minmax(0, 1fr); }
    }

    /* ---- Mid breakpoint (1101–1280px): keep the butterfly node-diagram
       (4 pairs around central circle) but stack each pair as title-ON-TOP-of-body
       instead of side-by-side. Avoids the narrow squished body columns. ---- */
    @media (min-width: 1101px) and (max-width: 1280px) {
      #services .svc-pair-wrap {
        grid-template-columns: minmax(0, 1fr) !important;
        grid-template-rows: auto auto !important;
        gap: 16px !important;
        max-width: 360px !important;
        justify-items: center !important;
      }
      #services .svc-paired-grid-right .svc-pair-wrap { grid-template-columns: minmax(0, 1fr) !important; }

      /* Place title-card on row 1, body-box on row 2, both centered in the single column. */
      #services .svc-paired-grid-left .svc-pair-wrap .svc-name-card,
      #services .svc-paired-grid-right .svc-pair-wrap .svc-name-card {
        grid-column: 1 !important;
        grid-row: 1 !important;
        align-self: center !important;
        justify-self: center !important;
      }
      #services .svc-paired-grid-left .svc-pair-wrap .svc-body-box,
      #services .svc-paired-grid-right .svc-pair-wrap .svc-body-box {
        grid-column: 1 !important;
        grid-row: 2 !important;
        width: 100% !important;
        max-width: 360px !important;
        min-height: 0 !important;
      }

      /* The decorative edge diamond was positioned for horizontal flow; in stacked
         layout it should sit between the two cards — hide for simplicity. */
      #services .svc-paired-grid-left .svc-inline-card .svc-nd-edge-diamond,
      #services .svc-paired-grid-right .svc-inline-card .svc-nd-edge-diamond,
      #services .svc-paired-grid-left .svc-body-box .svc-body-diamond,
      #services .svc-paired-grid-right .svc-body-box .svc-body-diamond {
        display: none !important;
      }

      /* Hide the SVG connector lines (they were drawn between butterfly horizontal
         positions and don't match the stacked layout). */
      #services .svc-all-conn { display: none !important; }

      /* Hide the mobile-detail clone INSIDE name-cards — we're using the real
         desktop body-box at this width. Otherwise the description shows twice. */
      #services .svc-name-card .svc-mobile-detail { display: none !important; }
    }

    /* ---- Stack everything below 1100px (butterfly text wraps awkwardly below that) ---- */
    @media (max-width: 1100px) {
      #services .svc-circle-layout {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        grid-template-columns: none !important;
        grid-template-areas: none !important;
        grid-template-rows: none !important;
      }
      /* On mobile, lock the circle to a comfortable readable size that
         comfortably contains the wrapped "Cobblestone / Labs" text. The
         innermost ring (c1) is sized larger than the title's box so the
         line never crosses the text. */
      #services .svc-circle-area {
        order: -1;
        transform: none !important;
        margin-bottom: 0 !important;
        grid-area: auto !important;
        width: 260px !important;
        height: 260px !important;
        flex: 0 0 260px !important;
      }
      #services .svc-center-node { width: 200px !important; height: 200px !important; }
      #services .svc-c-circle.c1 { width: 180px !important; height: 180px !important; }
      #services .svc-c-circle.c2 { width: 215px !important; height: 215px !important; }
      #services .svc-c-circle.c3 { width: 250px !important; height: 250px !important; }
      #services .svc-c-orbit { width: 165px !important; height: 165px !important; }
      #services .svc-c-diamond { width: 158px !important; height: 158px !important; }
      /* Keep the wrapped title small enough to stay inside the inner ring (c1=180px) */
      #services .svc-c-title { max-width: 130px !important; font-size: 13px !important; letter-spacing: 0.08em !important; }
      #services .svc-c-coord { font-size: 9px !important; top: calc(50% + 28px) !important; }
      #services .svc-paired-grid-left,
      #services .svc-paired-grid-right { display: contents !important; }
      /* Stacking order: 01, 02, 03, 04 */
      #services .svc-paired-grid-left .svc-pair-wrap:nth-of-type(1) { order: 1; }
      #services .svc-paired-grid-left .svc-pair-wrap:nth-of-type(2) { order: 2; }
      #services .svc-paired-grid-right .svc-pair-wrap:nth-of-type(1) { order: 3; }
      #services .svc-paired-grid-right .svc-pair-wrap:nth-of-type(2) { order: 4; }
      #services .svc-pair-wrap {
        grid-area: auto !important;
        justify-self: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 540px !important;
        padding: 0 6vw !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
      }
      /* Override the desktop fixed dimensions for stacked layout */
      #services .svc-name-card,
      #services .svc-pair-wrap .svc-name-card,
      #services .svc-pair-wrap .svc-body-box {
        width: 100% !important;
        max-width: 460px !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        grid-column: auto !important;
        grid-row: auto !important;
        align-self: stretch !important;
      }
      /* Pin the SVC code to the top-right of the card so it's horizontally
         aligned with the number (01/02/etc) on the left, mobile only. */
      #services .svc-inline-card { position: relative !important; }
      #services .svc-inline-card .svc-nd-coord {
        position: absolute !important;
        top: 14px !important;
        right: 16px !important;
        bottom: auto !important;
        left: auto !important;
        margin: 0 !important;
        text-align: right !important;
      }
      /* Hide all connector lines on stacked layout */
      #services .svc-all-conn { display: none !important; }
      /* Hide the decorative edge diamonds */
      #services .svc-nd-edge-diamond,
      #services .svc-body-diamond { display: none !important; }
      /* Hide the body-box; mobile already uses the .svc-mobile-detail inside
         the name card. Showing both would duplicate the description. */
      #services .svc-pair-wrap .svc-body-box { display: none !important; }
      /* Make sure the .svc-mobile-detail block IS visible at all widths
         where the desktop body-box is hidden (901–1100px) so the description
         text never disappears. */
      #services .svc-name-card .svc-mobile-detail {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
      }
      #services .svc-name-card .svc-mobile-detail .svc-inline-body,
      #services .svc-name-card .svc-mobile-detail .svc-inline-result {
        display: block !important;
      }
    }

/* ===== v2 block: unlabelled ===== */

    /* Ornament cleanup (Theresa 2026-08-03): remove pair rules, brackets, and edge diamonds around service cards */
    #services .svc-pb-rule,
    #services .svc-pb-corner,
    #services .svc-nd-edge-diamond { display: none !important; }
    #services .svc-pair-wrap { padding: 0 !important; }

/* ===== v2 block: wwo-mosaic-0810 ===== */

      #wwo-mosaic, #wwo-reveal { --mono: 'SF Mono', 'Menlo', 'Roboto Mono', monospace; }
      .wm-wrap { max-width: 1400px; margin: 72px auto 0; padding: 0 4vw; }
      .wm-heading {
        font-family: var(--font-head);
        font-weight: var(--font-head-weight);
        font-size: clamp(18px, 1.6vw, 25px);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        text-align: center;
        background: linear-gradient(120deg, #D9DBF4, #7F83A7);
        -webkit-background-clip: text; background-clip: text;
        -webkit-text-fill-color: transparent; color: #D9DBF4;
        margin: 0 0 36px;
      }
      #wwo-mosaic { width: 100vw; margin: 72px 0 0 calc(50% - 50vw); position: relative; }
      /* ── shared tile ── */
      #wwo-mosaic .tile { position: relative; overflow: hidden; display: block; background: #101018; }
      #wwo-mosaic .tile img {
        width: 100%; height: 100%; object-fit: cover; display: block;
        filter: brightness(0.92); transition: filter .35s ease;
      }
      #wwo-mosaic .tile:hover img, #wwo-mosaic .tile.is-active img, #wwo-mosaic .tile.show-tags img { filter: brightness(1.05); }
      #wwo-mosaic .tile .fig {
        position: absolute; left: 14px; bottom: 12px; z-index: 4;
        font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
        color: var(--cream); text-decoration: none;
      }
      #wwo-mosaic .tile:hover .fig, #wwo-mosaic .tile.is-active .fig { text-decoration: underline; text-underline-offset: 4px; }
      #wwo-mosaic .tile:hover .fig, #wwo-mosaic .tile.is-active .fig, #wwo-mosaic .tile.show-tags .fig { left: auto; right: 14px; }
      #wwo-mosaic .tile::after {
        content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 72px; z-index: 1;
        background: linear-gradient(to top, rgba(10,10,15,0.65), transparent);
        pointer-events: none;
      }
      /* ── full-image reveal layer (touch / reduced-motion fallback) ── */
      #wwo-mosaic .tile img.full {
        position: absolute; inset: 0; z-index: 2;
        object-fit: contain; background: var(--bg);
        opacity: 0; transition: opacity .35s ease;
        pointer-events: none;
      }
      #wwo-mosaic .tile.show-tags img.full { opacity: 1; filter: brightness(1.05); }
      #wwo-reveal {
        position: fixed; z-index: 4000; pointer-events: none;
        display: flex; flex-direction: column;
        background: var(--bg);
        box-shadow: 0 0 0 1px rgba(255,226,192,0.5), 0 24px 64px rgba(0,0,0,0.65);
        opacity: 0; transform: scale(0.9);
        visibility: hidden; /* 2026-08-10 flicker fix: fully hide when inactive, not just opacity */
        transition: opacity .3s ease, transform .38s cubic-bezier(.22,1,.36,1), visibility 0s linear .3s;
        will-change: transform, opacity;
      }
      #wwo-reveal.on { opacity: 1; transform: scale(1); pointer-events: auto; visibility: visible; transition: opacity .3s ease, transform .38s cubic-bezier(.22,1,.36,1); }
      #wwo-reveal img {
        width: 100%; object-fit: contain; display: block; flex: 0 0 auto;
        background: var(--bg);
      }
      #wwo-reveal .fig {
        position: absolute; left: 12px; top: 10px; z-index: 4;
        font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--cream);
        background: rgba(10,10,15,0.6); padding: 2px 6px;
      }
      #wwo-reveal .close-x {
        position: absolute; right: 10px; top: 8px; z-index: 4;
        font-family: var(--mono); font-size: 14px; line-height: 1; color: var(--cream);
        background: rgba(10,10,15,0.6); border: 1px solid rgba(255,226,192,0.55);
        padding: 4px 8px; cursor: pointer;
      }
      #wwo-reveal .close-x:hover, #wwo-reveal .close-x:focus-visible { color: var(--terra); border-color: var(--terra); outline: none; }
      #wwo-reveal .info {
        flex: 0 0 auto; padding: 14px 16px 16px;
        background: #101018; border-top: 1px solid rgba(255,226,192,0.25);
        overflow: auto;
      }
      #wwo-reveal .info .t-title {
        display: block; font-family: var(--font-head); font-weight: 700;
        text-transform: uppercase; font-size: 22px; letter-spacing: 0.03em;
        line-height: 1.08; color: var(--cream);
      }
      #wwo-reveal .info .t-desc {
        display: block; padding: 4px 0 0;
        font-family: var(--font-body); font-size: 14px; line-height: 1.45;
        color: var(--text-light);
      }
      #wwo-reveal .info .tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; align-items: baseline; }
      #wwo-reveal .info .tag-row .lbl {
        flex-basis: 100%; color: var(--terra); font-family: var(--mono);
        font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; padding-bottom: 2px;
      }
      #wwo-reveal .info .tag-row span:not(.lbl) {
        font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
        text-transform: uppercase; color: var(--cream);
        border: 1px solid rgba(255,226,192,0.55); padding: 3px 8px; white-space: nowrap;
        background: rgba(10,10,15,0.55);
      }
      #wwo-reveal .info .tag-row span.tech { border-color: rgba(196,125,106,0.65); color: #F0C9BC; }
      /* ── in-tile overlay ── */
      #wwo-mosaic .tags {
        position: absolute; inset: 0; z-index: 3;
        display: flex; flex-direction: column; justify-content: flex-end;
        opacity: 0; transition: opacity .35s ease;
        pointer-events: none;
      }
      #wwo-mosaic .tile:hover .tags, #wwo-mosaic .tile.is-active .tags, #wwo-mosaic .tile.show-tags .tags { opacity: 1; }
      #wwo-mosaic .tags .bar {
        padding: 12px 14px 14px; padding-right: 96px;
        background: linear-gradient(to top, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.62) 65%, rgba(10,10,15,0) 100%);
      }
      #wwo-mosaic .tags .t-title {
        display: block;
        font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
        font-size: 22px; letter-spacing: 0.03em; line-height: 1.08; color: var(--cream);
      }
      #wwo-mosaic .tags .t-desc {
        display: block; padding: 2px 0 0;
        font-family: var(--font-body); font-size: 15px; line-height: 1.45;
        letter-spacing: 0; text-transform: none; color: var(--text-light);
      }
      #wwo-mosaic .tags .fold-panel {
        display: flex; flex-wrap: wrap; align-content: flex-start; gap: 6px;
        padding: 12px 14px; background: rgba(10,10,15,0.92);
        border-top: 1px solid rgba(255,226,192,0.25);
        max-height: 62%; overflow: auto; pointer-events: auto;
      }
      #wwo-mosaic .tags .close-x {
        position: absolute; left: 10px; top: 8px; z-index: 5;
        font-family: var(--mono); font-size: 13px; line-height: 1; color: var(--cream);
        background: rgba(10,10,15,0.6); border: 1px solid rgba(255,226,192,0.55);
        padding: 4px 8px; cursor: pointer; pointer-events: auto;
        display: none;
      }
      #wwo-mosaic .tile.show-tags .tags .close-x { display: block; }
      #wwo-mosaic .tags .fold-panel span {
        font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
        text-transform: uppercase; color: var(--cream);
        border: 1px solid rgba(255,226,192,0.55);
        padding: 3px 8px; white-space: nowrap;
        background: rgba(10,10,15,0.55);
      }
      #wwo-mosaic .tags .fold-panel .lbl {
        flex-basis: 100%; border: none; background: none; padding: 0 0 2px;
        color: var(--terra); font-size: 9px; letter-spacing: 0.24em;
      }
      #wwo-mosaic .tags .fold-panel span.tech { border-color: rgba(196,125,106,0.65); color: #F0C9BC; }
      #wwo-mosaic .mosaic .tile .tags .t-desc { display: none; }
      #wwo-mosaic .mosaic .tile .tags .t-title { font-size: 16px; }
      #wwo-mosaic .mosaic .tile .tags { overflow: hidden; }
      /* 2026-08-10: the #wwo-reveal popup owns the expanded state on ALL devices now
         (click/tap opens it too) — in-tile overlays never render. */
      #wwo-mosaic .mosaic .tile .tags, #wwo-mosaic .mosaic .tile img.full { display: none !important; }
      /* ── puzzle mosaic grid ── */
      #wwo-mosaic .mosaic {
        --cell-w: calc(100vw / 6);
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: calc(var(--cell-w) * 0.62);
        gap: 0;
        width: 100%;
      }
      #wwo-mosaic .mosaic .tile { min-width: 0; }
      #wwo-mosaic .mosaic .tile img {
        transform: scale(1.001);
        transition: transform .45s cubic-bezier(.4,0,.2,1), filter .35s ease;
        will-change: transform;
      }
      #wwo-mosaic .mosaic .tile { transition: transform .45s cubic-bezier(.4,0,.2,1); }
      #wwo-mosaic .mosaic .tile img.full { transform: none; will-change: opacity; }
      #wwo-mosaic .mosaic .tile .fig { left: 10px; bottom: 8px; font-size: 10px; }
      #wwo-mosaic .mosaic .tags .bar { padding: 10px 10px 26px; padding-right: 60px; }
      #wwo-mosaic .mosaic .s-22 { grid-column: span 2; grid-row: span 2; }
      #wwo-mosaic .mosaic .s-21 { grid-column: span 2; grid-row: span 1; }
      #wwo-mosaic .mosaic .s-12 { grid-column: span 1; grid-row: span 2; }
      @media (min-width: 901px) {
        #wwo-mosaic .mosaic .p1  { grid-area: 3 / 1 / 4 / 2; }
        #wwo-mosaic .mosaic .p2  { grid-area: 1 / 1 / 3 / 3; }
        #wwo-mosaic .mosaic .p3  { grid-area: 1 / 4 / 2 / 6; }
        #wwo-mosaic .mosaic .p4  { grid-area: 1 / 6 / 2 / 7; }
        #wwo-mosaic .mosaic .p5  { grid-area: 4 / 1 / 6 / 3; }
        #wwo-mosaic .mosaic .p6  { grid-area: 5 / 3 / 6 / 5; }
        #wwo-mosaic .mosaic .p7  { grid-area: 2 / 6 / 3 / 7; }
        #wwo-mosaic .mosaic .p8  { grid-area: 1 / 3 / 3 / 4; }
        #wwo-mosaic .mosaic .p9  { grid-area: 3 / 3 / 5 / 5; }
        #wwo-mosaic .mosaic .p10 { grid-area: 3 / 2 / 4 / 3; }
        #wwo-mosaic .mosaic .p11 { grid-area: 3 / 6 / 4 / 7; }
        #wwo-mosaic .mosaic .p12 { grid-area: 2 / 4 / 3 / 6; }
        #wwo-mosaic .mosaic .p13 { grid-area: 4 / 6 / 6 / 7; }
        #wwo-mosaic .mosaic .p14 { grid-area: 3 / 5 / 5 / 6; }
        #wwo-mosaic .mosaic .p15 { grid-area: 5 / 5 / 6 / 6; }
        #wwo-mosaic .mosaic .p16 { grid-area: 6 / 1 / 8 / 3; }
        #wwo-mosaic .mosaic .p17 { grid-area: 6 / 3 / 8 / 5; }
        #wwo-mosaic .mosaic .p18 { grid-area: 6 / 5 / 8 / 7; }
      }
      @media (hover: hover) and (prefers-reduced-motion: no-preference) {
        #wwo-mosaic .mosaic .tile img { transform: scale(1.10); }
        #wwo-mosaic .mosaic .tile img.full { transform: none; }
        #wwo-mosaic .mosaic .tile.is-active { z-index: 5; }
        #wwo-mosaic .mosaic .tile.is-active img { transform: scale(1.0); }
        /* 2026-08-10 flicker fix: on hover-capable devices the #wwo-reveal popup owns ALL
           title/tech/industry presentation — the in-tile overlay must NEVER render, or its
           opacity transition ghosts text onto default tiles during rapid hover on/off. */
        #wwo-mosaic .mosaic .tile .tags, #wwo-mosaic .mosaic .tile img.full { display: none !important; }
        #wwo-mosaic .mosaic .tile.is-active .tags, #wwo-mosaic .mosaic .tile.is-active img.full { opacity: 0; }
        #wwo-mosaic .mosaic .tile.is-active .fig { opacity: 0; }
        #wwo-mosaic .mosaic .tile.is-active::before {
          content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
          box-shadow: inset 0 0 0 1px rgba(255,226,192,0.5);
        }
      }
      @media (prefers-reduced-motion: reduce) {
        #wwo-mosaic .mosaic .tile img, #wwo-mosaic .tags, #wwo-mosaic .tags span, #wwo-mosaic .mosaic .tile { transition: none; transform: none; }
        #wwo-mosaic .mosaic .tile:hover img, #wwo-mosaic .mosaic .tile.is-active img { filter: brightness(1.08); transform: none; }
        #wwo-mosaic .mosaic .tile:hover img.full { opacity: 1; }
        #wwo-mosaic .mosaic .tile:hover .tags { opacity: 1; }
      }
      /* 2026-08-10 v3 (Theresa): mobile/tablet mosaic — UNIFORM grids, zero holes
         guaranteed. 601–900px: strict 2-col, every tile 1×1. ≤600px: single column,
         every tile full width. All desktop span classes neutralized below 901px. */
      @media (max-width: 900px) {
        #wwo-mosaic { width: auto; margin: 56px 0 0; padding: 0 12px; }
        #wwo-mosaic .mosaic {
          grid-template-columns: repeat(2, 1fr);
          grid-auto-rows: calc((100vw - 24px - 6px) / 2 * 0.75);
          grid-auto-flow: row;
          gap: 6px;
        }
        #wwo-mosaic .mosaic .tile,
        #wwo-mosaic .mosaic .s-22, #wwo-mosaic .mosaic .s-21, #wwo-mosaic .mosaic .s-12 {
          grid-column: auto / span 1 !important;
          grid-row: auto / span 1 !important;
          grid-area: auto !important;
        }
        #wwo-mosaic .mosaic .tile .fig { left: 8px; bottom: 6px; font-size: 9px; }
      }
      @media (max-width: 600px) {
        #wwo-mosaic .mosaic {
          grid-template-columns: 1fr;
          grid-auto-rows: calc((100vw - 24px) * 0.66);
        }
      }

      /* 2026-08-11: mobile-only concepts slider (<=768px). Desktop mosaic unchanged.
         Auto-advance interval is admin-managed: data-slider-interval-ms on #wwo-mosaic,
         or DEFAULT_INTERVAL_MS in the slider JS below (default 3000ms). */
      #wwo-mslider { display: none; }
      @media (max-width: 768px) {
        #wwo-mosaic .mosaic { display: none; }
        #wwo-mslider { display: block; position: relative; }
        #wwo-mslider .mslide {
          position: absolute; left: 0; right: 0; top: 0;
          opacity: 0; visibility: hidden; pointer-events: none;
          transition: opacity .8s ease, visibility 0s linear .8s;
        }
        #wwo-mslider .mslide.on {
          position: relative;
          opacity: 1; visibility: visible; pointer-events: auto;
          transition: opacity .8s ease;
        }
        #wwo-mslider .mimg { position: relative; }
        #wwo-mslider .mimg img { width: 100%; height: 62vw; object-fit: cover; display: block; background: #101018; }
        #wwo-mslider .mimg .fig { position: absolute; left: 10px; bottom: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; color: var(--cream); background: rgba(10,10,15,0.6); padding: 2px 6px; }
        #wwo-mslider .minfo { padding: 14px 14px 18px; background: #101018; border-top: 1px solid rgba(255,226,192,0.25); }
        #wwo-mslider .minfo .t-title { display: block; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 18px; letter-spacing: .03em; line-height: 1.1; color: var(--cream); }
        #wwo-mslider .minfo .t-desc { display: block; padding: 4px 0 0; font-family: var(--font-body); font-size: 13px; line-height: 1.45; color: var(--text-light); }
        #wwo-mslider .minfo .tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; align-items: baseline; }
        #wwo-mslider .minfo .tag-row .lbl { flex-basis: 100%; color: var(--terra); font-family: var(--mono); font-size: 9px; letter-spacing: .24em; text-transform: uppercase; padding-bottom: 2px; }
        #wwo-mslider .minfo .tag-row span:not(.lbl) { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); border: 1px solid rgba(255,226,192,0.55); padding: 3px 8px; white-space: nowrap; background: rgba(10,10,15,0.55); }
        #wwo-mslider .minfo .tag-row span.tech { border-color: rgba(196,125,106,0.65); color: #F0C9BC; }
      }

/* ===== v2 block: unlabelled ===== */

    /* === Lab section: original 2-column hero w/ readable right-side bullets ===== */
    /* Shared max-width container + matching grid (2 cols, same gap) so the
       eyebrow row and the callout grid below have identical left/right edges,
       and column 2 of the eyebrow aligns vertically with card 02 below. */
    #the-lab {
      --lab-max: 1280px;
      --lab-side-pad: clamp(24px, 5vw, 96px);
      --lab-grid-gap: 24px;
    }
    #the-lab .lab-eyebrow-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--lab-grid-gap);
      align-items: start;
      padding: 32px var(--lab-side-pad) 40px;
      max-width: var(--lab-max);
      margin: 0 auto;
      box-sizing: content-box;
    }
    /* Inside the left panel: keep its content top-anchored so "How We Do It"
       sits at the top, aligned with "Everything we build" on the right. */
    #the-lab .lab-eyebrow-row > div:first-child {
      display: flex !important;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start !important;
    }
    /* And the right panel similarly */
    #the-lab .lab-eyebrow-row > div:last-child {
      align-self: start;
    }
    /* Neutralize the older entrance-animation transforms that were offsetting
       the right column / cards and breaking the vertical alignment. */
    #the-lab .lab-eyebrow-row > div:first-child,
    #the-lab .lab-eyebrow-row > div:last-child,
    #the-lab .lab-callout-card {
      transform: none !important;
      opacity: 1 !important;
    }
    #the-lab .lab-bullets {
      display: flex;
      flex-direction: column;
      gap: 0; /* dividers handle the separation now */
    }
    #the-lab .lab-bullet-lead {
      position: relative;
      padding-left: 38px;
      font-family: var(--font-sub);
      font-size: clamp(17px, 1.3vw, 19px);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      line-height: 1.5;
      background: linear-gradient(120deg, #D9DBF4, #7F83A7, #D9DBF4, #7F83A7);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: coolShift 18s ease infinite;
      margin: 0 0 4px;
      text-align: left;
    }
    /* Same leader-line + diamond marker as .lab-bullet, back to coral #C47D6A */
    #the-lab .lab-bullet-lead::before {
      content: '';
      position: absolute;
      left: 0;
      top: 16px;
      width: 26px;
      height: 1px;
      background: linear-gradient(to right, rgba(196,125,106,0.2), rgba(196,125,106,0.7));
    }
    #the-lab .lab-bullet-lead::after {
      content: '';
      position: absolute;
      left: 24px;
      top: 12px;
      width: 9px;
      height: 9px;
      border: 1px solid rgba(196,125,106,0.85);
      transform: rotate(45deg);
      background: rgba(10,10,15,0.6);
      z-index: 1;
    }
    #the-lab .lab-bullet-lead .accent { background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; }
    #the-lab .lab-bullet {
      position: relative;
      padding: 4px 0 4px 38px;
      font-family: var(--font-sub);
      font-size: 17px;
      font-weight: 300;
      line-height: 1.7;
      color: #E9ECF8;
      text-align: left;
    }
    /* circuit-trace leader line + node — coral #C47D6A */
    #the-lab .lab-bullet::before {
      content: '';
      position: absolute;
      left: 0;
      top: 16px;
      width: 26px;
      height: 1px;
      background: linear-gradient(to right, rgba(196,125,106,0.2), rgba(196,125,106,0.7));
    }
    #the-lab .lab-bullet::after {
      content: '';
      position: absolute;
      left: 24px;
      top: 12px;
      width: 9px;
      height: 9px;
      border: 1px solid rgba(196,125,106,0.85);
      transform: rotate(45deg);
      background: rgba(10,10,15,0.6);
      z-index: 1;
    }
    /* (Vertical connector line between bullets removed per Theresa's request.) */

    /* === Unify all structural lines/markers in the Lab section to pale blue ===
       Retro-technical-diagram pass: outer border is faint+dashed so corners
       (the L-brackets) read as the strongest anchors. */
    #the-lab .lab-bullets,
    #the-lab .lab-eyebrow-row > div:last-child {
      border: 1px dashed rgba(180,178,220,0.18) !important;
      /* Soft rosy radial wash kept more opaque throughout + a small secondary bloom
         at the opposite corner + faint reddish square-grid overlay.
         The radial layers also drift slowly (oversize the background and slide it
         around so the rose-hot-spots wander gently across the panel). */
      background:
        /* faint reddish square grid — 1px lines every 32px (stays put) */
        repeating-linear-gradient(to right, rgba(193,6,68,0.09) 0 1px, transparent 1px 32px),
        repeating-linear-gradient(to bottom, rgba(193,6,68,0.09) 0 1px, transparent 1px 32px),
        /* secondary rose bloom at bottom-right — halved again, very gentle */
        radial-gradient(ellipse at bottom right, rgba(193,6,68,0.045) 0%, rgba(193,6,68,0.03) 35%, rgba(193,6,68,0.015) 65%, transparent 90%),
        /* primary rose glow from top-left — halved again */
        radial-gradient(ellipse at top left, rgba(193,6,68,0.055) 0%, rgba(193,6,68,0.04) 30%, rgba(193,6,68,0.02) 60%, transparent 95%)
        !important;
      /* Allow each layer to be sized + positioned independently */
      background-repeat: repeat, repeat, no-repeat, no-repeat !important;
      background-size: auto, auto, 180% 180%, 180% 180% !important;
      background-position: 0 0, 0 0, 100% 100%, 0% 0% !important;
      animation: labRoseDrift 24s ease-in-out infinite alternate !important;
    }
    @keyframes labRoseDrift {
      0%   { background-position: 0 0, 0 0, 100% 100%,   0% 0%; }
      50%  { background-position: 0 0, 0 0,  60% 80%,  20% 30%; }
      100% { background-position: 0 0, 0 0,  80% 100%,  0% 0%; }
    }
    @media (prefers-reduced-motion: reduce) {
      #the-lab .lab-bullets,
      #the-lab .lab-eyebrow-row > div:last-child { animation: none !important; }
    }
    /* lead crosshair glyph — rosy (override the shorthand `border` from earlier rule) */
    #the-lab .lab-bullet-lead .lab-crosshair-glyph { border: 1px solid rgba(193,6,68,0.7) !important; }
    #the-lab .lab-bullet-lead .lab-crosshair-glyph::before,
    #the-lab .lab-bullet-lead .lab-crosshair-glyph::after { background: rgba(193,6,68,0.6) !important; }
    #the-lab .lab-bullet-lead .lab-crosshair-glyph i { background: #C10644 !important; }
    /* bullet leader-line + diamond — rosy */
    #the-lab .lab-bullet::before {
      background: linear-gradient(to right, rgba(193,6,68,0.18), rgba(193,6,68,0.55)) !important;
      border-top-color: rgba(193,6,68,0.6) !important;
    }
    #the-lab .lab-bullet::after {
      border: 1px solid rgba(193,6,68,0.7) !important;
    }
    #the-lab .lab-bullet-lead::before {
      background: linear-gradient(to right, rgba(193,6,68,0.18), rgba(193,6,68,0.55)) !important;
      border-top-color: rgba(193,6,68,0.6) !important;
    }
    #the-lab .lab-bullet-lead::after {
      border: 1px solid rgba(193,6,68,0.7) !important;
    }
    /* horizontal dividers between items — rosy */
    #the-lab .lab-bullets .lab-divider { background: rgba(193,6,68,0.30) !important; }
    /* tick marks above/below THE LAB wordmark */
    #the-lab .lab-eyebrow-row .lab-ticks-top span,
    #the-lab .lab-eyebrow-row .lab-ticks-bot span { background: rgba(180,178,220,0.6) !important; }
    /* "+" registration glyph */
    #the-lab .lab-eyebrow-row .lab-plus { color: rgba(180,178,220,0.5) !important; }
    /* Corner brackets — rosy on the right panel (inside the bounding rect),
       pale-blue on the left panel. */
    #the-lab .lab-eyebrow-row > div:last-child::before,
    #the-lab .lab-eyebrow-row > div:last-child::after {
      border-color: rgba(193,6,68,0.8) !important;
      width: 14px !important; height: 14px !important;
      border-width: 1px 0 0 1px !important;
    }
    #the-lab .lab-eyebrow-row > div:last-child::after { border-width: 0 1px 1px 0 !important; }
    #the-lab .lab-eyebrow-row > div:first-child::before,
    #the-lab .lab-eyebrow-row > div:first-child::after {
      border-color: rgba(217,219,244,0.55) !important;
      width: 14px !important; height: 14px !important;
      border-width: 1px 0 0 1px !important; /* default for ::before */
    }
    #the-lab .lab-eyebrow-row > div:last-child::after,
    #the-lab .lab-eyebrow-row > div:first-child::after {
      border-width: 0 1px 1px 0 !important;
    }

    /* Add the missing 2 corners (top-right + bottom-left) on the right panel
       so all 4 corners are anchored, schematic-style. */
    #the-lab .lab-bullets {
      /* parent already has position:relative for the edge ticks */
    }
    #the-lab .lab-bullets .lab-corner-tr,
    #the-lab .lab-bullets .lab-corner-bl {
      position: absolute;
      width: 14px; height: 14px;
      border-style: solid;
      border-color: rgba(193,6,68,0.8);
      pointer-events: none;
    }
    #the-lab .lab-bullets .lab-corner-tr { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
    #the-lab .lab-bullets .lab-corner-bl { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }

    /* Inter-bullet horizontal dividers — rosy */
    #the-lab .lab-bullets .lab-divider { background: rgba(193,6,68,0.30) !important; }

    /* Bullet leader-lines: dotted rosy (technical-drawing vibe) */
    #the-lab .lab-bullet::before,
    #the-lab .lab-bullet-lead::before {
      background: none !important;
      border-top: 1px dotted rgba(193,6,68,0.6) !important;
      height: 1px !important;
      width: 26px !important;
    }

    /* Edge-center ticks (top + bottom of right panel) — rosy */
    #the-lab .lab-bullets .lab-edge-tick { background: rgba(193,6,68,0.7) !important; }

    /* Top-left corner bracket sits flush with the dashed border, matching
       the other 3 corners. */
    #the-lab .lab-eyebrow-row > div:last-child::before {
      top: -1px !important;
      left: -1px !important;
    }

    /* Small centered horizontal accent lines on the top AND bottom edges of
       the right panel rectangle (matching pair). */
    #the-lab .lab-bullets {
      position: relative;
    }
    #the-lab .lab-bullets .lab-edge-tick {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 1px;
      background: rgba(180,178,220,0.5);
      pointer-events: none;
    }
    #the-lab .lab-bullets .lab-edge-tick.top { top: -1px; }
    #the-lab .lab-bullets .lab-edge-tick.bot { bottom: -1px; }

    /* Subtle rosy wash behind the lead headline only.
       NOTE: The lead uses -webkit-background-clip:text for its gradient text;
       setting `background` directly on the element would wipe out that gradient
       and make the text disappear. Instead we paint the wash on ::before so it
       sits behind the text without touching the text's background-clip. */
    #the-lab .lab-bullet-lead {
      margin-left: -24px !important;
      margin-right: -24px !important;
      padding-left: 62px !important; /* 38 base indent + 24 to absorb panel pad */
      padding-right: 24px !important;
    }
    #the-lab .lab-bullet-lead::before {
      display: block !important;
      content: '' !important;
      position: absolute !important;
      inset: 0 !important;
      left: 0 !important; right: 0 !important; top: 0 !important; bottom: 0 !important;
      width: auto !important; height: auto !important;
      background: linear-gradient(to right,
        rgba(196,125,106,0.22),
        rgba(196,125,106,0.10) 60%,
        rgba(196,125,106,0.02)) !important;
      z-index: 0 !important;
      pointer-events: none !important;
    }
    /* Keep text + crosshair above the wash */
    #the-lab .lab-bullet-lead > * { position: relative; z-index: 1; }
    /* Re-anchor the absolutely-positioned crosshair after the new padding */
    #the-lab .lab-bullet-lead .lab-crosshair-glyph {
      left: 24px !important;
      z-index: 2 !important;
    }
    #the-lab .lab-bullet b,
    #the-lab .lab-bullet strong {
      font-weight: 600;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0);
      background-size: 200% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: warmShift 12s ease infinite alternate;
    }
    @media (max-width: 1100px) {
      #the-lab .lab-eyebrow-row { grid-template-columns: 1fr; align-items: start; gap: 32px; }
    }
    @media (max-width: 600px) {
      #the-lab .lab-eyebrow-row { padding: 24px 6vw 32px; }
      #the-lab .lab-bullet { font-size: 16px; padding-left: 32px; }
      #the-lab .lab-bullet::before { width: 20px; }
      #the-lab .lab-bullet::after { left: 18px; }
    }
    /* ============================================================
       LAB SECTION — subtle HUD/schematic details (inspiration pass)
       ============================================================ */

    /* 1) Crosshair glyph next to the lead headline */
    #the-lab .lab-bullet-lead .lab-crosshair-glyph {
      display: inline-flex;
      width: 26px; height: 26px;
      border: 1px solid rgba(196,125,106,0.7);
      border-radius: 50%;
      vertical-align: middle;
      margin-right: 12px;
      position: relative;
      flex-shrink: 0;
    }
    #the-lab .lab-bullet-lead .lab-crosshair-glyph::before,
    #the-lab .lab-bullet-lead .lab-crosshair-glyph::after {
      content: '';
      position: absolute;
      background: rgba(196,125,106,0.55);
    }
    #the-lab .lab-bullet-lead .lab-crosshair-glyph::before {
      left: -4px; right: -4px; top: 50%; height: 1px; transform: translateY(-0.5px);
    }
    #the-lab .lab-bullet-lead .lab-crosshair-glyph::after {
      top: -4px; bottom: -4px; left: 50%; width: 1px; transform: translateX(-0.5px);
    }
    #the-lab .lab-bullet-lead .lab-crosshair-glyph i {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 5px; height: 5px;
      background: #C10644;
      border-radius: 50%;
    }
    /* hide the existing leader-line+diamond marker on the lead (replaced by crosshair) */
    #the-lab .lab-bullet-lead::before,
    #the-lab .lab-bullet-lead::after { display: none !important; }
    /* Keep the lead indented to match the other 2 bullets, and pin the crosshair
       glyph into the left gutter so the text aligns with the bullets below. */
    #the-lab .lab-bullet-lead { padding-left: 38px !important; position: relative; }
    #the-lab .lab-bullet-lead .lab-crosshair-glyph {
      position: absolute !important;
      left: 0 !important;
      top: 50% !important;
      transform: translateY(-50%) !important;
      margin-right: 0 !important;
    }
    /* re-anchor the vertical connector line under the first non-lead bullet */
    #the-lab .lab-bullets::before { top: 48px !important; height: calc(100% - 72px) !important; }

    /* 2) Tick marks above/below "THE LAB" wordmark + "+" registration glyph */
    #the-lab .lab-eyebrow-row > div:first-child { position: relative; }
    #the-lab .lab-eyebrow-row .lab-ticks-top,
    #the-lab .lab-eyebrow-row .lab-ticks-bot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      max-width: 540px;
      height: 8px;
      margin: 12px 0;
      pointer-events: none;
      opacity: 0.55;
    }
    #the-lab .lab-eyebrow-row .lab-ticks-top span,
    #the-lab .lab-eyebrow-row .lab-ticks-bot span {
      width: 1px; height: 6px;
      background: rgba(196,125,106,0.85);
      display: block;
    }
    #the-lab .lab-eyebrow-row .lab-plus {
      position: absolute;
      right: 36px;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--font-sub);
      font-size: 16px;
      color: rgba(196,125,106,0.55);
      line-height: 1;
      pointer-events: none;
    }

    /* Horizontal divider lines inside the right "Everything we build" panel —
       a thin rule running edge-to-edge (touching both walls of the framed rect). */
    #the-lab .lab-bullets .lab-divider {
      height: 1px;
      margin: 0 -24px;
      background: rgba(196,125,106,0.4);
      pointer-events: none;
      border: 0;
      flex-shrink: 0;
    }
    /* Tighten the bullet items so the section reads as one cohesive block.
       Each item has equal top/bottom padding so the dividers sit close to text. */
    #the-lab .lab-bullet-lead { margin: 0 !important; padding-bottom: 14px !important; }
    #the-lab .lab-bullet { padding-top: 14px !important; padding-bottom: 14px !important; }
    /* Re-position the leader-line + diamond marker for the new tighter padding */
    #the-lab .lab-bullet::before { top: 26px !important; }
    #the-lab .lab-bullet::after { top: 22px !important; }

    /* 3) Small framed box around the card number (01/02/...) */
    #the-lab .lab-card-num {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      width: 44px; height: 44px;
      border: 1px solid rgba(196,125,106,0.55);
      font-family: var(--font-sub);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: rgba(232,185,154,0.95);
      position: relative;
    }
    #the-lab .lab-card-num::before,
    #the-lab .lab-card-num::after {
      content: '';
      position: absolute;
      width: 4px; height: 4px;
      border-color: rgba(193,6,68,0.7);
      border-style: solid;
    }
    #the-lab .lab-card-num::before { top: 2px; left: 2px; border-width: 1px 0 0 1px; }
    #the-lab .lab-card-num::after { bottom: 2px; right: 2px; border-width: 0 1px 1px 0; }

    /* header row: number frame + label inline, with hash-mark detail */
    #the-lab .lab-card-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
      position: relative;
    }

    /* 6) Hash-mark "//////" detail at the top-right of the header row */
    #the-lab .lab-callout-card .lab-hashes {
      position: absolute;
      top: 18px; right: 24px;
      width: 44px; height: 10px;
      background: repeating-linear-gradient(
        -55deg,
        rgba(196,125,106,0.55) 0 1px,
        transparent 1px 5px
      );
      pointer-events: none;
    }

    /* 4) "+" marker in the bottom-left of each callout card */
    #the-lab .lab-callout-card { position: relative; }

    /* Vertical left rail: number-box, dotted line, and "+" box are all LEFT-
       aligned at the same X (matching the number-box's left edge = card padding). */
    #the-lab .lab-callout-card .lab-corner-plus {
      position: absolute;
      left: 40px; bottom: 28px;
      width: 22px; height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(196,125,106,0.55);
      color: rgba(196,125,106,0.9);
      font-family: var(--font-sub);
      font-size: 13px;
      font-weight: 400;
      line-height: 1;
      pointer-events: none;
    }

    /* Vertical dotted leader-line running from below the number box down to the "+" box,
       left-aligned with both. (1px line, centered under the left edge of the number box.) */
    #the-lab .lab-callout-card .lab-droplet {
      position: absolute;
      left: 50px; /* number-box left (40) + ~half of number-box width to center on it */
      top: 96px;  /* just below the 44px number box (40 padding-top + 44 + 12 gap) */
      bottom: 60px; /* just above the 22px "+" box (28 padding-bottom + 22 + 10 gap) */
      width: 1px;
      background: repeating-linear-gradient(
        to bottom,
        rgba(196,125,106,0.55) 0 2px,
        transparent 2px 6px
      );
      pointer-events: none;
    }

    /* Shift the title + body text rightward so they clear the new vertical left rail.
       The number box ends at 40+44=84px; give the text content a little extra breathing
       room so it doesn't kiss the line. */
    #the-lab .lab-callout-card .lab-callout-label,
    #the-lab .lab-callout-card .lab-callout-body,
    #the-lab .lab-callout-card .lab-callout-divider {
      margin-left: 60px;
    }
    /* Push the bottom padding so the "+" box doesn't bump into the last paragraph */
    #the-lab .lab-callout-card { padding-bottom: 64px !important; }

    /* === MOBILE: drop the vertical left rail so text gets full width === */
    @media (max-width: 700px) {
      #the-lab .lab-callout-card .lab-droplet { display: none !important; }
      #the-lab .lab-callout-card .lab-callout-label,
      #the-lab .lab-callout-card .lab-callout-body,
      #the-lab .lab-callout-card .lab-callout-divider {
        margin-left: 0 !important;
      }
      /* Keep the number box and "+" box left-aligned (where they already are),
         since the text now flows under them rather than to their right. */
    }

    /* 7) Dotted horizontal divider between paragraphs inside a callout card */
    #the-lab .lab-callout-body + .lab-callout-detail,
    #the-lab .lab-callout-body + .lab-callout-body {
      position: relative;
      margin-top: 18px;
      padding-top: 18px;
    }
    #the-lab .lab-callout-body + .lab-callout-detail::before,
    #the-lab .lab-callout-body + .lab-callout-body::before {
      content: '';
      position: absolute;
      left: 0; right: 0; top: 0;
      height: 1px;
      background: repeating-linear-gradient(
        to right,
        rgba(196,125,106,0.55) 0 3px,
        transparent 3px 8px
      );
    }

    @media (max-width: 700px) {
      #the-lab .lab-callout-card .lab-hashes { display: none; }
      #the-lab .lab-eyebrow-row .lab-ticks-top,
      #the-lab .lab-eyebrow-row .lab-ticks-bot,
      #the-lab .lab-eyebrow-row .lab-plus { display: none; }
    }

/* ===== v2 block: unlabelled ===== */

      /* === THE LAB — approved Theresa comp v2 tightened (2026-07-31, F0BM77BT38A) + font floor >=16px === */
      #the-lab {
        background:
          linear-gradient(180deg, rgba(8,7,10,.82) 0%, rgba(8,7,10,.5) 18%, rgba(8,7,10,.38) 48%, rgba(8,7,10,.56) 80%, rgba(8,7,10,.88) 100%),
          url('/lab-stage-bg-0714.webp') center 40%/cover no-repeat !important;
        padding: 60px 0 90px !important;
        position: relative;
        overflow: hidden;
      }
      #the-lab::before, #the-lab::after { content: none !important; animation: none !important; }
      .labx-wrap { max-width: 1760px; margin: 0 auto; padding: 0 clamp(24px, 5.5vw, 100px); }
      #the-lab .section-label { margin-bottom: 16px; font-size: 16px; }
      .labx-head-row { display: flex; align-items: flex-end; justify-content: flex-start; gap: 60px; } /* 2026-08-05: lede sits close to heading, not pushed right */
      .labx-title {
        font-family: var(--font-head); font-weight: 700;
        font-size: clamp(64px, 8.5vw, 122px); line-height: 1; letter-spacing: 0.05em; text-transform: uppercase;
        background: linear-gradient(120deg, #FFE2C0, #C47D6A);
        -webkit-background-clip: text; background-clip: text;
        -webkit-text-fill-color: transparent; color: transparent;
        white-space: nowrap; margin: 0;
      }
      .labx-lede {
        font-family: var(--font-sub);
        font-size: 20px; font-weight: 400; line-height: 1.45; letter-spacing: 0.02em;
        color: #D9DBF4; text-align: left; max-width: 480px; padding-bottom: 8px; margin: 0;
      }
      .labx-coord {
        display: block; margin-top: 22px; font-family: var(--font-head);
        font-size: 18px; letter-spacing: 0.1em; color: #EDE8E2; font-weight: 400;
      }
      .labx-coord .labx-cross { color: #EDE8E2; margin-right: 10px; }
      .labx-mid-row { display: flex; align-items: center; gap: 44px; margin-top: 34px; }
      .labx-render { flex: 1 1 66%; min-width: 0; }
      .labx-render img { width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 46px rgba(0,0,0,.6)); }
      .labx-info-panel {
        flex: 0 0 470px;
        background: rgba(16,12,10,.85);
        border: 1px solid rgba(139,35,64,.45);
        padding: 30px 32px;
      }
      .labx-info-panel p { font-family: var(--font-sub); font-size: 18px; line-height: 1.6; color: #D9DBF4; margin: 0; }
      .labx-info-panel p + p { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(233,235,250,.07); }
      .labx-info-panel b { color: #EDE8E2; font-weight: 600; }
      .labx-grid-box {
        margin-top: 40px;
        max-width: 82%;
        margin-inline: auto;
        border: 1px solid rgba(185,100,70,.55);
        background: rgba(8,7,10,.82);
        border-radius: 0;
      }
      .labx-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
      .labx-cell { padding: 30px 32px 32px; border-bottom: 1px solid rgba(233,235,250,.08); }
      .labx-grid .labx-cell:nth-child(n+5) { border-bottom: none; }
      .labx-num {
        font-family: var(--font-head);
        font-size: 16px; letter-spacing: 0.12em; color: #C47D6A; font-weight: 700;
        display: block; margin-bottom: 16px;
      }
      .labx-cell h3 {
        font-family: var(--font-head);
        font-size: 18px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
        color: #FFE2C0; margin: 0 0 12px; line-height: 1.3; white-space: normal;
      }
      .labx-cell p { font-family: var(--font-sub); font-size: 17px; line-height: 1.6; color: #9A948C; margin: 0; }
      @media (max-width: 1280px) {
        .labx-grid { grid-template-columns: 1fr 1fr; }
        .labx-grid .labx-cell:nth-child(n+5) { border-bottom: 1px solid rgba(233,235,250,.08); }
        .labx-grid .labx-cell:nth-child(n+7) { border-bottom: none; }
        .labx-cell h3 { white-space: normal; }
        .labx-info-panel { flex-basis: 400px; }
      }
      @media (max-width: 1024px) {
        #the-lab { padding: 60px 0 200px !important; }
        .labx-head-row { flex-direction: column; align-items: flex-start; gap: 28px; }
        .labx-lede { padding-bottom: 0; }
        .labx-lede br { display: none; }
        .labx-coord { margin-top: 28px; }
        .labx-mid-row { flex-direction: column; align-items: stretch; gap: 32px; margin-top: 48px; }
        .labx-info-panel { flex: none; }
      }
      @media (max-width: 720px) {
        .labx-grid { grid-template-columns: 1fr; }
        .labx-grid .labx-cell { border-bottom: 1px solid rgba(233,235,250,.08); }
        .labx-grid .labx-cell:last-child { border-bottom: none; }
        .labx-cell { padding: 34px 26px 38px; }
        .labx-grid-box { margin-top: 48px; max-width: 100%; }
        .labx-info-panel { padding: 28px 24px; }
      }
      @media (max-width: 480px) {
        #the-lab { padding: 76px 0 120px !important; }
        .labx-wrap { padding: 0 18px; }
        .labx-title { font-size: clamp(42px, 14vw, 58px); white-space: normal; }
        .labx-lede { font-size: 16px; }
        .labx-coord { font-size: 16px; letter-spacing: 0.06em; }
        .labx-mid-row { margin-top: 26px; gap: 24px; }
        .labx-info-panel { padding: 22px 18px; }
        .labx-cell { padding: 24px 18px 28px; }
      }

/* ===== v2 block: unlabelled ===== */
/* 2026-08-05: pack render+panel as one centered unit */ @media (min-width:1025px){ .labx-mid-row{justify-content:center;} .labx-render{flex:0 0 min(860px,55%) !important;min-width:0;} .labx-render img{max-width:100% !important;width:100%;} }

/* ===== v2 block: unlabelled ===== */

    /* ── ENV/OPP restyle r3 COMPACT (2026-07-30, approved comp env-r3-v2 compact-stacked-left) ── */
    #solutions {
      padding: 58px 0 66px !important;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(1200px 700px at 82% 12%, rgba(196,125,106,0.10), transparent 60%),
        linear-gradient(180deg, #0a0a0f 0%, #0d0b14 100%) !important;
    }
    /* subtle crimson wash behind player to seat it in the section */
    #solutions::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 52%; height: 78%;
      background: radial-gradient(60% 60% at 78% 24%, rgba(193,6,68,0.14), transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    #solutions .container { max-width: 1280px !important; position: relative; z-index: 2; }
    @media (min-width: 1101px) {
      #solutions .container { max-width: 1520px !important; width: 79vw; padding: 0; }
    }
    /* basketball artwork upper-right */
    #solutions .env-bball {
      position: absolute;
      top: -14px; right: -64px;
      width: 600px; max-width: 54vw;
      height: auto;
      z-index: 1;
      pointer-events: none;
      opacity: 0.9;
      filter: drop-shadow(0 34px 70px rgba(0,0,0,0.6)) saturate(1.05);
      -webkit-mask-image: linear-gradient(210deg, #000 48%, transparent 88%);
      mask-image: linear-gradient(210deg, #000 48%, transparent 88%);
    }
    #solutions .solutions-header {
      display: block !important;
      max-width: 760px;
      margin-bottom: 30px;
    }
    #solutions .section-label { display: inline-block; margin-bottom: 14px; }
    #solutions .solutions-headline {
      font-size: clamp(38px, 4.4vw, 60px) !important;
      line-height: 1.0;
      max-width: 560px;
      margin-bottom: 18px;
      padding-right: 0.12em;
      background: linear-gradient(120deg, #FFE2C0 0%, #C47D6A 55%, #FFE2C0 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: var(--cream, #FFE2C0); /* fallback */
    }
    #solutions .reveal-heading { overflow: visible !important; padding-right: 0.15em; }
    #solutions .solutions-intro {
      max-width: 560px !important;
      border: 0;
      background: none;
      padding: 0;
      color: var(--text-light) !important;
      font-size: 1.25rem !important;
      line-height: 1.55 !important;
    }
    /* Cards: original design, tightened for compact rhythm */
    #solutions .solution-card { padding: 44px 44px 40px !important; gap: 14px !important; }
    #solutions .card-num { font-size: 36px !important; line-height: 1 !important; }
    #solutions .card-title { font-size: 1.25rem !important; letter-spacing: 0.1em !important; line-height: 1.3 !important; }
    #solutions .card-desc { font-size: 1.25rem !important; line-height: 1.5 !important; }
    .solutions-grid-3x2 { grid-template-columns: repeat(3, 1fr); gap: 2px; position: relative; z-index: 2; }
    @media (max-width: 1100px) {
      .solutions-grid-3x2 { grid-template-columns: repeat(2, 1fr) !important; }
      #solutions .env-bball { width: 440px; right: -60px; opacity: 0.5; }
    }
    @media (max-width: 700px) {
      .solutions-grid-3x2 { grid-template-columns: 1fr !important; }
      #solutions { padding: 56px 0 64px !important; }
      #solutions .env-bball { width: 300px; right: -40px; top: 0; opacity: 0.28; }
      #solutions .solutions-headline { font-size: 38px !important; max-width: 100%; }
      #solutions .solutions-intro { max-width: 100% !important; font-size: 1.25rem !important; }
      #solutions .card-desc { font-size: 1.25rem !important; }
      #solutions .card-title { font-size: 1.25rem !important; }
    }

/* ===== v2 block: unlabelled ===== */

    .brand-activations {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 0 8vw 64px;
    }
    .brand-activation-tile {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3 / 2;
      background: #0a0a12;
    }
    .brand-activation-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0.42;
      filter: saturate(0.85);
      transition: opacity 0.4s ease;
    }
    .brand-activation-tile:hover img { opacity: 0.6; }
    .brand-activation-tile::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(5,5,12,0.25), rgba(5,5,12,0.45));
      pointer-events: none;
    }
    .brand-activation-label {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      font-family: var(--font-head);
      font-weight: var(--font-head-weight);
      font-size: clamp(28px, 3.2vw, 44px);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(232,232,240,0.92);
      text-shadow: 0 2px 18px rgba(0,0,0,0.55);
      pointer-events: none;
    }
    @media (max-width: 760px) {
      .brand-activations { grid-template-columns: 1fr; gap: 14px; padding: 0 8vw 48px; }
      .brand-activation-label { font-size: 32px; }
    }

/* ===== v2 block: cs-modals-0805 ===== */

    @media (min-width:1101px){ .brand-activations { grid-template-columns: repeat(4, 1fr); } }
    button.brand-activation-tile { padding:0; border:0; background:#0a0a12; cursor:pointer; text-align:inherit; font:inherit; color:inherit; display:block; width:100%; }
    button.brand-activation-tile:focus-visible { outline:2px solid #C47D6A; outline-offset:2px; }
    @media (max-width:1100px) and (min-width:761px) { .brand-activations { grid-template-columns: repeat(2,1fr); } }
    .cs-modal { position:fixed; inset:0; z-index:4000; display:flex; align-items:center; justify-content:center; padding:4vh 4vw; }
    .cs-modal[hidden] { display:none; }
    .cs-modal-bg { display:none; }
    .cs-modal-scrim { position:absolute; inset:0; background:rgba(5,5,12,0.92); }
    .cs-modal-panel {
      position:relative; z-index:2; max-width:1180px; width:100%; max-height:92vh; overflow-y:auto;
      background-color:rgba(10,10,18,0.55); background-size:cover; background-position:center;
      border:1px solid rgba(196,125,106,0.3);
      backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
      padding:clamp(28px,4vw,56px);
    }
    .cs-modal-close {
      position:absolute; top:14px; right:14px; z-index:3;
      width:44px; height:44px; border:1px solid rgba(232,232,240,0.3); background:rgba(5,5,12,0.5);
      color:rgba(232,232,240,0.85); font-size:26px; line-height:1; cursor:pointer; transition:border-color .3s,color .3s;
    }
    .cs-modal-close:hover { border-color:#C47D6A; color:#FFE2C0; }
    .cs-modal-kicker {
      font-family:var(--font-sub); font-size:13px; font-weight:700; letter-spacing:0.32em; text-transform:uppercase;
      color:rgba(196,125,106,0.85); margin-bottom:18px;
    }
    .cs-modal-layout { display:grid; grid-template-columns: minmax(0,5fr) minmax(0,7fr); gap:clamp(24px,3vw,48px); align-items:start; }
    .cs-modal-imgs { display:flex; flex-direction:column; gap:16px; }
    .cs-modal-imgs img { width:100%; height:auto; display:block; border:1px solid rgba(232,232,240,0.12); }
    .cs-modal-title {
      font-family:var(--font-head); font-weight:var(--font-head-weight);
      font-size:clamp(34px,3.4vw,52px); line-height:1.02; text-transform:uppercase; letter-spacing:0.05em;
      background:linear-gradient(120deg,#FFE2C0,#C47D6A,#FFE2C0); background-size:200% 100%;
      -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:#FFE2C0;
      margin:0 0 8px;
    }
    .cs-modal-subtitle { font-family:var(--font-sub); font-size:14px; letter-spacing:0.14em; text-transform:uppercase; color:rgba(232,232,240,0.6); margin-bottom:10px; }
    .cs-modal-bullets { margin:18px 0 0; padding-left:1.15em; display:flex; flex-direction:column; gap:12px; }
    .cs-modal-bullets li { font-size:15.5px; font-weight:300; line-height:1.65; color:rgba(232,232,240,0.85); }
    .cs-modal-bullets li::marker { color:#C47D6A; }
    @media (max-width:860px) {
      .cs-modal { padding:0; align-items:stretch; }
      .cs-modal-panel { max-height:100vh; border:0; }
      .cs-modal-layout { grid-template-columns:1fr; }
      .cs-modal-imgs { flex-direction:row; }
      .cs-modal-imgs img { width:calc(50% - 8px); }
    }

/* ===== v2 block: cs-r3-0805 ===== */

    button.brand-activation-tile {
      border:0.5px solid transparent;
      background-image:linear-gradient(#0a0a12,#0a0a12),linear-gradient(135deg,#D9DBF4,#7F83A7);
      background-origin:border-box;
      background-clip:padding-box,border-box;
    }
    .brand-activation-label {
      font-family:"Avenir Next","AvenirNext",var(--font-sub),sans-serif;
      font-weight:600;
      font-size:clamp(15px,1.15vw,20px);
      letter-spacing:0.14em;
      text-transform:uppercase;
      white-space:nowrap;
      background:linear-gradient(120deg,#D9DBF4,#7F83A7);
      -webkit-background-clip:text;background-clip:text;
      -webkit-text-fill-color:transparent;color:#D9DBF4;
      text-shadow:none;
    }
    @media (max-width:760px){ .brand-activation-label { font-size:18px; } }

/* ===== v2 block: cs-fade-0807 ===== */

    button.brand-activation-tile {
      border: 0 !important;
      background: transparent !important;
      background-image: none !important;
      box-shadow: none !important;
      overflow: visible;
    }
    .brand-activation-tile img,
    .brand-activation-tile::after {
      -webkit-mask-image: radial-gradient(ellipse 74% 68% at 50% 50%, #000 38%, rgba(0,0,0,0.55) 66%, transparent 99%);
      mask-image: radial-gradient(ellipse 74% 68% at 50% 50%, #000 38%, rgba(0,0,0,0.55) 66%, transparent 99%);
    }
    .brand-activation-tile:hover img { opacity: 0.68; }

/* ===== v2 block: csf-0810 ===== */

    .csf-wrap { --mono: 'SF Mono', 'Menlo', 'Roboto Mono', monospace; position: relative; padding: 0 0 64px; }
    /* 2026-08-10 16:06 (Theresa): ruler removed */
    .csf-strip {
      display: flex; gap: 2px; overflow-x: auto; scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      /* 2026-08-10 17:14 (Theresa): slider chrome removed — scrollbar hidden.
         With 4 case studies the desktop tiles exactly fill the width (no scroll);
         a 5th+ tile will overflow-x scroll cleanly with no visible bar. */
      scrollbar-width: none; -ms-overflow-style: none;
    }
    .csf-strip::-webkit-scrollbar { display: none; }
    @media (min-width: 901px) {
      .csf-strip .csf-tile { width: auto; flex: 0 0 calc((100% - 6px) / 4); }
    }
    .csf-tile {
      flex: 0 0 auto; width: min(520px, 74vw);
      scroll-snap-align: start;
      position: relative; display: flex; flex-direction: column; gap: 14px;
      background: none; padding: 0 0 6px; border: 0; cursor: pointer;
      font: inherit; color: inherit; text-align: inherit;
    }
    .csf-tile:focus-visible { outline: 2px solid #C47D6A; outline-offset: 2px; }
    /* 2026-08-10 16:06 (Theresa): name sits BELOW the image, unbolded trade-gothic, centered;
       hover = opacity lift only */
    .csf-tile img {
      width: 100%; aspect-ratio: 3 / 2; height: auto; object-fit: cover; display: block;
      background: #101018;
      opacity: 0.72; transition: opacity .35s ease;
    }
    .csf-tile:hover img, .csf-tile:focus-visible img { opacity: 1; }
    .csf-imgwrap { position: relative; display: block; }
    .csf-num {
      position: absolute; left: 12px; bottom: 10px; z-index: 2; pointer-events: none;
      font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: #FFE2C0;
      text-shadow: 0 1px 4px rgba(10,10,15,0.7);
    }
    .csf-name {
      display: block; text-align: center; padding: 0 12px;
      font-family: var(--font-head); font-weight: 400; text-transform: uppercase;
      font-size: clamp(18px, 1.7vw, 24px); letter-spacing: 0.08em; line-height: 1.15;
      color: #fff;
    }
    /* 2026-08-10 17:14 (Theresa): rail (arrows + index) removed with the slider */
    @media (prefers-reduced-motion: reduce) {
      .csf-tile img { transition: none; }
    }

/* ===== v2 block: unlabelled ===== */

  /* Section-menu — bottom-of-page links to all subpages */
  .section-menu {
    padding: 64px 8vw 80px;
    background: transparent;
    border-top: 1px solid rgba(127,131,167,0.18);
  }
  .section-menu-eyebrow {
    font-family: 'Bebas Neue', 'jaf-bernino-sans-condensed', 'Trade Gothic Next', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(196,125,106,0.85);
    margin-bottom: 24px;
    display: block;
  }
  .section-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    border-top: 1px dashed rgba(127,131,167,0.25);
    border-bottom: 1px dashed rgba(127,131,167,0.25);
  }
  .section-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    color: #E9E3D8;
    text-decoration: none;
    font-family: 'Bebas Neue', 'jaf-bernino-sans-condensed', 'Trade Gothic Next', sans-serif;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.04em;
    border-right: 1px dashed rgba(127,131,167,0.18);
    transition: background 0.18s ease, color 0.18s ease;
  }
  .section-menu-link:last-child { border-right: none; }
  .section-menu-link:hover { background: rgba(196,125,106,0.06); color: #F6E9D8; }
  .section-menu-link .smk {
    font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: rgba(196,125,106,0.7);
    letter-spacing: 0.18em;
  }
  .section-menu-link.is-current { color: rgba(233,227,216,0.45); pointer-events: none; }
  .section-menu-link.is-current .smk::after { content: ' · HERE'; color: rgba(196,125,106,0.85); }
  @media (max-width: 720px) {
    .section-menu { padding: 48px 6vw 64px; }
    .section-menu-grid { grid-template-columns: 1fr; }
    .section-menu-link { border-right: none; border-bottom: 1px dashed rgba(127,131,167,0.18); padding: 18px 4vw; }
    .section-menu-link:last-child { border-bottom: none; }
  }

  /* ============================================================
     2026-06-26: content-text accessibility minimums (headlines/titles/subtitles/body only; NOT technical labels). Owner: Theresa.
     Body min 1rem(16px). Preferred body 1.0625-1.125rem. Long-form prose 1.125-1.25rem.
     Content titles that were <16px raised to a visible title size (>=1.25rem).
     REV 2026-06-26b: added the real small content classes that were previously missed,
     INCLUDING content titles. NOTE: .eng-body/.eng-lede/.solutions-intro/.svc-inline-body/
     .svc-result-text DO exist in this file (contrary to an earlier assumption) and several
     are small content copy (.solutions-intro 14px, .svc-inline-body 13px, .svc-result-text 12px),
     so their accessibility bumps are KEPT (deleting them would regress content below 16px).
     SPECIFICITY/BREAKPOINT FIX: several originals shrink text with !important INSIDE
     @media blocks, and some are id-scoped (#services / #solutions = id+class beats a
     plain class even with !important). So for those we (a) match the @media query and
     (b) match/raise specificity (id-scoped) so the override actually wins at every breakpoint.
     Technical labels / chrome (eyebrows, badges, coord ticks .svc-c-coord/.svc-nd-coord,
     CH. tags, card numbers, nav links, buttons, .cs-tab, monospace spec labels) are
     intentionally NOT touched.
     ============================================================ */

  /* ---------- CONTENT TITLES (raise to visible title size) ---------- */
  /* Feature titles: base/900/480 rules are 12-13px, none !important -> end-of-style !important wins by source order at every breakpoint. */
  .feature-title { font-size: clamp(1.25rem, 1.6vw, 1.5rem) !important; line-height: 1.2 !important; }
  /* Service-node titles: base 14px (non-imp) + @1024 has 13px !important -> need a matching @1024 !important override too. */
  .svc-nd-title { font-size: clamp(1.25rem, 1.6vw, 1.5rem) !important; }
  /* Service-card titles: base 16px + #services @1100 has 13px !important (id-scoped) -> base wins by source order; @1100 handled below with matching id-specificity. */
  .svc-c-title,
  #services .svc-c-title { font-size: clamp(1.25rem, 1.6vw, 1.5rem) !important; }
  /* Solution card titles: base 14px + #solutions @700 14px !important (id-scoped) -> match id-specificity; @700 handled below. */
  .card-title,
  #solutions .card-title { font-size: clamp(1.25rem, 1.6vw, 1.5rem) !important; line-height: 1.3 !important; }

  /* ---------- BODY / DESCRIPTIVE COPY ---------- */
  /* Hero subtitle: only @480 shrinks (12px, non-imp) -> source order wins. */
  .hero-sub { font-size: clamp(1rem, 1.2vw, 1.0625rem) !important; }

  /* 2026-06-26b desktop straggler fix: these had no desktop-base override and stayed small. */

  /* hero-sub +39% 2026-06-27 (owner: Theresa) — homepage hero tagline.
     Was effective ~17px; +39% -> ~23.6px. Floor 16->~22px. Beats base + the !important override. */
  .hero-sub { font-size: clamp(1.546rem, 2.057vw, 1.646rem) !important; }

  /* hero-sub mobile re-optimize 2026-06-30 (owner: New3-Smith) — layout fix after +39% bump.
     The +39% desktop size (24.7-26.3px) is intentional (Theresa). On mobile the vw term
     collapses to <8px so the floor dominates — 1.546rem = 24.7px is too large on phones.
     Restore a proportionate but readable mobile size below 900px. */
  @media (max-width: 900px) {
    .hero-sub { font-size: clamp(1rem, 3.4vw, 1.25rem) !important; line-height: 1.65 !important; letter-spacing: 0.12em !important; }
  }
  @media (max-width: 480px) {
    .hero-sub { font-size: clamp(0.9375rem, 3.6vw, 1.05rem) !important; letter-spacing: 0.09em !important; }
  }

  /* hero-title desktop -25% 2026-07-24 (owner: Theresa) — desktop-only headline size reduction.
     Base was clamp(72px, 13vw, 200px); mobile (<=900px) rules unchanged. */
  @media (min-width: 901px) {
    .hero-title { font-size: clamp(54px, 9.75vw, 150px) !important; }
  }

  /* solve-label/problem/solution content bump 2026-06-27 (owner: Theresa) — "Problems We Solve" section.
     The repeated "Problem"/"Solution" row labels were 11px; their descriptions 14px floor. These are
     content subtitles + body copy (NOT code tags), so raise to standard. */
  .solve-label { font-size: clamp(1rem, 1.1vw, 1.0625rem) !important; }            /* subtitle label >=16px */
  .solve-problem { font-size: clamp(1.0625rem, 1.2vw, 1.125rem) !important; }      /* body 17-18px */
  .solve-solution { font-size: clamp(1.0625rem, 1.2vw, 1.125rem) !important; }     /* body 17-18px (beats the 14px !important rule) */
  .feature-title { font-size: clamp(1.25rem, 1.6vw, 1.5rem) !important; }
  .svc-panel-body { font-size: clamp(1.0625rem, 1.2vw, 1.125rem) !important; }

  /* Feature description copy: base/900/480 are 13px (non-imp) -> source order wins. */
  .feature-desc { font-size: clamp(1.0625rem, 1.2vw, 1.125rem) !important; }

  /* Services right-panel prose: @900 + @768 both 14px !important -> matching @media below. Base re-asserted here. */
  .svc-panel-body { font-size: clamp(1.0625rem, 1.2vw, 1.125rem) !important; }
  /* Services right-panel result sentence: @900 + @768 both 13px !important -> matching @media below. */
  .svc-panel-result { font-size: clamp(1rem, 1.1vw, 1.0625rem) !important; }

  /* Services intro (negative) prose: base is clamp(16-22) fine; @480 drops to 13px (non-imp) -> source order wins. */
  .svc-intro-negative { font-size: clamp(1.0625rem, 1.2vw, 1.125rem) !important; }

  /* Mobile services body + result copy: @480 only (14px / 13px, non-imp) -> source order wins. */
  .svc-mobile-body { font-size: clamp(1rem, 1.1vw, 1.0625rem) !important; }
  .svc-mobile-result { font-size: clamp(1rem, 1.1vw, 1.0625rem) !important; }

  /* Solutions cards descriptive copy: #solutions @700 13px !important (id-scoped) -> id-specificity here + matching @700 below. */
  .card-desc,
  #solutions .card-desc { font-size: clamp(1.25rem, 1.4vw, 1.375rem) !important; } /* 2026-07-30 Theresa: 1.25rem floor */

  /* The Lab callout body copy -> >=16px (overrides mobile 15px). */
  .lab-callout-body { font-size: clamp(1rem, 1.25vw, 1.1875rem) !important; }
  /* The Lab callout label: base clamp(18-24) fine; @900 drops to 15px (non-imp) -> floor >=16px, source order wins. */
  .lab-callout-label { font-size: clamp(1.0625rem, 1.4vw, 1.25rem) !important; }
  /* The Lab callout detail: base clamp(15-17); @900 drops to 14px (non-imp) -> floor >=16px, source order wins. */
  .lab-callout-detail { font-size: clamp(1rem, 1.1vw, 1.0625rem) !important; }

  /* ---------- REAL content classes (exist in file) kept at accessibility floor ---------- */
  /* Engineering / "What We Do" prose: 17px base -> clamp keeps >=16px on all breakpoints. */
  .eng-body, .eng-lede { font-size: clamp(1.0625rem, 1.2vw, 1.125rem) !important; }
  /* Solutions section intro lede: 14px base (too small) -> long-form prose. */
  .solutions-intro { font-size: clamp(1.125rem, 1.4vw, 1.25rem) !important; }
  /* Services inline body copy: 13px base / #services 16px -> raise to preferred (match id-specificity). */
  .svc-inline-body,
  #services .svc-inline-body { font-size: clamp(1.0625rem, 1.2vw, 1.125rem) !important; }
  /* Services result sentence text: 12px base (descriptive sentence copy, not a tag) -> body floor >=16px. */
  .svc-result-text { font-size: clamp(1rem, 1.1vw, 1.0625rem) !important; }

  /* ---------- MATCHING @media OVERRIDES (beat in-media !important shrinks) ---------- */
  @media (max-width: 1024px) {
    /* beats .svc-nd-title { 13px !important } at @1024 */
    .svc-nd-title { font-size: clamp(1.25rem, 1.6vw, 1.5rem) !important; }
  }
  @media (max-width: 1100px) {
    /* beats #services .svc-c-title { 13px !important } at @1100 (match id-specificity) */
    #services .svc-c-title,
    .svc-c-title { font-size: clamp(1.25rem, 1.6vw, 1.5rem) !important; }
  }
  @media (max-width: 900px) {
    /* beats .svc-panel-body { 14px !important } and .svc-panel-result { 13px !important } at @900 */
    .svc-panel-body { font-size: clamp(1.0625rem, 1.2vw, 1.125rem) !important; }
    .svc-panel-result { font-size: clamp(1rem, 1.1vw, 1.0625rem) !important; }
  }
  @media (max-width: 768px) {
    /* beats .svc-panel-body { 14px !important } and .svc-panel-result { 13px !important } at @768 */
    .svc-panel-body { font-size: clamp(1.0625rem, 1.2vw, 1.125rem) !important; }
    .svc-panel-result { font-size: clamp(1rem, 1.1vw, 1.0625rem) !important; }
  }
  @media (max-width: 700px) {
    /* beats #solutions .card-title { 14px !important } and #solutions .card-desc { 13px !important } at @700 (match id-specificity) */
    #solutions .card-title,
    .card-title { font-size: clamp(1.25rem, 1.6vw, 1.5rem) !important; line-height: 1.3 !important; }
    #solutions .card-desc,
    .card-desc { font-size: clamp(1.25rem, 1.4vw, 1.375rem) !important; } /* 2026-07-30 Theresa: 1.25rem floor */
  }

/* ===== v2 block: v2-overrides ===== */

    /* Hero projector beam (from hero.html) */
    .hero-beam-bg{position:absolute;inset:0;z-index:0;pointer-events:none;overflow:hidden;}
    .hero-beam-bg img{width:100%;height:100%;object-fit:cover;object-position:center 62%;display:block;}
    #hero .hero-eyebrow,#hero .hero-title,#hero .hero-sub,#hero .hero-cta{position:relative;z-index:2;}
    #hero .scroll-hint{z-index:2;}
    /* Hero v5 layout (Theresa-approved comp 2026-07-24): headline up off wireframe face, sub+CTA down below dancer */
    #hero{justify-content:flex-start;padding-top:13vh;padding-bottom:9vh;}
    #hero .hero-sub{margin-top:auto;}
    @media (max-width:768px){
      #hero{justify-content:center;padding-top:108px;padding-bottom:120px;}
      #hero .hero-sub{margin-top:0;}
      .hero-beam-bg::after{content:'';position:absolute;inset:0;background:rgba(10,10,15,0.35);}
    }
    @media (max-width:640px){.hero-beam-bg img{object-position:72% center;}}

    /* WHAT WE DO — dancer photo in the annotated visual */
    #engineering .eng-visual-photo{position:absolute;inset:12px;overflow:hidden;border-radius:2px;z-index:0;}
    #engineering .eng-visual-photo img{width:100%;height:100%;object-fit:cover;object-position:center 18%;display:block;opacity:.92;}
    #engineering .eng-visual-photo::after{content:'';position:absolute;inset:0;background:linear-gradient(to right, rgba(10,10,15,0.78) 0%, rgba(10,10,15,0.42) 46%, rgba(10,10,15,0.04) 100%);}
    #engineering .eng-visual-inner,#engineering .eng-visual-grid{z-index:1;}
    #engineering .eng-visual-corner{z-index:3;}
    /* Callout list: left-anchored, code/annotation styling */
    #engineering .eng-callout-list{top:50%;left:44px;transform:translateY(-50%);gap:24px;z-index:2;align-items:flex-start;}
    #engineering .eng-callout{gap:0;}
    #engineering .eng-callout-dot,#engineering .eng-callout-line{display:none;}
    #engineering .eng-callout-idx{font-family:var(--font-mono, ui-monospace, 'SF Mono', Menlo, 'JetBrains Mono', monospace);font-size:10px;font-weight:500;letter-spacing:.22em;color:rgba(255,226,192,.8);flex-shrink:0;display:inline-flex;align-items:center;}
    #engineering .eng-callout-idx::after{content:'';display:inline-block;width:20px;height:1px;background:linear-gradient(to right, rgba(255,226,192,.65), rgba(196,125,106,.15));margin:0 10px 0 8px;}
    #engineering .eng-callout-label{font-family:var(--font-mono, ui-monospace, 'SF Mono', Menlo, 'JetBrains Mono', monospace) !important;font-size:11px !important;font-weight:500;letter-spacing:.16em !important;text-transform:uppercase;background:none !important;-webkit-background-clip:initial !important;background-clip:initial !important;-webkit-text-fill-color:rgba(233,235,250,.94) !important;color:rgba(233,235,250,.94);text-shadow:0 1px 8px rgba(10,10,15,.9);}

    /* SOLVE — grid-woman photo, left column; headline stays clear above her head */
    .solve-left{display:flex;flex-direction:column;position:sticky;top:0;height:100vh;min-height:560px;padding:14vh 5vw 60px;box-sizing:border-box;overflow:hidden;border-right:1px solid rgba(127,131,167,0.12);}
    .solve-headline{position:relative;z-index:2;margin-top:0;text-shadow:none;filter:drop-shadow(0 2px 14px rgba(10,10,15,.85)) drop-shadow(0 1px 4px rgba(10,10,15,.7));}
    .solve-left-photo{position:absolute;inset:0;margin:0;overflow:hidden;border:none;border-radius:0;z-index:0;}
    .solve-left-photo img{width:100%;height:100%;object-fit:cover;object-position:38% 60%;display:block;opacity:.9;}
    .solve-left-photo::before{content:'';position:absolute;inset:0;background:linear-gradient(to bottom, rgba(10,10,15,.9) 0%, rgba(10,10,15,.62) 22%, rgba(10,10,15,.12) 44%, rgba(10,10,15,0) 60%, rgba(10,10,15,.35) 100%);z-index:1;pointer-events:none;}
    .solve-left-photo::after{content:'';position:absolute;inset:0;background:linear-gradient(to right, rgba(10,10,15,0) 76%, rgba(10,10,15,.55) 100%);z-index:1;pointer-events:none;}
    @media (max-width:900px){.solve-left{position:relative;top:auto;height:auto;min-height:74vh;padding:56px 6vw 48px;justify-content:flex-start;}}

    /* ══════════ V2B — LAB MOCKUP REBUILD + VIBE-INSPO PASS (2026-07-13) ══════════ */
    /* Section registration strip (inspo: 1440PX · HERO · SECTION 01 header bars) */
    .secreg{display:flex;align-items:center;gap:14px;padding:56px 8vw 0;max-width:1440px;margin:0 auto;box-sizing:border-box;}
    .secreg-line{flex:1;height:1px;background:linear-gradient(to right, rgba(196,125,106,0.28), rgba(127,131,167,0.14));}
    .secreg-label{font-family:var(--font-mono, ui-monospace, 'SF Mono', Menlo, monospace);font-size:10px;font-weight:500;letter-spacing:0.24em;text-transform:uppercase;color:rgba(232,185,154,0.55);white-space:nowrap;}
    .secreg-cross{color:rgba(193,6,68,0.45);font-size:13px;line-height:1;}
    .secreg-cap{color:rgba(196,125,106,0.4);font-size:9px;line-height:1;}
    @media (max-width:768px){.secreg{padding:40px 6vw 0;gap:8px;}.secreg-label{font-size:8px;letter-spacing:0.12em;}.secreg-label:last-of-type,.secreg-cross{display:none;}.secreg-line:last-of-type{display:none;}}

    /* Lab header per mockup: lead statement left, bordered panel right */
    #the-lab .lab-eyebrow-row{align-items:stretch;}
    .lab2m-lead{margin:26px 0 0;max-width:480px;font-family:var(--font-sub);font-size:clamp(18px,1.6vw,24px);font-weight:600;line-height:1.45;color:#F2F0FA;letter-spacing:0.01em;}
    .lab2m-lead .accent{color:#E8B99A;}
    .lab2m-panel{max-width:520px;}

    /* Central annotated render */
    .lab2m-render-wrap{position:relative;max-width:1080px;margin:0 auto;padding:64px 8vw 56px;box-sizing:content-box;}
    .lab2m-render-wrap > img{width:100%;height:auto;display:block;filter:drop-shadow(0 30px 60px rgba(0,0,0,0.45));}
    .lab2m-annot{position:absolute;top:0;display:flex;flex-direction:column;align-items:flex-start;z-index:2;}
    .lab2m-annot-label{font-family:var(--font-mono, ui-monospace, 'SF Mono', Menlo, monospace);font-size:10px;font-weight:500;letter-spacing:0.22em;text-transform:uppercase;color:rgba(233,235,250,0.85);white-space:nowrap;display:inline-flex;align-items:center;gap:8px;text-shadow:0 1px 8px rgba(10,10,15,0.9);}
    .lab2m-annot-node{width:5px;height:5px;background:rgba(196,125,106,0.9);flex-shrink:0;}
    .lab2m-annot-line{width:1px;background:linear-gradient(to bottom, rgba(196,125,106,0.7), rgba(196,125,106,0.15));margin:6px 0 0 2px;}
    .lab2m-annot-dot{width:7px;height:7px;border-radius:50%;background:var(--magenta);box-shadow:0 0 10px rgba(193,6,68,0.6);margin-left:-1px;animation:lgc-pulse 3s ease-in-out infinite;}
    .lab2m-annot.a1{left:19%;top:34px;}
    .lab2m-annot.a1 .lab2m-annot-line{height:200px;}
    .lab2m-annot.a2{left:44%;top:10px;}
    .lab2m-annot.a2 .lab2m-annot-line{height:210px;}
    .lab2m-annot.a3{left:71%;top:56px;}
    .lab2m-annot.a3 .lab2m-annot-line{height:120px;}
    @media (max-width:900px){
      .lab2m-render-wrap{padding:36px 6vw 32px;}
      .lab2m-annot{position:static;flex-direction:row;margin-bottom:8px;}
      .lab2m-annot-line,.lab2m-annot-dot{display:none;}
    }

    /* 3-col card grid per mockup */
    .lab2m-grid3{grid-template-columns:repeat(3,1fr);}
    @media (max-width:1100px){.lab2m-grid3{grid-template-columns:1fr 1fr;}}
    @media (max-width:768px){.lab2m-grid3{grid-template-columns:1fr;}}

    /* Lower-left warm render, diagonal bleed + footer data strip */
    .lab2m-foot{position:relative;max-width:1280px;margin:-24px auto 0;padding:0 8vw 96px;box-sizing:content-box;}
    .lab2m-foot > img{width:min(680px,72%);height:auto;display:block;opacity:0.92;-webkit-mask-image:linear-gradient(105deg,#000 55%,rgba(0,0,0,0.55) 74%,transparent 94%);mask-image:linear-gradient(105deg,#000 55%,rgba(0,0,0,0.55) 74%,transparent 94%);}
    .lab2m-foot-strip{display:flex;justify-content:space-between;align-items:center;margin-top:28px;padding-top:14px;border-top:1px solid rgba(127,131,167,0.12);}
    .lab2m-foot-strip span{font-family:var(--font-mono, ui-monospace, 'SF Mono', Menlo, monospace);font-size:10px;font-weight:500;letter-spacing:0.22em;text-transform:uppercase;color:rgba(180,178,220,0.4);}
    @media (max-width:768px){.lab2m-foot{padding:0 6vw 64px;}.lab2m-foot > img{width:100%;}.lab2m-foot-strip span{font-size:8px;letter-spacing:0.14em;}}

    /* Clip transient slide-in transforms so they never cause page-level horizontal scroll */
    #solve{overflow-x:clip;}
    /* Inspo pass — eng visual bottom data bar (mirrors topbar) */
    .eng-visual-botbar{display:flex;justify-content:space-between;align-items:center;padding:10px 0 0;border-top:1px solid rgba(127,131,167,0.12);margin-top:10px;}

    /* Inspo pass — solve grid-woman photo: corner registration marks + side leader line */
    .solve-left-photo .slp-corner{position:absolute;width:14px;height:14px;z-index:2;pointer-events:none;}
    .solve-left-photo .slp-corner::before,.solve-left-photo .slp-corner::after{content:'';position:absolute;background:rgba(232,185,154,0.75);}
    .solve-left-photo .slp-corner::before{width:100%;height:1px;top:0;left:0;}
    .solve-left-photo .slp-corner::after{width:1px;height:100%;top:0;left:0;}
    .solve-left-photo .slp-corner.tl{top:14px;left:14px;}
    .solve-left-photo .slp-corner.tr{top:14px;right:14px;transform:scaleX(-1);}
    .solve-left-photo .slp-corner.bl{bottom:14px;left:14px;transform:scaleY(-1);}
    .solve-left-photo .slp-corner.br{bottom:14px;right:14px;transform:scale(-1);}
    .solve-left-photo .slp-leader{position:absolute;top:38%;right:0;width:26%;height:1px;background:linear-gradient(to left, rgba(196,125,106,0.55), transparent);z-index:2;pointer-events:none;}
    .solve-left-photo .slp-leader::before{content:'';position:absolute;left:-2px;top:-3px;width:7px;height:7px;border-radius:50%;background:var(--magenta);box-shadow:0 0 10px rgba(193,6,68,0.6);animation:lgc-pulse 3s ease-in-out infinite;}

    /* ============================================================
       BATCH 0714 (owner: Theresa) — 3-item pass
       ============================================================ */

    /* ITEM 1 — hero subtitle line 1 on a single line at desktop widths */
    @media (min-width: 1100px){
      #hero .hero-sub{max-width:none !important;}
      #hero .hero-sub .hero-sub-line1{white-space:nowrap;}
    }

    /* ITEM 2 — LAB cards: theatrical stage backdrop + smaller, cleaner cards */
    #the-lab .lab-callouts.lab2m-grid3{
      position:relative;
      gap:14px;
      padding:56px var(--lab-side-pad, 8vw) 64px;
      background:
        linear-gradient(180deg, rgba(7,7,12,.92) 0%, rgba(7,7,12,.55) 14%, rgba(7,7,12,.42) 50%, rgba(7,7,12,.6) 84%, rgba(7,7,12,.94) 100%),
        url('/lab-stage-bg-0714.webp') center 42%/cover no-repeat;
      border-top:1px solid rgba(233,235,250,.08);
      border-bottom:1px solid rgba(233,235,250,.08);
    }
    #the-lab .lab-callout-card{
      padding:20px 20px 24px !important;
      background:rgba(8,8,14,.7) !important;
      -webkit-backdrop-filter:blur(4px);
      backdrop-filter:blur(4px);
      border:1px solid rgba(233,235,250,.13) !important;
    }
    /* strip the annotation chrome: hash marks, dotted left rail, plus box, boxed number */
    #the-lab .lab-callout-card .lab-hashes,
    #the-lab .lab-callout-card .lab-droplet,
    #the-lab .lab-callout-card .lab-corner-plus,
    #the-lab .lab-callout-label .lab-callout-dot{display:none !important;}
    #the-lab .lab-callout-card .lab-callout-label,
    #the-lab .lab-callout-card .lab-callout-body,
    #the-lab .lab-callout-card .lab-callout-divider{margin-left:0 !important;}
    #the-lab .lab-card-header{margin-bottom:8px !important;}
    #the-lab .lab-card-num{
      width:auto !important;height:auto !important;border:0 !important;
      font-size:11px !important;letter-spacing:.3em !important;
      color:rgba(232,185,154,.85) !important;
    }
    #the-lab .lab-card-num::before,
    #the-lab .lab-card-num::after{display:none !important;}
    #the-lab .lab-callout-label{font-size:15px !important;line-height:1.35 !important;}
    #the-lab .lab-callout-divider{margin-bottom:10px !important;}
    #the-lab .lab-callout-body{font-size:14px !important;line-height:1.6 !important;font-weight:400 !important;color:rgba(233,236,248,.85) !important;margin-bottom:0 !important;}
    @media (max-width:700px){
      #the-lab .lab-callouts.lab2m-grid3{padding:40px 6vw 48px;}
    }

    /* ITEM 3 — dancer replaces the "Cobblestone Labs" center text; screen blend
       knocks out her near-black background so the circle diagram reads through her. */
    #services .svc-circle-layout{position:relative;}
    #services .svc-dancer{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:min(840px,62vw);z-index:0;pointer-events:none;}
    #services .svc-dancer img{width:100%;height:auto;display:block;mix-blend-mode:screen;opacity:.95;-webkit-mask-image:radial-gradient(ellipse 60% 60% at 50% 50%,#000 55%,rgba(0,0,0,0) 98%);mask-image:radial-gradient(ellipse 60% 60% at 50% 50%,#000 55%,rgba(0,0,0,0) 98%);}
    #services .svc-c-title,#services .svc-c-label,#services .svc-c-coord{display:none !important;}
    @media (max-width:1100px){
      #services .svc-dancer{left:50%;top:130px;transform:translate(-50%,-50%);width:min(360px,92vw);height:auto;}
      #services .svc-dancer img{opacity:.9;}
    }

/* ===== v2 block: font-floor-20260731 ===== */

/* ══ FONT-MINIMUM FLOOR PASS — 2026-07-31 (style guide: body ≥1rem/16px, labels ≥12px, footnotes ≥13px) ══ */

/* — Body / reading copy → ≥16px — */
.lab-card p { font-size: 1rem !important; }
.labx-info-panel p { font-size: 1.125rem !important; }
.labx-cell p { font-size: 1.0625rem !important; }
.lab2-body { font-size: clamp(1rem, 1.1vw, 1.0625rem) !important; }
.lab2-panel-body { font-size: clamp(1rem, 1.1vw, 1.0625rem) !important; }
.lab2-panel-detail { font-size: 1rem !important; }
.svc-right-body { font-size: clamp(1rem, 1.2vw, 1.0625rem) !important; }
.svc-right-result { font-size: 1rem !important; }
.svc-tooltip-body, .svc-tooltip-result { font-size: 1rem !important; }
.svc-tooltip-title { font-size: 1.0625rem !important; }
.svc-m-body { font-size: 1rem !important; }
.svc-m-result { font-size: 1rem !important; }
#services .svc-inline-result { font-size: 1rem !important; }
.svc-mobile-detail .svc-inline-result { font-size: 1rem !important; }
.svc-intro-detail { font-size: clamp(1rem, 1.1vw, 1.0625rem) !important; }
.lgc-headline { font-size: clamp(1rem, 1.2vw, 1.0625rem) !important; }
.lgc-detail { font-size: clamp(1rem, 1.1vw, 1.0625rem) !important; }
.lab-grid-label { font-size: clamp(1rem, 1.4vw, 1.25rem) !important; }
.cs-project, .cs-panel-project { font-size: 1rem !important; }
#the-lab .lab-callout-label { font-size: clamp(1.0625rem, 1.4vw, 1.25rem) !important; line-height: 1.35 !important; }
#the-lab .lab-callout-body { font-size: clamp(1rem, 1.25vw, 1.1875rem) !important; }
.svc-right-title { font-size: clamp(1.125rem, 1.5vw, 1.375rem) !important; }
.svc-panel-title { font-size: clamp(1.125rem, 1.5vw, 1.375rem) !important; }
@media (max-width: 480px) {
  .hero-sub { font-size: clamp(1rem, 3.6vw, 1.05rem) !important; }
}

/* — Footnotes → ≥13px — */
.footer-copy, .footer-links a { font-size: 13px !important; }

/* — Mono labels / tags / coords / counters → 12px absolute floor — */
.svc-m-idx, .svc-m-code { font-size: 12px !important; }
.svc-nd-coord { font-size: 12px !important; }
.lab-hb-left, .lab-hb-right, .lab-hb-center,
.lab-fb-left, .lab-fb-right, .lab-fb-center { font-size: 12px !important; }
.lab-card-module, .lab-card-footer { font-size: 12px !important; }
.solve-card::after { font-size: 12px !important; }
.svc-tl-icon { font-size: 12px !important; }
.svc-c-coord, #services .svc-c-coord { font-size: 12px !important; }
.svc-c-label, #services .svc-c-label { font-size: 12px !important; }
.solve-index, .solve-item-num { font-size: 12px !important; }
.section-menu-eyebrow, .section-menu-link .smk { font-size: 12px !important; }
#engineering .eng-callout-idx { font-size: 12px !important; }
#engineering .eng-callout-label { font-size: 12px !important; }
.secreg-label, .secreg-cap { font-size: 12px !important; }
.lab2m-annot-label { font-size: 12px !important; }
.lab2m-foot-strip span { font-size: 12px !important; }
#the-lab .lab-card-num { font-size: 12px !important; }
@media (max-width: 768px) {
  .hero-eyebrow { font-size: 12px !important; }
  .btn { font-size: 12px !important; }
  .secreg { flex-wrap: wrap; }
  .secreg-label { font-size: 12px !important; letter-spacing: 0.14em !important; }
  .lab2m-foot-strip { flex-wrap: wrap; }
  .lab2m-foot-strip span { font-size: 12px !important; letter-spacing: 0.16em !important; }
}

/* ===== v2 block: svc-unified-cards ===== */

    @media (min-width: 1101px) {
      /* Hide the separate body boxes — the name card becomes the full unit */
      #services .svc-pair-wrap .svc-body-box { display: none !important; }
      /* Hide card-to-body connector lines (body boxes are gone); keep circle-to-card lines */
      #svc-bline-01, #svc-bline-02, #svc-bline-03, #svc-bline-04 { display: none !important; }
      /* Single-column pair: one unified card */
      #services .svc-pair-wrap,
      #services .svc-paired-grid-right .svc-pair-wrap {
        grid-template-columns: minmax(0, 1fr) !important;
        grid-template-rows: auto !important;
        max-width: 420px !important;
      }
      #services .svc-paired-grid-left .svc-pair-wrap .svc-name-card,
      #services .svc-paired-grid-right .svc-pair-wrap .svc-name-card {
        grid-column: 1 !important; grid-row: 1 !important;
      }
      /* Un-fix the card dimensions so body + outcome fit inside */
      #services .svc-name-card,
      #services .svc-pair-wrap .svc-name-card {
        width: 100% !important; min-width: 0 !important; max-width: 420px !important;
        height: auto !important; min-height: 0 !important; max-height: none !important;
        padding: 24px 28px 26px !important;
        align-self: center !important;
      }
      /* Show the title+body+outcome stack inside the card */
      #services .svc-name-card .svc-mobile-detail {
        display: flex !important; flex-direction: column; gap: 10px; margin-top: 12px;
      }
      #services .svc-name-card .svc-mobile-detail .svc-inline-body,
      #services .svc-name-card .svc-mobile-detail .svc-inline-result { display: block !important; }
      /* SVC code moves to top-right (bottom pin clashes with the grown card) */
      #services .svc-inline-card { position: relative !important; }
      #services .svc-inline-card .svc-nd-coord {
        position: absolute !important; top: 16px !important; right: 16px !important;
        bottom: auto !important; left: auto !important; margin: 0 !important; text-align: right !important;
      }
      /* Edge diamonds pointed at the removed body boxes — hide */
      #services .svc-nd-edge-diamond { display: none !important; }
    }
    /* Outcome line: >=16px + persistent warm-gradient bold treatment (was only on body-box) */
    #services .svc-inline-result { font-size: 16px !important; line-height: 1.55 !important; }
    #services .svc-name-card .svc-mobile-detail .svc-inline-result {
      font-weight: 700 !important;
      background: linear-gradient(120deg, #FFE2C0, #C47D6A, #FFE2C0) !important;
      background-size: 200% 100% !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      background-clip: text !important;
      animation: svcWarmShift 4s ease-in-out infinite alternate !important;
    }

/* ===== v2 block: pebble-followup-0810b ===== */

  /* ── 1) PROBLEMS WE SOLVE: one continuous background, no seam ──
     The old radial at "20% 10%" was clipped hard at the section's top edge and
     the ::before wash painted a darker block behind the title => visible
     horizontal seam. Fix: feather the top of the section into the page bg and
     move the burgundy glows fully inside the section so nothing clips. */
  #solve {
    background:
      linear-gradient(180deg, #0a0a0f 0%, rgba(10,10,15,0) 480px),
      radial-gradient(1200px 760px at 20% 22%, rgba(76,4,29,0.40), transparent 62%),
      radial-gradient(1000px 620px at 85% 48%, rgba(76,4,29,0.28), transparent 62%),
      linear-gradient(180deg, #0d0c14 0%, #0a0a0f 100%) !important;
  }
  /* kill the left-column dark wash block (image is already at 60% opacity) */
  .solve-left-photo::before { background: none !important; }
  .solve-left-photo { background: transparent !important; }
  /* mobile: breathing room under the fixed header so the title never clips */
  @media (max-width: 900px) {
    #solve { padding-top: 96px !important; }
  }

  /* ── 2) HERO = same as home page (Theresa 18:52; supersedes projector-beam rework).
     Un-does the v2-overrides layout deltas so #hero matches index.html:
     centered column, original padding, no background image. */
  #hero { justify-content: center; padding: 108px 8vw 120px; }
  #hero .hero-sub { margin-top: 0; }
  .hero-beam-bg { display: none !important; }

  /* Hero title matched to the index.html hero size (base clamp restored;
     supersedes the 2026-07-24 desktop -25% reduction) */
  @media (min-width: 901px) {
    .hero-title { font-size: clamp(72px, 13vw, 200px) !important; }
  }
  
  /* 390 guard: keep COBBLESTONE off the right edge */
  @media (max-width: 420px) {
    .hero-title { font-size: clamp(26px, 11.6vw, 60px) !important; letter-spacing: 0.08em !important; }
  }

/* ===== v2 block: pebble-whoweare-door-0810 ===== */

  /* ═══ WHO WE ARE (Theresa 18:52) — full-bleed revolving-door photo bg,
     text left over the dark floor area, subject on the right. Supersedes the
     Monet-room image. ═══ */
  /* 19:04 (Theresa): image must reach the TOP and BOTTOM of the section —
     section top padding removed (spacing lives inside the image), facet row
     pulled flush so no dark band before the 01/02/03 block. */
  #engineering { padding-top: 0 !important; }
  #engineering .ww-hero {
    margin-left: calc(50% - 50vw) !important;
    width: 100vw;
    min-height: clamp(560px, 46vw, 860px);
    display: flex;
    align-items: center;
    padding: clamp(130px, 12vw, 190px) 8vw clamp(72px, 8vw, 120px);
    box-sizing: border-box;
    background:
      linear-gradient(to right, rgba(10,10,15,0.94) 0%, rgba(10,10,15,0.72) 30%, rgba(10,10,15,0.28) 55%, rgba(10,10,15,0.02) 78%),
      linear-gradient(to bottom, rgba(10,10,15,0.55) 0%, rgba(10,10,15,0) 22%, rgba(10,10,15,0) 78%, rgba(10,10,15,0.6) 100%),
      url('/whoweare-door-0810.webp') 78% 42% / cover no-repeat;
  }
  #engineering .ww-hero-art { display: none !important; }
  #engineering .ww-hero-text { margin-left: 0 !important; width: min(600px, 46%) !important; }
  #engineering .ww-fac-row { margin-top: 0 !important; padding-top: 64px; }
  @media (max-width: 900px) {
    #engineering .ww-hero {
      display: block;
      min-height: 0;
      padding: 140px 6vw 62vw; /* bottom padding reserves room so the woman/door stay visible */
      background:
        linear-gradient(to bottom, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.72) 34%, rgba(10,10,15,0.12) 62%, rgba(10,10,15,0.05) 100%),
        url('/whoweare-door-0810.webp') 72% 30% / cover no-repeat;
    }
    #engineering .ww-hero-text { width: 100% !important; }
    #engineering .ww-fac-row { margin-top: 0 !important; padding-top: 40px; }
  }
  @media (max-width: 600px) {
    /* phones: cover-fit shows the full image height, which parks the woman
       behind the headline. Oversize the backdrop and pin the crop so she
       lands in the clear area below the copy. */
    #engineering .ww-hero {
      padding: 140px 6vw 96vw;
      background:
        linear-gradient(to bottom, rgba(10,10,15,0.94) 0%, rgba(10,10,15,0.78) 30%, rgba(10,10,15,0.18) 55%, rgba(10,10,15,0.05) 100%),
        url('/whoweare-door-0810.webp') 67% 4% / auto 175% no-repeat;
      background-color: #0a0a0f;
    }
  }

  /* ═══ 19:12 (Theresa): 01/02/03 facet row INCLUDED in the Who We Are section,
     layered ON TOP of the full-bleed image (no plain dark band below). The image
     block gains bottom room; the facet row pulls up into it. ═══ */
  #engineering { padding-bottom: 0 !important; }
  #engineering .ww-hero { padding-bottom: clamp(300px, 26vw, 380px); }
  #engineering .ww-fac-row {
    position: relative; z-index: 2;
    margin-top: calc(-1 * clamp(250px, 22vw, 320px)) !important;
    padding-top: 0;
    padding-bottom: 64px;
  }
  @media (max-width: 900px) {
    #engineering .ww-hero { padding-bottom: 112vw; }
    #engineering .ww-fac-row {
      margin-top: -52vw !important;
      padding: 28px 6vw 44px;
      background: linear-gradient(to top, rgba(10,10,15,0.55) 55%, rgba(10,10,15,0) 100%);
    }
  }
  @media (max-width: 600px) {
    #engineering .ww-hero { padding-bottom: 185vw; }
    /* facet stack is ~135vw tall at phone widths — pull it fully onto the image */
    #engineering .ww-fac-row { margin-top: -165vw !important; }
  }

  /* ═══ 19:27 (Theresa) ═══ */
  /* 1) SOLVE: same background treatment as the hero — page-bg base (#0a0a0f)
     with the hero's three orb gradients (magenta / lavender / terracotta at the
     hero's exact colors+alphas). Base matches the page bg => seamless by
     construction. Replaces the burgundy gradient. */
  #solve {
    background:
      radial-gradient(ellipse 60vw 60vw at 85% 6%, rgba(168,5,58,0.12), transparent 70%),
      radial-gradient(ellipse 40vw 40vw at 5% 88%, rgba(127,131,167,0.12), transparent 70%),
      radial-gradient(ellipse 30vw 30vw at 45% 45%, rgba(196,125,106,0.10), transparent 70%),
      #0a0a0f !important;
  }
  /* skyline image: raised closer to the title, opacity dropped below 60% */
  .solve-left-photo img { opacity: 0.42 !important; }
  @media (min-width: 901px) {
    .solve-left-photo img { height: 80% !important; }
  }
  @media (max-width: 900px) {
    .solve-left-photo img { height: 74% !important; }
  }

  /* 2) WHO WE ARE: more air between the body copy and the 01/02/03 row,
     plus a darker scrim behind the row for legibility over the photo. */
  #engineering .ww-hero { padding-bottom: clamp(360px, 30vw, 450px); }
  #engineering .ww-fac-row {
    background: linear-gradient(to top, rgba(10,10,15,0.72) 0%, rgba(10,10,15,0.5) 55%, rgba(10,10,15,0) 100%);
    padding-top: 36px;
  }
  @media (max-width: 900px) {
    #engineering .ww-hero { padding-bottom: 122vw; }
    #engineering .ww-fac-row { background: linear-gradient(to top, rgba(10,10,15,0.8) 55%, rgba(10,10,15,0) 100%); }
  }
  @media (max-width: 600px) {
    #engineering .ww-hero { padding-bottom: 195vw; }
  }


/* ============================================================
   Carried over from home.css: contact overlay, contact form,
   and the QA feedback overlay (which reuses these classes).
   v2 ships no overlay styles; appended last to win conflicts.
   ============================================================ */
/* ── Contact / feedback overlay ── */

    .contact-overlay {
      position: fixed; inset: 0;
      display: none;
      align-items: center; justify-content: center;
      z-index: 10000;
      padding: 20px;
    }
    .contact-overlay.is-open { display: flex; }
    .contact-overlay-backdrop {
      position: absolute; inset: 0;
      background: rgba(8,9,18,0.78);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .contact-overlay-card {
      position: relative;
      width: 100%;
      max-width: 640px;
      background: linear-gradient(180deg, #15172a 0%, #0d0e1c 100%);
      border: 1px solid rgba(255,226,192,0.18);
      border-radius: 14px;
      padding: 44px 44px 40px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.55);
      max-height: calc(100vh - 40px);
      overflow-y: auto;
    }
    .contact-overlay-close {
      position: absolute; top: 14px; right: 16px;
      background: transparent; border: 0;
      color: #D9DBF4;
      font-size: 28px; line-height: 1;
      cursor: pointer;
      padding: 4px 10px;
      transition: color 0.15s ease;
    }
    .contact-overlay-close:hover { color: #FFE2C0; }

    .contact-overlay-heading {
      font-family: 'Bebas Neue', 'Barlow Condensed', Impact, sans-serif;
      font-size: clamp(28px, 4vw, 40px);
      letter-spacing: 0.04em;
      color: #FFF1E0;
      margin: 0 0 12px;
      line-height: 1.05;
    }
    .contact-overlay-message {
      color: #D9DBF4;
      font-size: 15px;
      line-height: 1.6;
      margin: 0 0 24px;
    }

    .contact-honeypot {
      position: absolute; left: -9999px; width: 1px; height: 1px;
      overflow: hidden;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 16px;
    }
    .contact-field { display: flex; flex-direction: column; gap: 6px; }
    .contact-field-wide { grid-column: 1 / -1; }
    .contact-field label {
      font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #7F83A7;
    }
    .contact-field input,
    .contact-field textarea,
    .contact-field select {
      width: 100%;
      background: rgba(217,219,244,0.04);
      border: 1px solid rgba(217,219,244,0.18);
      color: #FFF1E0;
      border-radius: 8px;
      padding: 10px 12px;
      font: inherit;
      font-size: 15px;
      transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    }
    .contact-field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
    .contact-field select { appearance: none; -webkit-appearance: none; padding-right: 36px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23D9DBF4' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; }
    .contact-field select option { background: #15172a; color: #FFF1E0; }
    .contact-field input:focus,
    .contact-field textarea:focus,
    .contact-field select:focus {
      outline: none;
      border-color: #FFE2C0;
      background-color: rgba(255,226,192,0.05);
      box-shadow: 0 0 0 3px rgba(255,226,192,0.18);
    }

    .contact-actions {
      display: flex; justify-content: flex-end;
      margin-top: 20px;
    }
    .contact-submit { min-width: 140px; }
    .contact-submit[disabled] { opacity: 0.6; cursor: progress; }

    .contact-form-message {
      margin-top: 14px;
      min-height: 1.4em;
      font-size: 14px;
      color: #C10644;
    }
    .contact-form-message.is-info { color: #D9DBF4; }
    .contact-form-fallback-link {
      color: #FFE2C0;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .contact-form-fallback-link:hover { color: #FFF1E0; }

    .contact-overlay-success {
      text-align: center;
      padding: 20px 0 8px;
    }
    .contact-success-mark {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, #FFE2C0, #C47D6A);
      color: #15172a;
      font-size: 32px;
      line-height: 56px;
      margin: 0 auto 18px;
      font-weight: 700;
    }
    .contact-success-text {
      color: #FFF1E0;
      font-size: 16px;
      line-height: 1.55;
      margin: 0 0 22px;
    }

    @media (max-width: 600px) {
      .contact-overlay-card { padding: 32px 22px 28px; }
      .contact-grid { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      .contact-overlay, .contact-overlay-card { transition: none !important; }
    }


    /* ════════════════════════════════════════════════════════
       CONTACT OVERLAY v2 — restyled creative (scoped to #contactOverlay)
       Adds retro grid, scanlines, vignette, corner accents, status dot,
       gradient heading + divider, terracotta focus, crimson submit.
       Form structure & JS hooks untouched.
       ════════════════════════════════════════════════════════ */

    #contactOverlay { padding: 24px; }

    #contactOverlay .contact-overlay-backdrop {
      background: rgba(12,12,14,0.85);
      z-index: 0;
    }

    #contactOverlay .contact-overlay-grid,
    #contactOverlay .contact-overlay-vignette,
    #contactOverlay .contact-overlay-scanlines {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    #contactOverlay .contact-overlay-grid {
      background-image:
        linear-gradient(rgba(255,226,192,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,226,192,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      z-index: 1;
    }
    #contactOverlay .contact-overlay-vignette {
      background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
      z-index: 2;
    }
    #contactOverlay .contact-overlay-scanlines {
      background: repeating-linear-gradient(
        0deg, transparent, transparent 2px,
        rgba(255,226,192,0.012) 2px, rgba(255,226,192,0.012) 4px
      );
      z-index: 3;
    }

    #contactOverlay .contact-overlay-card {
      position: relative;
      z-index: 5;
      width: 680px;
      max-width: calc(100vw - 48px);
      max-height: calc(100vh - 48px);
      overflow: hidden;
      background: #111116;
      border: 1px solid rgba(255,226,192,0.12);
      border-radius: 6px;
      padding: 48px 44px 50px;
      box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    }

    /* Keep the site's existing top-right logo visible while contact modal is open.
       Desktop only: lift the entire <nav> above the overlay, make its background
       transparent and disable pointer-events, and hide the nav-links so only the
       site's existing logo (.nav-logo / .logo-img) shows in its natural position.
       Lifting just .nav-logo doesn't work because <nav> has z-index:100 which
       creates a stacking context that children can't escape.
       On mobile (≤900px) we don't lift — modal covers nav as before. */
    @media (min-width: 901px) {
      body:has(#contactOverlay.is-open) nav {
        z-index: 10001;
        background: transparent;
        border-bottom-color: transparent;
        pointer-events: none;
      }
      body:has(#contactOverlay.is-open) .nav-links {
        visibility: hidden;
      }
    }
    #contactOverlay .contact-overlay-card::before {
      content: '';
      position: absolute;
      inset: -60px;
      background: radial-gradient(ellipse at center, rgba(196,125,106,0.06) 0%, transparent 70%);
      pointer-events: none;
      z-index: -1;
    }

    #contactOverlay .contact-status-dot {
      position: absolute;
      top: 22px;
      left: 22px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #C47D6A;
      animation: contactStatusPulse 3s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes contactStatusPulse {
      0%, 100% { opacity: 0.4; }
      50%      { opacity: 1; }
    }

    #contactOverlay .contact-overlay-close {
      top: 18px;
      right: 18px;
      width: 36px;
      height: 36px;
      padding: 0;
      font-size: 20px;
      line-height: 1;
      display: grid;
      place-items: center;
      color: #6B6E8A;
      border: 1px solid transparent;
      border-radius: 4px;
      transition: color 0.2s, border-color 0.2s;
    }
    #contactOverlay .contact-overlay-close:hover {
      color: #FFE2C0;
      border-color: rgba(255,226,192,0.12);
    }

    #contactOverlay .contact-overlay-heading {
      font-family: 'Trade Gothic LT Std','Trade Gothic','Barlow Condensed','Arial Narrow',sans-serif;
      font-weight: 700;
      font-size: clamp(24px, 3.2vw, 32px);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: linear-gradient(135deg, #FFE2C0, #C47D6A);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      line-height: 1.15;
      margin: 0 0 16px;
    }
    #contactOverlay .contact-overlay-heading::after {
      content: '';
      display: block;
      width: 80px;
      height: 1px;
      background: linear-gradient(90deg, #C47D6A, transparent);
      margin-top: 16px;
    }

    #contactOverlay .contact-overlay-message {
      font-size: 14px;
      color: #7F83A7;
      line-height: 1.6;
      margin: 0 0 36px;
      max-width: 520px;
    }

    #contactOverlay .contact-grid {
      grid-template-columns: 1fr 1fr;
      gap: 20px 24px;
    }

    #contactOverlay .contact-field { gap: 0; }
    #contactOverlay .contact-field label {
      font-family: 'Trade Gothic LT Std','Trade Gothic','Barlow Condensed',sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #6B6E8A;
      margin-bottom: 8px;
      transition: color 0.2s;
    }
    #contactOverlay .contact-field label::before {
      content: '\203A';
      margin-right: 6px;
      color: #C47D6A;
      opacity: 0;
      transition: opacity 0.2s;
    }
    #contactOverlay .contact-field:focus-within label { color: #C47D6A; }
    #contactOverlay .contact-field:focus-within label::before { opacity: 1; }

    #contactOverlay .contact-field input,
    #contactOverlay .contact-field textarea,
    #contactOverlay .contact-field select {
      background: rgba(255,226,192,0.03);
      border: 1px solid rgba(255,226,192,0.12);
      border-radius: 4px;
      color: #FFE2C0;
      font-size: 15px;
      padding: 12px 14px;
      transition: border-color 0.25s, box-shadow 0.25s;
    }
    #contactOverlay .contact-field input::placeholder,
    #contactOverlay .contact-field textarea::placeholder {
      color: rgba(107,110,138,0.5);
    }
    #contactOverlay .contact-field input:focus,
    #contactOverlay .contact-field textarea:focus,
    #contactOverlay .contact-field select:focus {
      outline: none;
      border-color: #C47D6A;
      background-color: rgba(255,226,192,0.03);
      box-shadow: 0 0 0 2px rgba(196,125,106,0.12);
    }
    #contactOverlay .contact-field textarea {
      min-height: 130px;
      line-height: 1.5;
    }

    #contactOverlay .contact-actions { margin-top: 14px; }

    #contactOverlay .contact-submit,
    #contactOverlay .btn.btn-primary.contact-submit {
      font-family: 'Trade Gothic LT Std','Trade Gothic','Barlow Condensed',sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.3em !important;
      text-transform: uppercase;
      color: #FFF1E0;
      background: #8B1A3C;
      background-image: none;
      border: 1px solid rgba(139,26,60,0.6);
      border-radius: 4px;
      padding: 14px 40px !important;
      animation: none;
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    }
    #contactOverlay .contact-submit:hover {
      background: #a01e3e;
      box-shadow: 0 0 20px rgba(139,26,60,0.3);
      transform: translateY(-1px);
    }
    #contactOverlay .contact-submit:active {
      transform: translateY(0);
      box-shadow: none;
    }

    #contactOverlay .contact-success-mark {
      background: linear-gradient(135deg, #FFE2C0, #C47D6A);
      color: #111116;
    }
    #contactOverlay .contact-success-text { color: #FFE2C0; }

    @media (max-width: 600px) {
      #contactOverlay { padding: 16px; }
      #contactOverlay .contact-overlay-card { padding: 36px 24px 28px; }
      #contactOverlay .contact-overlay-heading { font-size: 22px; }
      #contactOverlay .contact-grid { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      #contactOverlay .contact-status-dot { animation: none; opacity: 0.6; }
    }
