@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Manrope:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700&display=swap');

    :root {
      --font-ar: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --font-display: 'Sora', 'Manrope', system-ui, sans-serif;
      --dark: #02050c;
      --dark-2: #040a14;
      --cyan: #69fff0;
      --cyan-2: #37dac9;
      --text: #fffdf8;
      --muted: rgba(234,241,255,.64);
      --muted-2: rgba(234,241,255,.46);
      --line: rgba(255,255,255,.085);
      --panel: rgba(2,5,12,.76);
      --panel-soft: rgba(255,255,255,.028);
      --section-x: 1.18rem;
      --section-y: clamp(3.35rem, 4.8vw, 4.85rem);
      --section-y-tight: clamp(2.75rem, 4vw, 3.9rem);
      --soft-ease: cubic-bezier(.16, 1, .3, 1);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      overflow-x: hidden;
      font-family: var(--font-ar);
      background: var(--dark);
      color: var(--text);
    }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }

    .page {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      min-height: 100vh;
      background:
        radial-gradient(circle at 50% 4%, rgba(105,255,240,.075), transparent 25rem),
        radial-gradient(circle at 88% 72%, rgba(105,255,240,.045), transparent 25rem),
        var(--dark);
    }

    .global-stars-canvas {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      opacity: .95;
      mix-blend-mode: screen;
    }

    section { position: relative; z-index: 1; }
    .container {
      width: 100%;
      max-width: 78rem;
      margin: 0 auto;
      padding-inline: var(--section-x);
    }

    .text-center { text-align: center; }
    .section-kicker,
    .service-kicker,
    .section-title,
    .hero-title,
    .card-title,
    .module-title,
    .process-title,
    .btn {
      font-family: var(--font-display);
    }

    .service-kicker,
    .section-kicker {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .38rem;
      margin-bottom: .82rem;
      color: rgba(255,255,255,.72);
      font-size: .74rem;
      line-height: 1rem;
      font-weight: 700;
      letter-spacing: .01em;
      text-shadow: 0 8px 34px rgba(0,0,0,.42);
    }

    .service-kicker::before,
    .service-kicker::after,
    .section-kicker::before,
    .section-kicker::after {
      content: "//";
      color: var(--cyan);
      font-weight: 800;
      text-shadow: 0 0 12px rgba(105,255,240,.46), 0 0 28px rgba(105,255,240,.17);
    }

    .hero-title,
    .section-title {
      max-width: 62rem;
      margin: 0 auto;
      color: #fffdf8;
      font-size: clamp(2.7rem, 5.25vw, 5.4rem);
      line-height: 1.04;
      font-weight: 500;
      letter-spacing: -.055em;
      text-align: center;
      text-wrap: balance;
      text-shadow: 0 10px 40px rgba(0,0,0,.48), 0 0 22px rgba(105,255,240,.10);
    }

    .section-title {
      max-width: 43rem;
      font-size: clamp(1.85rem, 4vw, 3.18rem);
      line-height: 1.04;
      letter-spacing: -.05em;
    }

    .accent {
      color: var(--cyan);
      text-shadow: 0 0 18px rgba(105,255,240,.28), 0 0 48px rgba(105,255,240,.10);
    }

    .hero-copy,
    .section-copy {
      max-width: 48rem;
      margin: 1.05rem auto 0;
      color: rgba(234,241,255,.69);
      font-size: clamp(.9rem, 1.08vw, 1.04rem);
      line-height: 1.86;
      text-align: center;
      font-weight: 500;
    }

    .section-copy {
      max-width: 43rem;
      color: rgba(234,241,255,.60);
      font-size: .9rem;
      line-height: 1.75;
    }

    .btn-row {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: .76rem;
      margin-top: clamp(1.35rem, 2.1vw, 1.85rem);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 9.2rem;
      min-height: 2.55rem;
      padding: 0 1.1rem;
      border: 1px solid rgba(255,255,255,.86);
      background: #fff;
      color: #06131a;
      font-size: .82rem;
      line-height: 1;
      font-weight: 700;
      box-shadow: inset 0 -6px 14px rgba(0,0,0,.08), 0 12px 36px rgba(0,0,0,.26), 0 0 28px rgba(105,255,240,.08);
      transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      border-color: rgba(105,255,240,.78);
      background: rgba(255,255,255,.92);
      box-shadow: inset 0 -6px 14px rgba(0,0,0,.08), 0 16px 42px rgba(0,0,0,.34), 0 0 30px rgba(105,255,240,.13);
    }

    .btn-secondary {
      min-width: auto;
      border-color: rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)), rgba(2,5,12,.72);
      color: rgba(255,255,255,.84);
    }

    .btn-secondary:hover {
      color: #fff;
      background: rgba(105,255,240,.055);
    }

    .service-hero {
      position: relative;
      min-height: min(680px, 100svh);
      display: flex;
      align-items: center;
      padding: clamp(3rem, 5vw, 4.6rem) 0 clamp(3.6rem, 5.8vw, 5.2rem);
      overflow: hidden;
    }

    .service-hero::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -5.5rem;
      width: min(980px, 94vw);
      height: 19rem;
      transform: translateX(-50%) perspective(820px) rotateX(68deg);
      transform-origin: center bottom;
      pointer-events: none;
      opacity: .42;
      background-image:
        linear-gradient(rgba(255,255,255,.050) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.046) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.82), transparent 73%);
      z-index: 0;
    }

    .hero-layout {
      position: relative;
      z-index: 2;
      display: grid;
      gap: clamp(2rem, 4vw, 3rem);
      align-items: center;
    }

    .hero-copy-wrap {
      position: relative;
      max-width: 64rem;
      margin: 0 auto;
      text-align: center;
    }

    .hero-copy-wrap::before {
      content: "";
      position: absolute;
      left: 50%;
      top: -2.2rem;
      width: min(560px, 72vw);
      height: 12rem;
      transform: translateX(-50%);
      border-radius: 999px;
      pointer-events: none;
      background: radial-gradient(ellipse at center, rgba(105,255,240,.075), transparent 70%);
      filter: blur(44px);
      opacity: .72;
      z-index: -1;
    }

    .service-card,
    .value-card,
    .process-card,
    .position-panel,
    .module-explorer,
    .dashboard-preview,
    .cta-panel {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,.006)), var(--panel);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 16px 48px rgba(0,0,0,.18);
    }

    .service-card::before,
    .value-card::before,
    .process-card::before,
    .position-panel::before,
    .module-explorer::before,
    .dashboard-preview::before,
    .cta-panel::before {
      content: "";
      position: absolute;
      inset: auto -16% -30% -16%;
      height: 58%;
      pointer-events: none;
      opacity: .20;
      background-image:
        linear-gradient(30deg, rgba(255,255,255,.09) 1px, transparent 1px),
        linear-gradient(150deg, rgba(255,255,255,.07) 1px, transparent 1px);
      background-size: 58px 58px;
      transform: perspective(520px) rotateX(60deg) translateY(10px);
      transform-origin: bottom center;
      mask-image: linear-gradient(to top, rgba(0,0,0,.72), transparent 80%);
      z-index: 0;
    }

    .service-card::after,
    .value-card::after,
    .process-card::after,
    .position-panel::after,
    .module-explorer::after,
    .dashboard-preview::after,
    .cta-panel::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 1px;
      opacity: 0;
      background: linear-gradient(90deg, transparent, rgba(105,255,240,.52), transparent);
      transition: opacity .28s ease;
      z-index: 1;
    }

    .service-card:hover::after,
    .value-card:hover::after,
    .process-card:hover::after,
    .position-panel::after,
    .module-explorer::after,
    .dashboard-preview::after,
    .cta-panel::after { opacity: 1; }

    .service-card > *,
    .value-card > *,
    .process-card > *,
    .position-panel > *,
    .module-explorer > *,
    .dashboard-preview > *,
    .cta-panel > * {
      position: relative;
      z-index: 2;
    }

    .section-divider {
      position: relative;
      padding-block: var(--section-y);
      overflow: hidden;
    }

    .section-divider::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      width: min(920px, 86vw);
      height: 1px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, transparent, rgba(105,255,240,.18), transparent);
      opacity: .95;
    }

    .section-divider::after {
      content: "";
      position: absolute;
      left: 50%;
      top: .5rem;
      width: min(620px, 78vw);
      height: 180px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: radial-gradient(ellipse at center, rgba(105,255,240,.045), transparent 70%);
      filter: blur(45px);
      opacity: .78;
      pointer-events: none;
      z-index: 0;
    }

    .position-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
      gap: clamp(1.45rem, 3.35vw, 2.75rem);
      align-items: center;
    }

    .position-copy-wrap .section-kicker,
    .position-copy-wrap .section-title,
    .position-copy-wrap .section-copy {
      text-align: left;
      margin-left: 0;
      margin-right: auto;
      justify-content: flex-start;
    }

    .position-copy-wrap .section-title {
      max-width: 34rem;
      font-size: clamp(1.62rem, 3.05vw, 2.55rem);
      line-height: 1.08;
      letter-spacing: -.046em;
    }

    .position-copy-wrap .section-copy {
      max-width: 32rem;
      font-size: .88rem;
    }

    .position-panel {
      display: grid;
      gap: .72rem;
      padding: 1.05rem;
    }

    .position-row {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: .78rem;
      align-items: start;
      padding: .95rem;
      border: 1px solid rgba(255,255,255,.065);
      background: rgba(255,255,255,.022);
    }

    .position-icon {
      width: 1.35rem;
      height: 1.35rem;
      display: grid;
      place-items: center;
      border: 1px solid rgba(105,255,240,.22);
      background: rgba(105,255,240,.075);
      color: var(--cyan);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 0 18px rgba(105,255,240,.08);
    }

    .position-icon::before {
      content: "✓";
      font-size: .74rem;
      line-height: 1;
      font-weight: 900;
      text-shadow: 0 0 14px rgba(105,255,240,.36);
    }

    .position-title {
      color: #fff;
      font-size: .92rem;
      line-height: 1.25;
      font-weight: 700;
      letter-spacing: -.02em;
    }

    .position-text {
      margin-top: .32rem;
      color: rgba(255,255,255,.52);
      font-size: .78rem;
      line-height: 1.74;
      font-weight: 600;
    }

    .dashboard-preview {
      width: min(100%, 56rem);
      margin: 2.15rem auto 0;
      padding: .92rem;
    }

    .dashboard-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: .66rem;
      border: 1px solid rgba(255,255,255,.07);
      background: rgba(255,255,255,.024);
    }

    .window-dots { display: flex; gap: .36rem; }
    .window-dots span {
      width: .45rem;
      height: .45rem;
      border-radius: 999px;
      background: rgba(255,255,255,.22);
    }

    .dashboard-title {
      color: rgba(255,255,255,.74);
      font-family: var(--font-display);
      font-size: .74rem;
      font-weight: 700;
    }

    .dashboard-status {
      display: inline-flex;
      align-items: center;
      gap: .42rem;
      color: rgba(105,255,240,.9);
      font-size: .66rem;
      font-weight: 700;
    }

    .dashboard-status::before {
      content: "";
      width: .42rem;
      height: .42rem;
      background: var(--cyan);
      box-shadow: 0 0 16px rgba(105,255,240,.42);
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: minmax(160px,.46fr) minmax(0,1fr);
      gap: .72rem;
      margin-top: .72rem;
    }

    .sidebar-list,
    .screen-card,
    .chart-panel {
      border: 1px solid rgba(255,255,255,.07);
      background: rgba(255,255,255,.024);
    }

    .sidebar-list {
      display: grid;
      gap: .48rem;
      padding: .66rem;
    }

    .side-row {
      display: flex;
      align-items: center;
      gap: .5rem;
      min-height: 2.05rem;
      padding: 0 .56rem;
      color: rgba(255,255,255,.52);
      font-size: .7rem;
      border: 1px solid rgba(255,255,255,.045);
      background: rgba(2,5,12,.32);
    }

    .side-row.active {
      color: #fff;
      border-color: rgba(105,255,240,.18);
      background: rgba(105,255,240,.055);
    }

    .side-row span {
      width: .42rem;
      height: .42rem;
      background: rgba(255,255,255,.24);
    }

    .side-row.active span {
      background: var(--cyan);
      box-shadow: 0 0 12px rgba(105,255,240,.24);
    }

    .screen-card {
      padding: .72rem;
      min-height: 10.2rem;
    }

    .screen-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: .75rem;
      margin-bottom: .82rem;
    }

    .screen-heading {
      color: #fff;
      font-family: var(--font-display);
      font-size: .94rem;
      letter-spacing: -.03em;
    }

    .pill {
      min-height: 1.48rem;
      display: inline-flex;
      align-items: center;
      padding: 0 .58rem;
      border: 1px solid rgba(105,255,240,.18);
      color: rgba(105,255,240,.88);
      background: rgba(105,255,240,.055);
      font-size: .64rem;
      font-weight: 700;
    }

    .screen-rows { display: grid; gap: .48rem; }
    .screen-row {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: .75rem;
      min-height: 1.95rem;
      padding: 0 .58rem;
      border: 1px solid rgba(255,255,255,.05);
      background: rgba(2,5,12,.38);
    }

    .screen-row span:first-child {
      color: rgba(255,255,255,.62);
      font-size: .69rem;
      font-weight: 700;
    }

    .screen-row span:last-child {
      color: rgba(255,255,255,.38);
      font-size: .63rem;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    }

    .chart-panel {
      margin-top: .72rem;
      min-height: 5.4rem;
      padding: .76rem;
      display: flex;
      align-items: flex-end;
      gap: .38rem;
    }

    .bar {
      flex: 1;
      height: var(--h);
      min-height: 18%;
      background: linear-gradient(180deg, rgba(105,255,240,.66), rgba(105,255,240,.08));
      box-shadow: 0 0 18px rgba(105,255,240,.08);
      opacity: .86;
    }


    #dashboard {
      padding-block: clamp(3.35rem, 5.2vw, 5.05rem);
    }

    .dashboard-showcase {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
      align-items: center;
      gap: clamp(1.75rem, 4.6vw, 4.15rem);
    }

    .dashboard-visual {
      position: relative;
      min-height: clamp(22rem, 37vw, 34rem);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(1.1rem, 2.2vw, 1.7rem);
    }

    .dashboard-visual::before {
      content: "";
      position: absolute;
      inset: 10% 10% 14% 10%;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(105,255,240,.24), rgba(105,255,240,.08) 28%, transparent 68%);
      filter: blur(40px);
      opacity: .82;
      pointer-events: none;
    }

    .dashboard-visual::after {
      content: "";
      position: absolute;
      inset: auto 4% 4% 4%;
      height: 48%;
      opacity: .16;
      background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
      background-size: 44px 44px;
      transform: perspective(800px) rotateX(72deg);
      transform-origin: center bottom;
      mask-image: linear-gradient(to top, rgba(0,0,0,.78), transparent 86%);
      pointer-events: none;
    }

    .dashboard-visual img {
      position: relative;
      z-index: 2;
      width: min(100%, 36rem);
      max-height: 33rem;
      object-fit: contain;
      filter: drop-shadow(0 28px 60px rgba(0,0,0,.45)) drop-shadow(0 0 34px rgba(105,255,240,.14));
    }

    .dashboard-copy-wrap {
      position: relative;
      z-index: 2;
      max-width: 35.5rem;
      margin-left: auto;
    }

    .dashboard-copy-wrap .section-kicker {
      justify-content: flex-start;
      text-align: left;
      margin-left: 0;
      margin-right: auto;
    }

    .dashboard-headline {
      margin: 0;
      color: #fffdf8;
      font-family: var(--font-display);
      font-size: clamp(45px, 3.85vw, 51px);
      line-height: 1.02;
      font-weight: 500;
      letter-spacing: -.065em;
      text-wrap: balance;
      text-align: left;
      text-shadow: 0 10px 40px rgba(0,0,0,.48), 0 0 22px rgba(105,255,240,.10);
    }

    .dashboard-headline .accent-line {
      display: block;
      color: var(--cyan);
      text-shadow: 0 0 18px rgba(105,255,240,.32), 0 0 48px rgba(105,255,240,.14);
    }

    .dashboard-feature-list {
      display: grid;
      gap: 1.18rem;
      margin-top: 1.65rem;
    }

    .dashboard-feature {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: .95rem;
      align-items: start;
    }

    .dashboard-feature-icon {
      width: 1.78rem;
      height: 1.78rem;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.03);
      color: var(--cyan);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 0 18px rgba(105,255,240,.06);
      flex-shrink: 0;
    }

    .dashboard-feature-icon svg {
      width: .88rem;
      height: .88rem;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .dashboard-feature-title {
      color: #fff;
      font-family: var(--font-display);
      font-size: .92rem;
      line-height: 1.2;
      font-weight: 600;
      letter-spacing: -.03em;
    }

    .dashboard-feature-copy {
      margin-top: .34rem;
      color: rgba(255,255,255,.5);
      font-size: .78rem;
      line-height: 1.7;
      font-weight: 500;
    }

    .dashboard-actions {
      justify-content: flex-start;
      margin-top: 1.6rem;
    }

    .dashboard-actions .btn-secondary {
      min-width: 0;
      padding-inline: 0;
      border: 0;
      background: transparent;
      color: rgba(255,255,255,.84);
      box-shadow: none;
    }

    .dashboard-actions .btn-secondary:hover {
      transform: translateY(-2px);
      color: #fff;
      background: transparent;
      box-shadow: none;
    }

    .services-grid,
    .value-grid,
    .process-grid {
      position: relative;
      z-index: 1;
      display: grid;
      gap: .82rem;
      margin-top: clamp(2.15rem, 3.45vw, 2.95rem);
    }

    .services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .value-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }
    .process-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }

    .service-card,
    .value-card,
    .process-card {
      min-height: 15rem;
      display: flex;
      flex-direction: column;
      padding: 1.02rem .95rem .92rem;
      transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
    }

    .value-card { min-height: 11.6rem; }
    .process-card { min-height: 11.2rem; cursor: pointer; }

    .process-icon {
      width: 2.05rem;
      height: 2.05rem;
      display: grid;
      place-items: center;
      margin-bottom: .2rem;
      border: 1px solid rgba(105,255,240,.18);
      background: rgba(105,255,240,.055);
      color: var(--cyan);
      box-shadow: 0 0 22px rgba(105,255,240,.07);
    }

    .process-icon svg {
      width: 1.08rem;
      height: 1.08rem;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-card:hover,
    .value-card:hover,
    .process-card:hover,
    .process-card.active {
      transform: translateY(-4px);
      border-color: rgba(105,255,240,.20);
      background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.008)), rgba(2,5,12,.84);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 22px 72px rgba(0,0,0,.28), 0 0 24px rgba(105,255,240,.045);
    }

    .card-num,
    .process-num {
      color: rgba(105,255,240,.84);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: .68rem;
      line-height: .94rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-shadow: 0 0 12px rgba(105,255,240,.18);
    }

    .card-title,
    .process-title {
      margin-top: .78rem;
      margin-bottom: .54rem;
      color: #fff;
      font-size: clamp(.94rem, 1.12vw, 1.08rem);
      line-height: 1.22;
      font-weight: 600;
      letter-spacing: -.03em;
      text-shadow: 0 8px 28px rgba(0,0,0,.30);
    }

    .card-copy,
    .process-copy {
      color: rgba(255,255,255,.54);
      font-size: .74rem;
      line-height: 1.72;
      font-weight: 600;
    }

    .service-icon,
    .value-icon {
      width: 2.15rem;
      height: 2.15rem;
      display: grid;
      place-items: center;
      margin-top: auto;
      border: 1px solid rgba(105,255,240,.17);
      background: rgba(105,255,240,.055);
      color: var(--cyan);
      font-family: var(--font-display);
      font-size: .78rem;
      font-weight: 800;
      box-shadow: 0 0 22px rgba(105,255,240,.07);
    }

    .value-icon { margin: 0 0 1.05rem; }
    .value-icon svg {
      width: 1.16rem;
      height: 1.16rem;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.85;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 10px rgba(105,255,240,.16));
    }


    .module-explorer {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(220px, 280px) minmax(0,1fr);
      min-height: 480px;
      margin-top: clamp(2.15rem, 3.45vw, 2.95rem);
      direction: ltr;
    }

    .module-tabs {
      display: flex;
      flex-direction: column;
      border-inline-end: 1px solid rgba(255,255,255,.075);
      max-height: 560px;
      overflow: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(105,255,240,.22) transparent;
    }

    .module-tabs::-webkit-scrollbar { width: 7px; }
    .module-tabs::-webkit-scrollbar-track { background: transparent; }
    .module-tabs::-webkit-scrollbar-thumb { background: rgba(105,255,240,.22); }

    .module-tab {
      width: 100%;
      min-height: 56px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: .75rem;
      padding: .78rem .9rem;
      border: 0;
      border-bottom: 1px solid rgba(255,255,255,.065);
      background: transparent;
      color: rgba(255,255,255,.54);
      text-align: start;
      cursor: pointer;
      transition: background .18s ease, color .18s ease, box-shadow .18s ease;
    }

    .module-tab:hover {
      color: #fff;
      background: rgba(255,255,255,.022);
    }

    .module-tab.is-active {
      color: #fff;
      background: rgba(105,255,240,.055);
      box-shadow: inset 3px 0 0 var(--cyan);
    }

    .module-tab strong {
      display: block;
      font-family: var(--font-display);
      font-size: .92rem;
      line-height: 1.28;
      font-weight: 600;
      letter-spacing: -.015em;
    }

    .module-tab-arrow {
      color: var(--cyan);
      direction: ltr;
      opacity: 0;
      transform: translateX(-6px);
      transition: opacity .18s ease, transform .18s ease;
    }

    .module-tab.is-active .module-tab-arrow {
      opacity: 1;
      transform: translateX(0);
    }


    .module-tab-label {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      min-width: 0;
    }

    .module-detail {
      min-width: 0;
      padding: clamp(1.15rem, 2vw, 1.55rem);
    }

    .module-meta {
      color: rgba(105,255,240,.86);
      font-family: var(--font-display);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .02em;
      direction: ltr;
      text-align: start;
    }

    .module-title {
      max-width: 42rem;
      margin-top: .75rem;
      color: #fff;
      font-size: clamp(1.32rem, 2.6vw, 2.18rem);
      line-height: 1.18;
      font-weight: 500;
      letter-spacing: -.04em;
      text-wrap: balance;
    }

    .module-copy {
      max-width: 48rem;
      margin-top: .85rem;
      color: rgba(255,255,255,.58);
      font-size: .88rem;
      line-height: 1.82;
      font-weight: 600;
    }

    .module-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: .72rem .95rem;
      margin-top: 1.25rem;
      list-style: none;
    }

    .module-point {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: .62rem;
      align-items: start;
      color: rgba(255,255,255,.72);
      font-size: .8rem;
      line-height: 1.68;
      font-weight: 700;
    }

    .module-point::before {
      content: "";
      width: .42rem;
      height: .42rem;
      margin-top: .68rem;
      background: var(--cyan);
      box-shadow: 0 0 0 5px rgba(105,255,240,.075), 0 0 14px rgba(105,255,240,.20);
    }

    .module-note {
      margin-top: 1.1rem;
      padding: .9rem 1rem;
      border: 1px solid rgba(105,255,240,.14);
      background: rgba(105,255,240,.045);
      color: rgba(210,255,250,.86);
      font-size: .82rem;
      line-height: 1.75;
      font-weight: 800;
    }

    .mobile-module-detail { display: none; }

    .cta-section {
      position: relative;
      z-index: 1;
      padding: var(--section-y) 0 clamp(4.2rem, 5.7vw, 5.55rem);
      overflow: visible;
    }

    .cta-panel {
      max-width: 78rem;
      margin: 0 auto;
      padding: clamp(2.8rem, 4.65vw, 4.2rem) 1.12rem;
      text-align: center;
    }

    .cta-note {
      margin-top: 1rem;
      color: rgba(255,255,255,.34);
      font-size: .72rem;
      font-weight: 700;
    }

    .dynamic-ready .reveal {
      --reveal-x: 0px;
      --reveal-y: 34px;
      --reveal-scale: .985;
      opacity: 0;
      filter: blur(10px);
      transform: perspective(1100px) translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
      transform-origin: center;
      transition: opacity .82s var(--soft-ease), filter .82s var(--soft-ease), transform .82s var(--soft-ease), border-color .28s ease, box-shadow .28s ease, background .28s ease;
      transition-delay: var(--delay,0ms);
      will-change: opacity, filter, transform;
    }

    .dynamic-ready .reveal[data-animate="left"] { --reveal-x: -42px; --reveal-y: 16px; }
    .dynamic-ready .reveal[data-animate="right"] { --reveal-x: 42px; --reveal-y: 16px; }
    .dynamic-ready .reveal[data-animate="zoom"] { --reveal-y: 18px; --reveal-scale: .94; }
    .dynamic-ready .reveal.is-visible {
      --reveal-x: 0px;
      --reveal-y: 0px;
      --reveal-scale: 1;
      opacity: 1;
      filter: blur(0);
    }

    .dynamic-ready .accent,
    .dynamic-ready .section-kicker,
    .dynamic-ready .service-kicker {
      animation: accentGlow 3.6s ease-in-out infinite alternate;
    }

    @keyframes accentGlow {
      from { text-shadow: 0 0 14px rgba(105,255,240,.22), 0 0 38px rgba(105,255,240,.08); }
      to { text-shadow: 0 0 24px rgba(105,255,240,.42), 0 0 68px rgba(105,255,240,.17); }
    }


    @media (max-width: 1180px) {
      .dashboard-showcase {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 2.15rem;
      }

      .dashboard-visual img {
        width: min(100%, 30rem);
      }
    }

    @media (max-width: 900px) {
      .dashboard-showcase {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
      }

      .dashboard-copy-wrap {
        max-width: 42rem;
        margin-inline: auto;
      }

      .dashboard-copy-wrap .section-kicker,
      .dashboard-headline,
      .dashboard-feature,
      .dashboard-actions {
        text-align: center;
      }

      .dashboard-copy-wrap .section-kicker,
      .dashboard-actions {
        justify-content: center;
        margin-inline: auto;
      }

      .dashboard-feature {
        grid-template-columns: 1fr;
        justify-items: center;
      }

      .dashboard-feature-copy {
        max-width: 34rem;
      }

      .dashboard-visual {
        order: 1;
        min-height: 19rem;
        width: 100%;
      }

      .dashboard-copy-wrap {
        order: 2;
      }
    }

    @media (max-width: 560px) {
      .dashboard-headline {
        font-size: clamp(1.72rem, 9.8vw, 2.25rem);
        line-height: 1.06;
      }

      .dashboard-feature-title {
        font-size: .88rem;
      }

      .dashboard-feature-copy {
        font-size: .74rem;
        line-height: 1.64;
      }

      .dashboard-actions {
        width: min(100%, 22rem);
      }

      .dashboard-actions .btn-secondary,
      .dashboard-actions .btn {
        width: 100%;
        justify-content: center;
      }
    }

    @media (max-width: 1180px) {
      .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
      .value-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
      .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
      .module-explorer { grid-template-columns: minmax(200px, 240px) minmax(0,1fr); }
    }

    @media (max-width: 900px) {
      .position-grid { grid-template-columns: 1fr; }
      .position-copy-wrap .section-kicker,
      .position-copy-wrap .section-title,
      .position-copy-wrap .section-copy {
        text-align: center;
        margin-inline: auto;
        justify-content: center;
      }
      .dashboard-grid { grid-template-columns: 1fr; }
      .module-explorer { display: block; min-height: auto; }
      .module-tabs { max-height: none; overflow: visible; border-inline-end: 0; }
      .module-detail { display: none; }
      .mobile-module-detail {
        display: none;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,.065);
        background: rgba(255,255,255,.012);
      }
      .mobile-module-detail.is-active { display: block; }
      .module-points { grid-template-columns: 1fr; }
    }

    @media (max-width: 680px) {
      :root { --section-x: .95rem; --section-y: 3rem; --section-y-tight: 2.7rem; }
      .service-hero { min-height: auto; padding: 2.75rem 0 3.35rem; }
      .service-hero::after { bottom: -6.4rem; opacity: .30; }
      .hero-title { font-size: clamp(2.25rem, 12vw, 3.05rem); line-height: 1.12; letter-spacing: -.045em; }
      .section-title { font-size: clamp(1.55rem, 9.4vw, 2.28rem); line-height: 1.08; }
      .hero-copy,
      .section-copy { font-size: .82rem; line-height: 1.7; }
      .services-grid,
      .value-grid,
      .process-grid { grid-template-columns: 1fr; }
      .btn { width: 100%; }
      .service-card,
      .value-card,
      .process-card { min-height: auto; padding: .92rem; }
      .dashboard-preview { padding: .76rem; }
      .screen-header { align-items: flex-start; flex-direction: column; }
      .screen-row { grid-template-columns: 1fr; padding-block: .48rem; }
      .module-title { font-size: 1.28rem; }
      .module-copy { font-size: .8rem; }
    }


    /* Responsive polish */
    @media (max-width: 1024px) {
      .container { max-width: 58rem; }
      .position-grid {
        grid-template-columns: 1fr;
        max-width: 48rem;
      }
      .position-copy-wrap .section-kicker,
      .position-copy-wrap .section-title,
      .position-copy-wrap .section-copy {
        text-align: center;
        margin-inline: auto;
        justify-content: center;
      }
      .service-hero {
        min-height: auto;
        padding: clamp(3.2rem, 7vw, 4.6rem) 0 clamp(3.2rem, 7vw, 4.8rem);
      }
      .hero-title {
        max-width: 48rem;
        font-size: clamp(2.45rem, 6.7vw, 4.25rem);
      }
      .dashboard-preview { width: min(100%, 50rem); }
      .service-card,
      .value-card,
      .process-card { min-height: 12.4rem; }
    }

    @media (max-width: 900px) {
      .section-divider { padding-block: clamp(2.75rem, 7vw, 3.75rem); }
      .service-hero::after {
        width: 112vw;
        height: 15rem;
        bottom: -5.8rem;
        opacity: .30;
        background-size: 44px 44px;
      }
      .hero-copy-wrap { max-width: 47rem; }
      .hero-copy-wrap::before {
        width: min(520px, 86vw);
        height: 10rem;
        top: -1.55rem;
        opacity: .55;
      }
      .position-panel { padding: .82rem; }
      .position-row { padding: .82rem; }
      .dashboard-preview { margin-top: 1.55rem; }
      .dashboard-grid { gap: .62rem; }
      .sidebar-list {
        grid-template-columns: repeat(5, minmax(8rem, 1fr));
        overflow-x: auto;
        scrollbar-width: thin;
      }
      .side-row {
        min-width: 8rem;
        justify-content: center;
        white-space: nowrap;
      }
      .module-explorer {
        overflow: hidden;
      }
      .module-tab {
        min-height: 52px;
        padding: .72rem .82rem;
      }
      .mobile-module-detail {
        padding: .98rem .9rem 1.1rem;
      }
      .module-title { max-width: 100%; }
      .module-copy { max-width: 100%; }
      .module-note { padding: .78rem .82rem; }
      .cta-panel { padding-inline: 1rem; }
    }

    @media (max-width: 760px) {
      :root {
        --section-x: 1rem;
        --section-y: 3.05rem;
        --section-y-tight: 2.55rem;
      }
      .service-kicker,
      .section-kicker {
        margin-bottom: .7rem;
        font-size: .68rem;
        line-height: .95rem;
      }
      .hero-title {
        max-width: 38rem;
        font-size: clamp(2.12rem, 9.4vw, 3.25rem);
        line-height: 1.08;
        letter-spacing: -.046em;
      }
      .section-title {
        max-width: 34rem;
        font-size: clamp(1.58rem, 7.8vw, 2.45rem);
        line-height: 1.08;
      }
      .hero-copy,
      .section-copy {
        font-size: .82rem;
        line-height: 1.7;
      }
      .btn-row {
        width: min(100%, 25rem);
        margin-inline: auto;
        gap: .62rem;
      }
      .btn {
        min-height: 2.65rem;
        width: 100%;
      }
      .dashboard-topbar {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
      }
      .dashboard-title {
        order: 3;
        width: 100%;
      }
      .screen-card { min-height: auto; }
      .chart-panel { min-height: 4.7rem; }
      .services-grid,
      .value-grid,
      .process-grid { gap: .72rem; }
      .service-card,
      .value-card,
      .process-card {
        min-height: auto;
        padding: .9rem;
      }
      .module-explorer { margin-top: 1.55rem; }
      .module-tab strong { font-size: .84rem; }
      .module-tab-arrow { opacity: .55; transform: none; }
      .module-points {
        gap: .55rem;
        margin-top: .92rem;
      }
      .module-point {
        font-size: .76rem;
        line-height: 1.58;
      }
      .module-point::before { margin-top: .54rem; }
      .cta-section { padding-bottom: 3.6rem; }
      .cta-panel { padding-block: 2.45rem; }
    }

    @media (max-width: 560px) {
      .page {
        background:
          radial-gradient(circle at 50% 0%, rgba(105,255,240,.055), transparent 18rem),
          var(--dark);
      }
      .service-hero {
        padding: 2.45rem 0 2.8rem;
      }
      .service-hero::after {
        bottom: -7rem;
        height: 13rem;
        opacity: .22;
        background-size: 34px 34px;
      }
      .hero-title {
        font-size: clamp(2rem, 12vw, 2.75rem);
        line-height: 1.1;
      }
      .services-grid,
      .value-grid,
      .process-grid {
        grid-template-columns: 1fr;
      }
      .position-row {
        grid-template-columns: 1fr;
        gap: .58rem;
      }
      .position-icon {
        width: 1.2rem;
        height: 1.2rem;
      }
      .dashboard-preview {
        padding: .58rem;
      }
      .sidebar-list {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(7.4rem, 1fr);
        padding: .52rem;
      }
      .side-row {
        min-width: 7.4rem;
        min-height: 1.9rem;
        font-size: .66rem;
      }
      .screen-card,
      .chart-panel {
        padding: .62rem;
      }
      .screen-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: .62rem;
      }
      .screen-row {
        grid-template-columns: 1fr;
        align-items: start;
        gap: .16rem;
        min-height: auto;
        padding: .5rem .55rem;
      }
      .module-tab {
        min-height: 48px;
        padding: .66rem .72rem;
      }
      .mobile-module-detail {
        padding: .85rem .75rem 1rem;
      }
      .module-title {
        margin-top: .55rem;
        font-size: 1.18rem;
        line-height: 1.2;
      }
      .module-copy {
        margin-top: .62rem;
        font-size: .77rem;
        line-height: 1.62;
      }
      .module-note {
        margin-top: .8rem;
        font-size: .75rem;
        line-height: 1.58;
      }
    }

    @media (max-width: 380px) {
      :root { --section-x: .82rem; }
      .hero-title { font-size: 1.92rem; }
      .section-title { font-size: 1.42rem; }
      .btn { min-width: 0; padding-inline: .9rem; }
      .dashboard-status { width: 100%; justify-content: center; }
      .module-tab { grid-template-columns: minmax(0,1fr) auto; }
    }
      #problem .position-copy-wrap {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      #problem .position-copy-wrap .section-kicker {
        width: fit-content;
        margin-inline: auto;
        align-self: center;
        justify-content: center;
        text-align: center;
      }

      #problem .position-copy-wrap .section-title,
      #problem .position-copy-wrap .section-copy {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
      }
    }

    /* Balanced section spacing */
    :root {
      --section-y: clamp(2.8rem, 4.1vw, 4.15rem);
      --section-y-tight: clamp(2.25rem, 3.4vw, 3.25rem);
    }

    .service-hero {
      padding: clamp(2.8rem, 4.8vw, 4.1rem) 0 clamp(2.95rem, 5vw, 4.35rem);
    }

    .section-divider {
      padding-block: var(--section-y);
    }

    .section-divider + .section-divider {
      padding-top: var(--section-y-tight);
    }

    .section-divider::after {
      height: 140px;
      opacity: .58;
    }

    .section-copy {
      margin-top: .82rem;
    }

    .hero-copy,
    .section-copy {
      margin-top: .9rem;
    }

    .btn-row {
      margin-top: clamp(1.1rem, 1.8vw, 1.55rem);
    }

    .dashboard-preview,
    .module-explorer,
    .services-grid,
    .value-grid,
    .process-grid {
      margin-top: clamp(1.65rem, 2.8vw, 2.35rem);
    }

    .position-grid {
      gap: clamp(1.15rem, 2.7vw, 2.15rem);
    }

    .position-panel {
      gap: .62rem;
    }

    .cta-section {
      padding: var(--section-y-tight) 0 clamp(3.2rem, 4.8vw, 4.65rem);
    }

    .cta-panel {
      padding-block: clamp(2.25rem, 4vw, 3.55rem);
    }

    @media (max-width: 1024px) {
      :root {
        --section-y: clamp(2.45rem, 5.2vw, 3.45rem);
        --section-y-tight: clamp(2.15rem, 4.5vw, 3rem);
      }

      .service-hero {
        padding: clamp(2.55rem, 6vw, 3.65rem) 0 clamp(2.65rem, 6vw, 3.85rem);
      }

      .section-divider,
      .section-divider + .section-divider {
        padding-block: var(--section-y);
      }

      .dashboard-preview,
      .module-explorer,
      .services-grid,
      .value-grid,
      .process-grid {
        margin-top: clamp(1.35rem, 3.4vw, 1.95rem);
      }
    }

    @media (max-width: 680px) {
      :root {
        --section-y: 2.55rem;
        --section-y-tight: 2.2rem;
      }

      .service-hero {
        padding: 2.2rem 0 2.45rem;
      }

      .section-divider,
      .section-divider + .section-divider {
        padding-block: 2.35rem;
      }

      .section-divider::after {
        height: 105px;
        opacity: .42;
      }

      .service-kicker,
      .section-kicker {
        margin-bottom: .58rem;
      }

      .hero-copy,
      .section-copy {
        margin-top: .68rem;
      }

      .btn-row {
        margin-top: 1rem;
      }

      .dashboard-preview,
      .module-explorer,
      .services-grid,
      .value-grid,
      .process-grid {
        margin-top: 1.18rem;
      }

      .position-grid {
        gap: 1rem;
      }

      .cta-section {
        padding: 2.35rem 0 3rem;
      }

      .cta-panel {
        padding-block: 2rem;
      }
    }

    @media (max-width: 420px) {
      .section-divider,
      .section-divider + .section-divider {
        padding-block: 2.05rem;
      }

      .service-hero {
        padding: 2rem 0 2.25rem;
      }
    }


    
        /* Distinct Operating Power section — Refined Bento Grid */
    .operating-power-section {
      isolation: isolate;
    }

    .operating-power-section::before {
      background: linear-gradient(90deg, transparent, rgba(105,255,240,.25), transparent);
    }

    .operating-power-section .container {
      position: relative;
      z-index: 1;
    }

    .operating-power-section .container::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 3.6rem;
      width: min(46rem, 84vw);
      height: 18rem;
      transform: translateX(-50%);
      border-radius: 999px;
      pointer-events: none;
      background: radial-gradient(ellipse at center, rgba(105,255,240,.11), transparent 71%);
      filter: blur(48px);
      opacity: .8;
      z-index: -1;
    }

    .operating-power-head {
      max-width: 44rem;
      margin: 0 auto;
      text-align: center;
    }

    .operating-power-head .section-copy {
      max-width: 42rem;
    }

    .op-bento-wrap {
      position: relative;
      width: min(100%, 74.5rem);
      margin: clamp(1.8rem, 3vw, 2.55rem) auto 0;
      padding: clamp(.86rem, 1.3vw, 1.05rem);
      border: 1px solid rgba(105,255,240,.13);
      border-radius: 1.05rem;
      background:
        radial-gradient(circle at 15% 12%, rgba(105,255,240,.105), transparent 22rem),
        radial-gradient(circle at 87% 72%, rgba(105,255,240,.052), transparent 20rem),
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.009)),
        rgba(2,5,12,.84);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        inset 0 0 0 1px rgba(255,255,255,.018),
        0 22px 70px rgba(0,0,0,.28),
        0 0 44px rgba(105,255,240,.045);
      overflow: hidden;
    }

    .op-bento-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .34;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(circle at 50% 35%, rgba(0,0,0,.55), transparent 72%);
    }

    .op-bento-wrap::after {
      content: "";
      position: absolute;
      left: 1rem;
      right: 1rem;
      top: 1rem;
      height: 1px;
      opacity: .72;
      pointer-events: none;
      background: linear-gradient(90deg, transparent, rgba(105,255,240,.40), rgba(255,255,255,.16), transparent);
    }

    .op-bento-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-auto-rows: minmax(13.25rem, auto);
      gap: .82rem;
    }

    .op-bento-grid::before {
      content: "";
      position: absolute;
      left: 8%;
      right: 8%;
      top: 50%;
      height: 1px;
      transform: translateY(-50%);
      background: linear-gradient(90deg, transparent, rgba(105,255,240,.24), transparent);
      opacity: .75;
      pointer-events: none;
    }

    .op-bento-card {
      --card-glow: rgba(105,255,240,.10);
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 13.25rem;
      padding: clamp(1rem, 1.25vw, 1.15rem);
      border: 1px solid rgba(255,255,255,.085);
      border-radius: .9rem;
      background:
        linear-gradient(180deg, rgba(255,255,255,.036), rgba(255,255,255,.012)),
        rgba(3,9,17,.72);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.045),
        inset 0 -1px 0 rgba(105,255,240,.025),
        0 14px 42px rgba(0,0,0,.16);
      overflow: hidden;
      transition: border-color .28s ease, background .28s ease, box-shadow .28s ease, transform .28s ease;
    }

    .op-bento-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      opacity: .9;
      pointer-events: none;
      background:
        radial-gradient(circle at 82% 17%, var(--card-glow), transparent 9.8rem),
        radial-gradient(circle at 15% 92%, rgba(255,255,255,.035), transparent 9rem),
        linear-gradient(120deg, rgba(105,255,240,.065), transparent 34%);
    }

    .op-bento-card::after {
      content: "";
      position: absolute;
      right: clamp(.72rem, 1vw, 1rem);
      top: clamp(.72rem, 1vw, 1rem);
      width: 6.4rem;
      height: 6.4rem;
      border: 1px solid rgba(105,255,240,.105);
      border-radius: 50%;
      box-shadow: 0 0 0 1.72rem rgba(105,255,240,.018), 0 0 0 3.25rem rgba(105,255,240,.008);
      opacity: .82;
      pointer-events: none;
    }

    .op-bento-card:hover,
    .op-bento-card.active,
    .op-bento-card:focus-visible {
      transform: translateY(-5px);
      border-color: rgba(105,255,240,.28);
      background:
        linear-gradient(180deg, rgba(255,255,255,.046), rgba(255,255,255,.014)),
        rgba(4,12,22,.90);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.06),
        0 24px 72px rgba(0,0,0,.30),
        0 0 34px rgba(105,255,240,.07);
      outline: none;
    }

    .dynamic-ready .op-bento-card.reveal.is-visible:hover,
    .dynamic-ready .op-bento-card.reveal.is-visible.active,
    .dynamic-ready .op-bento-card.reveal.is-visible:focus-visible {
      transform: translateY(-5px);
    }

    .op-bento-card:nth-child(1) {
      grid-column: span 5;
      grid-row: span 2;
      min-height: 27.35rem;
      padding: clamp(1.15rem, 1.7vw, 1.45rem);
      background:
        radial-gradient(circle at 20% 16%, rgba(105,255,240,.14), transparent 16rem),
        linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
        rgba(4,12,22,.88);
    }

    .op-bento-card:nth-child(2),
    .op-bento-card:nth-child(4) {
      grid-column: span 3;
    }

    .op-bento-card:nth-child(3),
    .op-bento-card:nth-child(5) {
      grid-column: span 4;
    }

    .op-bento-top {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .8rem;
      margin-bottom: 1rem;
    }

    .op-bento-num {
      min-width: 2.08rem;
      height: 2.08rem;
      display: inline-grid;
      place-items: center;
      padding: 0 .42rem;
      border: 1px solid rgba(105,255,240,.32);
      border-radius: .55rem;
      background: rgba(2,5,12,.86);
      color: rgba(105,255,240,.96);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: .67rem;
      line-height: 1;
      font-weight: 900;
      box-shadow: 0 0 0 6px rgba(105,255,240,.055), 0 0 18px rgba(105,255,240,.18);
    }

    .op-bento-icon {
      width: 2.42rem;
      height: 2.42rem;
      display: grid;
      place-items: center;
      color: var(--cyan);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: .68rem;
      background: rgba(255,255,255,.034);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 0 22px rgba(105,255,240,.075);
    }

    .op-bento-icon svg {
      width: 1.08rem;
      height: 1.08rem;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.85;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 9px rgba(105,255,240,.16));
    }

    .op-bento-phase {
      position: relative;
      z-index: 2;
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: .42rem;
      color: rgba(105,255,240,.88);
      font-family: var(--font-display);
      font-size: .68rem;
      line-height: 1;
      font-weight: 900;
      letter-spacing: .09em;
      text-transform: uppercase;
    }

    .op-bento-phase::before {
      content: "";
      width: .44rem;
      height: .44rem;
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(105,255,240,.34);
    }

    .op-bento-title {
      position: relative;
      z-index: 2;
      margin-top: .74rem;
      color: #fff;
      font-family: var(--font-display);
      font-size: clamp(.98rem, 1.16vw, 1.12rem);
      line-height: 1.25;
      font-weight: 650;
      letter-spacing: -.038em;
      text-wrap: balance;
      text-shadow: 0 8px 28px rgba(0,0,0,.34);
    }

    .op-bento-card:nth-child(1) .op-bento-title {
      max-width: 27rem;
      font-size: clamp(1.62rem, 2.85vw, 2.28rem);
      line-height: 1.06;
      letter-spacing: -.062em;
    }

    .op-bento-copy {
      position: relative;
      z-index: 2;
      margin-top: .52rem;
      color: rgba(234,241,255,.56);
      font-size: .76rem;
      line-height: 1.72;
      font-weight: 650;
    }

    .op-bento-card:nth-child(1) .op-bento-copy {
      max-width: 27rem;
      font-size: .84rem;
      line-height: 1.78;
    }

    .op-bento-points {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      gap: .42rem;
      margin-top: .92rem;
    }

    .op-bento-point {
      min-height: 1.65rem;
      display: inline-flex;
      align-items: center;
      gap: .36rem;
      padding: 0 .54rem;
      border: 1px solid rgba(255,255,255,.075);
      border-radius: 999px;
      background: rgba(255,255,255,.024);
      color: rgba(255,255,255,.66);
      font-size: .64rem;
      line-height: 1;
      font-weight: 800;
      white-space: nowrap;
    }

    .op-bento-point::before {
      content: "";
      width: .32rem;
      height: .32rem;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 10px rgba(105,255,240,.22);
    }

    .op-bento-footer {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .75rem;
      margin-top: auto;
      padding-top: 1rem;
    }

    .op-bento-tag {
      width: fit-content;
      min-height: 1.78rem;
      display: inline-flex;
      align-items: center;
      padding: 0 .64rem;
      border: 1px solid rgba(105,255,240,.18);
      border-radius: 999px;
      background: rgba(105,255,240,.06);
      color: rgba(218,255,252,.88);
      font-size: .64rem;
      line-height: 1;
      font-weight: 900;
      letter-spacing: .03em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .op-bento-arrow {
      width: 1.9rem;
      height: 1.9rem;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      border: 1px solid rgba(255,255,255,.105);
      border-radius: 50%;
      color: rgba(105,255,240,.92);
      background: rgba(255,255,255,.026);
      transform: translateX(-3px);
      opacity: .72;
      transition: transform .24s ease, opacity .24s ease, border-color .24s ease;
    }

    .op-bento-card:hover .op-bento-arrow,
    .op-bento-card.active .op-bento-arrow,
    .op-bento-card:focus-visible .op-bento-arrow {
      transform: translateX(0);
      opacity: 1;
      border-color: rgba(105,255,240,.24);
    }

    .op-bento-flow {
      position: relative;
      z-index: 2;
      margin-top: auto;
      padding-top: 1.15rem;
    }

    .op-bento-card:nth-child(1) .op-bento-flow {
      margin-top: 1.5rem;
    }

    .op-flow-track {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: .45rem;
      padding: .7rem;
      border: 1px solid rgba(255,255,255,.07);
      border-radius: .85rem;
      background: rgba(255,255,255,.022);
    }

    .op-flow-track::before {
      content: "";
      position: absolute;
      left: 1.2rem;
      right: 1.2rem;
      top: 50%;
      height: 1px;
      transform: translateY(-50%);
      background: linear-gradient(90deg, rgba(105,255,240,.10), rgba(105,255,240,.40), rgba(105,255,240,.10));
    }

    .op-flow-dot {
      position: relative;
      z-index: 1;
      min-height: 3rem;
      display: grid;
      place-items: center;
      gap: .28rem;
      color: rgba(255,255,255,.62);
      font-size: .58rem;
      line-height: 1;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .op-flow-dot::before {
      content: "";
      width: .68rem;
      height: .68rem;
      border-radius: 50%;
      border: 1px solid rgba(105,255,240,.44);
      background: rgba(105,255,240,.22);
      box-shadow: 0 0 18px rgba(105,255,240,.28);
    }

    .op-bento-rail {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: .62rem;
      margin-top: .92rem;
    }

    .op-bento-chip {
      min-height: 2.12rem;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: 0 .82rem;
      border: 1px solid rgba(255,255,255,.085);
      border-radius: 999px;
      background: rgba(255,255,255,.021);
      color: rgba(255,255,255,.68);
      font-size: .7rem;
      line-height: 1;
      font-weight: 850;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
    }

    .op-bento-chip::before {
      content: "";
      width: .42rem;
      height: .42rem;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(105,255,240,.22);
    }

    @media (max-width: 1120px) {
      .op-bento-grid {
        grid-template-columns: repeat(6, minmax(0,1fr));
        grid-auto-rows: minmax(12rem, auto);
      }

      .op-bento-card:nth-child(1) {
        grid-column: span 6;
        grid-row: auto;
        min-height: 18rem;
      }

      .op-bento-card:nth-child(2),
      .op-bento-card:nth-child(3),
      .op-bento-card:nth-child(4),
      .op-bento-card:nth-child(5) {
        grid-column: span 3;
      }

      .op-bento-grid::before {
        display: none;
      }
    }

    @media (max-width: 760px) {
      .op-bento-wrap {
        border-radius: .85rem;
        padding: .78rem;
      }

      .op-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: .68rem;
      }

      .op-bento-card,
      .op-bento-card:nth-child(1),
      .op-bento-card:nth-child(2),
      .op-bento-card:nth-child(3),
      .op-bento-card:nth-child(4),
      .op-bento-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
      }

      .op-bento-card:nth-child(1) .op-bento-title {
        font-size: clamp(1.22rem, 7vw, 1.58rem);
        line-height: 1.12;
      }

      .op-flow-track {
        grid-template-columns: 1fr;
        gap: .34rem;
      }

      .op-flow-track::before {
        left: 50%;
        right: auto;
        top: .95rem;
        bottom: .95rem;
        width: 1px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(105,255,240,.10), rgba(105,255,240,.36), rgba(105,255,240,.10));
      }

      .op-flow-dot {
        min-height: 2.25rem;
        grid-template-columns: auto 1fr;
        justify-content: start;
        justify-items: start;
        padding-left: 43%;
        text-align: left;
      }
    }

    @media (max-width: 560px) {
      .op-bento-card {
        padding: .9rem .82rem;
        border-radius: .74rem;
      }

      .op-bento-top {
        margin-bottom: .82rem;
      }

      .op-bento-num {
        min-width: 1.84rem;
        height: 1.84rem;
        border-radius: .46rem;
        font-size: .62rem;
      }

      .op-bento-icon {
        width: 2.06rem;
        height: 2.06rem;
        border-radius: .56rem;
      }

      .op-bento-title {
        font-size: .96rem;
      }

      .op-bento-copy {
        font-size: .72rem;
        line-height: 1.62;
      }

      .op-bento-points {
        gap: .34rem;
      }

      .op-bento-point {
        max-width: 100%;
        white-space: normal;
      }

      .op-bento-footer {
        align-items: flex-start;
        flex-direction: column;
      }

      .op-bento-arrow {
        display: none;
      }

      .op-bento-rail {
        justify-content: stretch;
      }

      .op-bento-chip {
        width: 100%;
        justify-content: center;
      }
    }


    /* Why Us: short explanatory copy inside cards */
    #why .value-card {
      min-height: 10.85rem;
    }

    #why .value-card .card-copy {
      margin-top: .48rem;
      color: rgba(255,255,255,.50);
      font-size: .72rem;
      line-height: 1.62;
      font-weight: 600;
    }

    @media (max-width: 760px) {
      #why .value-card {
        min-height: auto;
      }
    }

    /* Compact text-clean cards */
    .value-card,
    .process-card {
      min-height: 8.4rem;
    }

    .value-card .card-title,
    .process-card .process-title {
      margin-bottom: 0;
    }

    @media (prefers-reduced-motion: reduce) {
      .dynamic-ready .reveal,
      .dynamic-ready .accent,
      .dynamic-ready .section-kicker,
      .dynamic-ready .service-kicker {
        animation: none !important;
        transition: none !important;
      }
      .dynamic-ready .reveal {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
      }
      .global-stars-canvas { opacity: .55; }
    }
  

    /* Operating Power — Timeline style matched with Process section */
    #core-value.timeline-how-we-work {
      position: relative;
      overflow: hidden;
      min-height: clamp(620px, 74vh, 760px);
      display: flex;
      align-items: center;
      padding-block: clamp(3.55rem, 5.4vw, 5.1rem);
      background:
        radial-gradient(circle at 50% 33%, rgba(105,255,240,0.020), transparent 34%),
        radial-gradient(circle at 20% 72%, rgba(29,23,102,0.075), transparent 34%),
        #02050c;
    }

    #core-value.timeline-how-we-work::before,
    #core-value.timeline-how-we-work::after {
      display: none;
    }

    #core-value .how-work-inner {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    #core-value .how-work-header {
      max-width: 52rem;
      margin: 0 auto clamp(2.35rem, 4.2vw, 3.65rem);
      text-align: center;
    }

    #core-value .section-title {
      max-width: 42rem;
      font-size: clamp(1.82rem, 3.8vw, 3.05rem);
    }

    #core-value .section-copy {
      max-width: 38rem;
      margin-top: .9rem;
      color: rgba(234,241,255,.56);
    }

    #core-value .how-work-timeline {
      --work-progress: 0%;
      position: relative;
      max-width: 69rem;
      margin: 0 auto;
    }

    #core-value .how-work-line-wrap {
      position: relative;
      height: 2.2rem;
      margin: 0 .35rem .95rem;
    }

    #core-value .how-work-line,
    #core-value .how-work-progress {
      position: absolute;
      left: 0;
      top: 50%;
      height: 1px;
      transform: translateY(-50%);
      pointer-events: none;
    }

    #core-value .how-work-line {
      width: 100%;
      background: linear-gradient(90deg, rgba(105,255,240,.14), rgba(255,255,255,.10) 45%, rgba(255,255,255,.075));
      box-shadow: 0 0 20px rgba(105,255,240,.035);
    }

    #core-value .how-work-progress {
      width: var(--work-progress);
      background: linear-gradient(90deg, rgba(105,255,240,.95), rgba(105,255,240,.42), transparent);
      box-shadow: 0 0 18px rgba(105,255,240,.23), 0 0 42px rgba(105,255,240,.08);
      transition: width 1.25s cubic-bezier(.16, 1, .3, 1), left 1.25s cubic-bezier(.16, 1, .3, 1);
    }

    #core-value .how-work-marker {
      position: absolute;
      left: var(--pos);
      top: 50%;
      width: .78rem;
      height: .78rem;
      transform: translate(-50%, -50%);
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.035);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 0 0 1px rgba(0,0,0,.16);
      transition:
        width .85s cubic-bezier(.16, 1, .3, 1),
        height .85s cubic-bezier(.16, 1, .3, 1),
        background .85s ease,
        border-color .85s ease,
        box-shadow .85s ease,
        opacity .85s ease,
        left .85s cubic-bezier(.16, 1, .3, 1);
    }

    #core-value .how-work-marker.is-past {
      border-color: rgba(105,255,240,.28);
      background: rgba(105,255,240,.15);
      box-shadow: 0 0 16px rgba(105,255,240,.12);
    }

    #core-value .how-work-marker.is-active {
      width: 1.08rem;
      height: 1.08rem;
      border-color: rgba(105,255,240,.96);
      background: rgba(105,255,240,.98);
      box-shadow: 0 0 0 9px rgba(105,255,240,.045), 0 0 26px rgba(105,255,240,.42), 0 0 56px rgba(105,255,240,.16);
    }

    #core-value .how-work-steps {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: clamp(.95rem, 2.4vw, 2.25rem);
      align-items: start;
      padding: 0 .35rem;
    }

    #core-value .how-work-step {
      position: relative;
      min-height: 8.35rem;
      padding: .5rem 0 0;
      cursor: pointer;
      outline: none;
      transform: translateY(0);
      opacity: .58;
      transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.16, 1, .3, 1),
        filter .9s ease;
    }

    #core-value .how-work-step.is-active {
      opacity: 1;
      transform: translateY(-.12rem);
      filter: drop-shadow(0 15px 32px rgba(0,0,0,.26));
    }

    #core-value .how-work-num {
      display: block;
      margin-bottom: .72rem;
      color: rgba(105,255,240,.48);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: .72rem;
      line-height: 1rem;
      font-weight: 800;
      letter-spacing: .18em;
      transition: color .75s ease, text-shadow .75s ease, opacity .75s ease;
    }

    #core-value .how-work-title {
      margin: 0 0 .55rem;
      color: rgba(255,255,255,.40);
      font-family: var(--font-display);
      font-size: clamp(.98rem, 1.35vw, 1.24rem);
      line-height: 1.04;
      font-weight: 600;
      letter-spacing: -.048em;
      transition: color .35s ease, text-shadow .35s ease;
    }

    #core-value .how-work-copy {
      max-width: 14.8rem;
      color: rgba(255,255,255,.32);
      font-size: .75rem;
      line-height: 1.58;
      font-weight: 600;
      transition: color .75s ease, opacity .75s ease;
    }

    #core-value .how-work-step.is-past {
      opacity: .78;
    }

    #core-value .how-work-step.is-past .how-work-title {
      color: rgba(255,255,255,.54);
    }

    #core-value .how-work-step.is-past .how-work-copy {
      color: rgba(255,255,255,.42);
    }

    #core-value .how-work-step.is-active .how-work-num {
      color: var(--cyan);
      text-shadow: 0 0 17px rgba(105,255,240,.32);
    }

    #core-value .how-work-step.is-active .how-work-title {
      color: #fffdf8;
      text-shadow: 0 8px 34px rgba(0,0,0,.42);
    }

    #core-value .how-work-step.is-active .how-work-copy {
      color: rgba(255,255,255,.70);
    }

    @media (hover: hover) {
      #core-value .how-work-step:hover .how-work-title {
        color: rgba(255,255,255,.86);
      }
      #core-value .how-work-step:hover .how-work-copy {
        color: rgba(255,255,255,.52);
      }
    }

    @media (max-width: 900px) {
      #core-value.timeline-how-we-work {
        min-height: auto;
        display: block;
      }
      #core-value .how-work-header {
        margin-bottom: 2.45rem;
      }
      #core-value .how-work-line-wrap {
        display: none;
      }
      #core-value .how-work-steps {
        grid-template-columns: 1fr;
        gap: .72rem;
        max-width: 34rem;
        margin: 0 auto;
        padding: 0;
      }
      #core-value .how-work-step {
        min-height: auto;
        padding: .9rem .9rem .95rem 1.55rem;
        border-left: 1px solid rgba(255,255,255,.08);
      }
      #core-value .how-work-step::before {
        content: "";
        position: absolute;
        left: -.36rem;
        top: 1.05rem;
        width: .68rem;
        height: .68rem;
        border: 1px solid rgba(255,255,255,.12);
        background: rgba(255,255,255,.05);
      }
      #core-value .how-work-step.is-active {
        transform: none;
        border-color: rgba(105,255,240,.32);
      }
      #core-value .how-work-step.is-active::before {
        background: var(--cyan);
        border-color: rgba(105,255,240,.95);
        box-shadow: 0 0 24px rgba(105,255,240,.34);
      }
      #core-value .how-work-copy {
        max-width: none;
      }
    }

    @media (max-width: 520px) {
      #core-value.timeline-how-we-work {
        padding-block: 3.05rem;
      }
      #core-value .section-title {
        font-size: clamp(1.62rem, 8.5vw, 2.34rem);
      }
      #core-value .section-copy {
        max-width: 22rem;
      }
    }

    /* Hero spacing polish — cleaner vertical rhythm */
    .service-hero {
      min-height: min(720px, 100svh);
      padding: clamp(3.35rem, 5.8vw, 5.35rem) 0 clamp(3.65rem, 6.2vw, 5.65rem);
    }

    .hero-copy-wrap {
      max-width: 66rem;
      padding-block: clamp(.35rem, 1.15vw, 1rem);
    }

    .hero-copy-wrap .service-kicker {
      margin-bottom: clamp(.95rem, 1.5vw, 1.3rem);
    }

    .hero-copy-wrap .hero-title {
      margin-bottom: 0;
    }

    .hero-actions {
      margin-top: clamp(1.65rem, 2.65vw, 2.25rem);
    }

    @media (max-width: 1024px) {
      .service-hero {
        min-height: auto;
        padding: clamp(3.05rem, 6.2vw, 4.35rem) 0 clamp(3.25rem, 6.6vw, 4.6rem);
      }

      .hero-copy-wrap .service-kicker {
        margin-bottom: .88rem;
      }

      .hero-actions {
        margin-top: clamp(1.38rem, 2.8vw, 1.85rem);
      }
    }

    @media (max-width: 680px) {
      .service-hero {
        padding: 2.55rem 0 2.95rem;
      }

      .hero-copy-wrap {
        padding-block: 0;
      }

      .hero-copy-wrap .service-kicker {
        margin-bottom: .72rem;
      }

      .hero-actions {
        margin-top: 1.15rem;
      }
    }


    /* Hero buttons stay side-by-side on tablet and mobile */
    .hero-actions {
      width: auto;
      max-width: 100%;
      flex-wrap: nowrap;
    }

    .hero-actions .btn {
      width: auto;
      flex: 0 1 auto;
      white-space: nowrap;
    }

    /* Operating Power title-only header after removing the intro copy */
    #core-value .how-work-header {
      margin-bottom: clamp(2.15rem, 4vw, 3.25rem);
    }

    @media (max-width: 760px) {
      .hero-actions {
        width: min(100%, 24rem);
        gap: .52rem;
      }

      .hero-actions .btn {
        width: calc((100% - .52rem) / 2);
        min-width: 0;
        padding-inline: .5rem;
        font-size: .72rem;
        white-space: normal;
        line-height: 1.12;
        text-align: center;
      }
    }

    @media (max-width: 380px) {
      .hero-actions {
        gap: .42rem;
      }

      .hero-actions .btn {
        width: calc((100% - .42rem) / 2);
        min-height: 2.48rem;
        padding-inline: .38rem;
        font-size: .66rem;
      }
    }


    /* Final hero mobile/tablet button alignment */
    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: row;
      flex-wrap: nowrap;
    }

    .hero-actions .btn {
      width: auto;
      min-width: 9.2rem;
      flex: 0 1 auto;
    }

    @media (max-width: 760px) {
      .hero-actions {
        width: min(100%, 24rem) !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: .52rem;
      }

      .hero-actions .btn {
        width: calc((100% - .52rem) / 2) !important;
        min-width: 0 !important;
        flex: 0 1 calc((100% - .52rem) / 2) !important;
        padding-inline: .46rem;
        white-space: normal;
        text-align: center;
      }
    }

    @media (max-width: 380px) {
      .hero-actions {
        gap: .4rem;
      }

      .hero-actions .btn {
        width: calc((100% - .4rem) / 2) !important;
        flex-basis: calc((100% - .4rem) / 2) !important;
        font-size: .65rem;
        line-height: 1.12;
      }
    }



    /* Responsive rhythm polish: hero, section spacing, dashboard and CTA buttons */
    @media (max-width: 1024px) {
      .service-hero {
        min-height: auto !important;
        padding: clamp(2.65rem, 6vw, 3.85rem) 0 clamp(2.85rem, 6.4vw, 4.1rem) !important;
      }

      .hero-layout {
        gap: 1.35rem;
      }

      .hero-copy-wrap {
        max-width: 48rem;
        padding-block: .25rem !important;
      }

      .hero-copy-wrap .service-kicker {
        margin-bottom: .72rem !important;
      }

      .hero-copy-wrap .hero-title {
        max-width: 44rem;
        line-height: 1.07;
      }

      .hero-actions {
        margin-top: 1.22rem !important;
      }

      .section-divider {
        padding-block: clamp(2.55rem, 5.5vw, 3.45rem) !important;
      }

      .section-divider + .section-divider {
        padding-top: clamp(2.2rem, 4.8vw, 3rem) !important;
      }

      .section-kicker {
        margin-bottom: .64rem !important;
      }

      .section-title {
        line-height: 1.07;
      }

      .section-copy,
      .hero-copy {
        margin-top: .68rem !important;
        line-height: 1.68;
      }

      .services-grid,
      .value-grid,
      .process-grid,
      .module-explorer,
      .dashboard-preview {
        margin-top: clamp(1.25rem, 3.2vw, 1.85rem) !important;
      }

      .dashboard-showcase {
        gap: clamp(1.15rem, 3.4vw, 2rem) !important;
      }

      .dashboard-feature-list {
        margin-top: 1.08rem !important;
        gap: .82rem !important;
      }

      .dashboard-actions,
      #final-cta .btn-row {
        width: min(100%, 25rem) !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: .62rem !important;
        margin-inline: auto !important;
      }

      .dashboard-actions .btn,
      .dashboard-actions .btn-secondary,
      #final-cta .btn-row .btn,
      #final-cta .btn-row .btn-secondary {
        width: calc((100% - .62rem) / 2) !important;
        min-width: 0 !important;
        flex: 0 1 calc((100% - .62rem) / 2) !important;
        min-height: 2.58rem;
        padding-inline: .62rem !important;
        justify-content: center !important;
        text-align: center;
        white-space: normal;
        line-height: 1.14;
      }

      .dashboard-actions .btn-secondary {
        border: 1px solid rgba(255,255,255,.10) !important;
        background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)), rgba(2,5,12,.72) !important;
        padding-inline: .62rem !important;
        box-shadow: none !important;
      }
    }

    @media (max-width: 760px) {
      .service-hero {
        padding: 2.15rem 0 2.45rem !important;
      }

      .hero-copy-wrap {
        max-width: 27rem;
        padding-block: 0 !important;
      }

      .hero-copy-wrap .service-kicker {
        margin-bottom: .56rem !important;
      }

      .hero-copy-wrap .hero-title {
        max-width: 25rem;
        font-size: clamp(1.95rem, 10.7vw, 2.75rem);
        line-height: 1.08;
      }

      .hero-actions {
        width: min(100%, 22.5rem) !important;
        margin-top: .98rem !important;
        gap: .5rem !important;
      }

      .hero-actions .btn {
        width: calc((100% - .5rem) / 2) !important;
        flex-basis: calc((100% - .5rem) / 2) !important;
        min-height: 2.5rem;
        padding-inline: .42rem !important;
        font-size: .68rem;
        line-height: 1.12;
      }

      .section-divider,
      .section-divider + .section-divider {
        padding-block: 2.22rem !important;
      }

      .section-divider::after {
        height: 96px !important;
      }

      .section-kicker,
      .service-kicker {
        margin-bottom: .52rem !important;
      }

      .section-title {
        max-width: 25rem;
        font-size: clamp(1.48rem, 7.5vw, 2.16rem);
        line-height: 1.09;
      }

      .section-copy,
      .hero-copy {
        max-width: 23rem;
        margin-top: .56rem !important;
        font-size: .78rem;
        line-height: 1.6;
      }

      .services-grid,
      .value-grid,
      .process-grid,
      .module-explorer,
      .dashboard-preview {
        margin-top: 1.05rem !important;
      }

      .dashboard-showcase {
        gap: 1rem !important;
      }

      .dashboard-visual {
        min-height: clamp(16rem, 54vw, 20rem) !important;
        padding: .75rem !important;
      }

      .dashboard-copy-wrap {
        max-width: 25.5rem !important;
      }

      .dashboard-headline {
        font-size: clamp(1.56rem, 8.5vw, 2.18rem) !important;
        line-height: 1.08 !important;
      }

      .dashboard-feature-list {
        margin-top: .98rem !important;
        gap: .76rem !important;
      }

      .dashboard-feature-copy {
        margin-top: .28rem !important;
      }

      .dashboard-actions,
      #final-cta .btn-row {
        width: min(100%, 22.5rem) !important;
        gap: .5rem !important;
        margin-top: 1.05rem !important;
      }

      .dashboard-actions .btn,
      .dashboard-actions .btn-secondary,
      #final-cta .btn-row .btn,
      #final-cta .btn-row .btn-secondary {
        width: calc((100% - .5rem) / 2) !important;
        flex-basis: calc((100% - .5rem) / 2) !important;
        min-height: 2.5rem;
        padding-inline: .42rem !important;
        font-size: .68rem;
        line-height: 1.12;
      }

      .cta-panel {
        padding: 1.85rem .82rem !important;
      }
    }

    @media (max-width: 420px) {
      .service-hero {
        padding: 1.95rem 0 2.22rem !important;
      }

      .hero-actions,
      .dashboard-actions,
      #final-cta .btn-row {
        width: min(100%, 21rem) !important;
        gap: .38rem !important;
      }

      .hero-actions .btn,
      .dashboard-actions .btn,
      .dashboard-actions .btn-secondary,
      #final-cta .btn-row .btn,
      #final-cta .btn-row .btn-secondary {
        width: calc((100% - .38rem) / 2) !important;
        flex-basis: calc((100% - .38rem) / 2) !important;
        min-height: 2.42rem;
        padding-inline: .32rem !important;
        font-size: .62rem;
        letter-spacing: -.01em;
      }

      .section-divider,
      .section-divider + .section-divider {
        padding-block: 2rem !important;
      }
    }


    /* Final requested update: full-screen hero on tablet and mobile */
    @media (max-width: 1024px) {
      .service-hero {
        min-height: 100svh !important;
        display: flex !important;
        align-items: center !important;
        padding-top: clamp(2.35rem, 7svh, 4.15rem) !important;
        padding-bottom: clamp(2.35rem, 7svh, 4.15rem) !important;
      }

      .service-hero .hero-layout {
        width: 100%;
        min-height: auto !important;
        align-items: center !important;
      }

      .service-hero .hero-copy-wrap {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
      }
    }

    @media (max-width: 760px) {
      .service-hero {
        min-height: 100svh !important;
        padding-top: clamp(1.6rem, 6.2svh, 3.1rem) !important;
        padding-bottom: clamp(1.75rem, 6.5svh, 3.25rem) !important;
      }
    }

    @media (max-width: 420px) {
      .service-hero {
        min-height: 100svh !important;
        padding-top: clamp(1.35rem, 5.8svh, 2.45rem) !important;
        padding-bottom: clamp(1.5rem, 6svh, 2.75rem) !important;
      }
    }


    /* Final hero distribution polish for tablet and mobile */
    @media (min-width: 761px) and (max-width: 1024px) {
      .service-hero {
        min-height: 100svh !important;
        display: flex !important;
        align-items: stretch !important;
        padding-top: clamp(2.25rem, 4.8svh, 3.35rem) !important;
        padding-bottom: clamp(2.55rem, 5.2svh, 3.75rem) !important;
      }

      .service-hero .hero-layout {
        min-height: calc(100svh - 7.1rem) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
      }

      .service-hero .hero-copy-wrap {
        width: min(100%, 50rem) !important;
        max-width: 50rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: clamp(1.05rem, 2.25svh, 1.55rem) !important;
        padding-block: clamp(.85rem, 2.4svh, 1.65rem) !important;
        transform: translateY(-1.2svh);
      }

      .service-hero .service-kicker,
      .service-hero .hero-title,
      .service-hero .hero-actions {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
      }

      .service-hero .hero-title {
        max-width: 46rem !important;
        font-size: clamp(2.35rem, 7.1vw, 4rem) !important;
        line-height: 1.06 !important;
      }

      .service-hero .hero-actions {
        width: min(100%, 25.5rem) !important;
      }

      .service-hero::after {
        bottom: -4.9rem !important;
        height: 17rem !important;
        opacity: .30 !important;
      }
    }

    @media (max-width: 760px) {
      .service-hero {
        min-height: 100svh !important;
        display: flex !important;
        align-items: stretch !important;
        padding-top: clamp(1.35rem, 4.6svh, 2.25rem) !important;
        padding-bottom: clamp(1.65rem, 5.2svh, 2.75rem) !important;
      }

      .service-hero .hero-layout {
        min-height: calc(100svh - 4.9rem) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
      }

      .service-hero .hero-copy-wrap {
        width: min(100%, 27rem) !important;
        max-width: 27rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: clamp(.82rem, 2.7svh, 1.18rem) !important;
        padding-block: clamp(.45rem, 2.2svh, 1.12rem) !important;
        transform: translateY(-1.8svh);
      }

      .service-hero .service-kicker,
      .service-hero .hero-title,
      .service-hero .hero-actions {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
      }

      .service-hero .hero-title {
        max-width: 25.5rem !important;
        font-size: clamp(1.92rem, 10.4vw, 2.85rem) !important;
        line-height: 1.08 !important;
      }

      .service-hero .hero-actions {
        width: min(100%, 22.75rem) !important;
        gap: .5rem !important;
      }

      .service-hero .hero-actions .btn {
        min-height: 2.54rem !important;
      }

      .service-hero::after {
        bottom: -5.85rem !important;
        height: 13.6rem !important;
        opacity: .24 !important;
        background-size: 38px 38px !important;
      }
    }

    @media (max-width: 420px) {
      .service-hero {
        padding-top: clamp(1.05rem, 4svh, 1.85rem) !important;
        padding-bottom: clamp(1.35rem, 4.8svh, 2.25rem) !important;
      }

      .service-hero .hero-layout {
        min-height: calc(100svh - 4.1rem) !important;
      }

      .service-hero .hero-copy-wrap {
        max-width: 22.75rem !important;
        gap: clamp(.72rem, 2.45svh, 1rem) !important;
        transform: translateY(-1.35svh);
      }

      .service-hero .hero-title {
        max-width: 22.3rem !important;
        font-size: clamp(1.86rem, 11.6vw, 2.55rem) !important;
      }

      .service-hero .hero-actions {
        width: min(100%, 21.25rem) !important;
      }
    }


/* =========================================================
   Typography consistency patch — sizes & line-height only
   ========================================================= */
:root {
  --qg-type-kicker: .74rem;
  --qg-type-hero: clamp(2.42rem, 5.05vw, 5.05rem);
  --qg-type-section: clamp(1.86rem, 3.65vw, 3.08rem);
  --qg-type-section-split: clamp(1.68rem, 3.02vw, 2.48rem);
  --qg-type-copy-hero: clamp(.91rem, 1.04vw, 1.02rem);
  --qg-type-copy: .88rem;
  --qg-type-card-title: clamp(.96rem, 1.05vw, 1.08rem);
  --qg-type-card-copy: .77rem;
  --qg-type-small: .68rem;
  --qg-type-button: .81rem;
}

:where(.section-kicker, .service-kicker, .services-kicker, .about-kicker, .process-panel-kicker) {
  font-size: var(--qg-type-kicker) !important;
  line-height: 1.1rem !important;
}

:where(.hero-title) {
  font-size: var(--qg-type-hero) !important;
  line-height: 1.02 !important;
}

:where(
  .section-title,
  .services-title,
  .section-title-light,
  .section-title-dark,
  .dashboard-headline,
  .ownership-heading,
  .about-title,
  .cta-title,
  .timeline-how-we-work .section-title-light
) {
  font-size: var(--qg-type-section) !important;
  line-height: 1.055 !important;
}

:where(
  .position-copy-wrap .section-title,
  .section-copy-left .section-title,
  .dashboard-copy-wrap .section-title,
  .ownership-content .section-title,
  .about-title
) {
  font-size: var(--qg-type-section-split) !important;
  line-height: 1.07 !important;
}

:where(.hero-copy) {
  font-size: var(--qg-type-copy-hero) !important;
  line-height: 1.74 !important;
}

:where(
  .section-copy,
  .section-copy-light,
  .section-copy-dark,
  .services-copy,
  .about-copy,
  .ownership-intro,
  .ownership-copy,
  .dashboard-feature-copy,
  .cta-copy,
  .timeline-how-we-work .section-copy-light
) {
  font-size: var(--qg-type-copy) !important;
  line-height: 1.68 !important;
}

:where(
  .card-title,
  .service-title,
  .process-title,
  .plan-title,
  .plan-card-title,
  .position-title,
  .ownership-title,
  .ownership-feature-title,
  .dashboard-feature-title,
  .screen-heading,
  .module-title,
  .about-point-title,
  .process-panel-title,
  .process-mobile-title,
  .how-work-title,
  .faq-question-text,
  .comparison-consult-copy strong,
  .spec-label,
  .mini-title
) {
  font-size: var(--qg-type-card-title) !important;
  line-height: 1.24 !important;
}

:where(
  .card-copy,
  .service-desc,
  .process-copy,
  .plan-copy,
  .plan-card-copy,
  .position-text,
  .ownership-feature-copy,
  .about-point-copy,
  .process-panel-copy,
  .process-mobile-copy,
  .how-work-copy,
  .faq-answer,
  .comparison-consult-copy span,
  .plan-best-for span,
  .spec-text,
  .screen-row span:first-child,
  .side-row,
  .visual-label,
  .metric-label,
  .module-pane p,
  .module-copy,
  .module-detail,
  .feature-copy,
  .value-copy
) {
  font-size: var(--qg-type-card-copy) !important;
  line-height: 1.66 !important;
}

:where(
  .btn,
  .services-primary,
  .services-secondary,
  .cta-button,
  .nav-links a,
  .nav-dropdown-toggle,
  .nav-cta,
  .plan-filter,
  .module-tab strong,
  .module-link,
  .plan-card-footer .btn,
  .plan-footer .btn
) {
  font-size: var(--qg-type-button) !important;
  line-height: 1.15 !important;
}

:where(
  .card-num,
  .process-num,
  .step-num,
  .process-mobile-num,
  .plan-tag,
  .plan-eyebrow,
  .plan-card-tag,
  .plan-card-badge,
  .plan-badge,
  .ownership-badge,
  .platform-pill,
  .pill,
  .dashboard-status,
  .dashboard-title,
  .screen-row span:last-child,
  .metric-value + .metric-label,
  .server-meta,
  .server-chip,
  .plan-note,
  .cta-note
) {
  font-size: var(--qg-type-small) !important;
  line-height: 1.35 !important;
}

:where(.metric-value, .plan-card-price strong) {
  font-size: clamp(1.36rem, 1.86vw, 1.82rem) !important;
  line-height: 1.04 !important;
}

:where(.plan-card-price strong span) {
  font-size: .86rem !important;
  line-height: 1.1 !important;
}

@media (max-width: 1024px) {
  :root {
    --qg-type-hero: clamp(2.24rem, 6.7vw, 4.15rem);
    --qg-type-section: clamp(1.78rem, 4.85vw, 2.72rem);
    --qg-type-section-split: clamp(1.62rem, 4.35vw, 2.34rem);
    --qg-type-copy-hero: clamp(.88rem, 1.55vw, .98rem);
    --qg-type-copy: .86rem;
    --qg-type-card-title: clamp(.94rem, 1.75vw, 1.04rem);
    --qg-type-card-copy: .76rem;
  }
}

@media (max-width: 767px) {
  :root {
    --qg-type-kicker: .72rem;
    --qg-type-hero: clamp(2rem, 10.2vw, 3.18rem);
    --qg-type-section: clamp(1.64rem, 8.35vw, 2.34rem);
    --qg-type-section-split: clamp(1.56rem, 7.8vw, 2.18rem);
    --qg-type-copy-hero: .88rem;
    --qg-type-copy: .84rem;
    --qg-type-card-title: .96rem;
    --qg-type-card-copy: .76rem;
    --qg-type-button: .8rem;
  }

  :where(.hero-title) {
    line-height: 1.04 !important;
  }

  :where(
    .section-title,
    .services-title,
    .section-title-light,
    .section-title-dark,
    .dashboard-headline,
    .ownership-heading,
    .about-title,
    .cta-title,
    .timeline-how-we-work .section-title-light
  ) {
    line-height: 1.08 !important;
  }
}

@media (max-width: 520px) {
  :root {
    --qg-type-hero: clamp(1.92rem, 10.8vw, 2.86rem);
    --qg-type-section: clamp(1.54rem, 8.9vw, 2.12rem);
    --qg-type-section-split: clamp(1.5rem, 8.4vw, 2.02rem);
    --qg-type-copy-hero: .86rem;
    --qg-type-copy: .82rem;
    --qg-type-card-title: .94rem;
    --qg-type-card-copy: .75rem;
  }

  :where(.btn, .services-primary, .services-secondary, .cta-button) {
    font-size: .79rem !important;
  }
}

  

    /* =========================================================
       Dashboard mobile responsive + icons matched with
       Operational Setup reference from hosting page
       ========================================================= */
    #dashboard .dashboard-feature {
      grid-template-columns: 2.35rem minmax(0, 1fr) !important;
      gap: .78rem !important;
      align-items: start !important;
    }

    #dashboard .dashboard-feature-icon {
      position: relative !important;
      width: 1.9rem !important;
      height: 1.9rem !important;
      display: grid !important;
      place-items: center !important;
      flex-shrink: 0 !important;
      overflow: hidden !important;
      border: 1px solid rgba(255,255,255,.13) !important;
      background: rgba(255,255,255,.018) !important;
      color: rgba(234,241,255,.86) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
    }

    #dashboard .dashboard-feature-icon::before,
    #dashboard .dashboard-feature-icon::after {
      display: none !important;
      content: none !important;
    }

    #dashboard .dashboard-feature-icon svg {
      width: 1rem !important;
      height: 1rem !important;
      display: block !important;
      fill: none !important;
      stroke: currentColor !important;
      stroke-width: 1.75 !important;
      stroke-linecap: round !important;
      stroke-linejoin: round !important;
      filter: none !important;
      opacity: .96 !important;
    }

    @media (max-width: 900px) {
      #dashboard .dashboard-feature {
        grid-template-columns: 2.35rem minmax(0, 1fr) !important;
        justify-items: stretch !important;
        text-align: start !important;
      }

      #dashboard .dashboard-feature > div:last-child {
        text-align: start !important;
      }
    }

    @media (max-width: 760px) {
      #dashboard {
        min-height: auto !important;
        padding-top: 2.45rem !important;
        padding-bottom: 2.75rem !important;
      }

      #dashboard .dashboard-showcase {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 1.05rem !important;
        text-align: start !important;
      }

      #dashboard .dashboard-visual {
        order: 1 !important;
        width: 100% !important;
        min-height: 17.5rem !important;
        margin: 0 auto .15rem !important;
        display: grid !important;
        place-items: center !important;
        padding: .65rem !important;
      }

      #dashboard .dashboard-visual::before {
        inset: 12% 8% 16% 8% !important;
        opacity: .62 !important;
        filter: blur(34px) !important;
      }

      #dashboard .dashboard-visual::after {
        height: 42% !important;
        opacity: .13 !important;
        background-size: 38px 38px !important;
      }

      #dashboard .dashboard-visual img {
        width: min(100%, 21.5rem) !important;
        max-height: 17.5rem !important;
        transform: none !important;
        margin-inline: auto !important;
      }

      #dashboard .dashboard-copy-wrap {
        order: 2 !important;
        width: min(100%, 27rem) !important;
        max-width: 27rem !important;
        margin: 0 auto !important;
        padding: 0 !important;
        justify-self: stretch !important;
        text-align: start !important;
      }

      #dashboard .dashboard-copy-wrap .section-kicker {
        justify-content: flex-start !important;
        text-align: start !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        margin-bottom: .68rem !important;
      }

      #dashboard .dashboard-headline {
        max-width: 24rem !important;
        margin: 0 !important;
        text-align: start !important;
        line-height: 1.05 !important;
      }

      #dashboard .dashboard-feature-list {
        margin-top: 1.05rem !important;
        gap: .92rem !important;
      }

      #dashboard .dashboard-feature {
        max-width: 100% !important;
        margin-inline: 0 !important;
        grid-template-columns: 2.2rem minmax(0, 1fr) !important;
        gap: .7rem !important;
        text-align: start !important;
        justify-items: stretch !important;
      }

      #dashboard .dashboard-feature-icon {
        width: 1.86rem !important;
        height: 1.86rem !important;
      }

      #dashboard .dashboard-feature-icon svg {
        width: .96rem !important;
        height: .96rem !important;
      }

      #dashboard .dashboard-feature-title {
        font-size: .92rem !important;
        line-height: 1.28 !important;
        text-align: start !important;
      }

      #dashboard .dashboard-feature-copy {
        max-width: none !important;
        margin-top: .24rem !important;
        font-size: .74rem !important;
        line-height: 1.58 !important;
        text-align: start !important;
      }

      #dashboard .dashboard-actions {
        width: 100% !important;
        margin-top: 1.12rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: .72rem !important;
      }

      #dashboard .dashboard-actions .btn,
      #dashboard .dashboard-actions .btn-secondary {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 0 !important;
        min-height: 2.55rem !important;
        white-space: nowrap !important;
      }

      #dashboard .dashboard-actions .btn {
        padding-inline: 1rem !important;
      }

      #dashboard .dashboard-actions .btn-secondary {
        justify-content: flex-start !important;
        padding-inline: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: rgba(255,255,255,.86) !important;
        box-shadow: none !important;
        font-size: .74rem !important;
      }
    }

    @media (max-width: 560px) {
      #dashboard {
        padding-top: 2.2rem !important;
        padding-bottom: 2.55rem !important;
      }

      #dashboard .dashboard-showcase {
        gap: .82rem !important;
      }

      #dashboard .dashboard-visual {
        min-height: 15.8rem !important;
      }

      #dashboard .dashboard-visual img {
        width: min(100%, 19rem) !important;
        max-height: 15.8rem !important;
      }

      #dashboard .dashboard-copy-wrap {
        width: min(100%, 24rem) !important;
        max-width: 24rem !important;
      }
    }

    @media (max-width: 420px) {
      #dashboard .dashboard-visual {
        min-height: 14.6rem !important;
      }

      #dashboard .dashboard-visual img {
        width: min(100%, 17.7rem) !important;
        max-height: 14.6rem !important;
      }

      #dashboard .dashboard-feature {
        grid-template-columns: 2.05rem minmax(0, 1fr) !important;
        gap: .62rem !important;
      }

      #dashboard .dashboard-feature-icon {
        width: 1.76rem !important;
        height: 1.76rem !important;
      }

      #dashboard .dashboard-feature-icon svg {
        width: .9rem !important;
        height: .9rem !important;
      }

      #dashboard .dashboard-actions {
        gap: .58rem !important;
      }

      #dashboard .dashboard-actions .btn {
        padding-inline: .9rem !important;
      }

      #dashboard .dashboard-actions .btn-secondary {
        font-size: .68rem !important;
      }
    }


    /* Final requested update: Operating Power markers
       Desktop: all markers stay lit.
       Tablet/mobile: markers light through scroll state only. */
    #core-value .how-work-marker,
    #core-value .how-work-marker.is-past,
    #core-value .how-work-marker.is-active,
    #core-value .how-work-step::before,
    #core-value .how-work-step.is-past::before,
    #core-value .how-work-step.is-active::before {
      border-radius: 4px !important;
    }

    @media (min-width: 901px) {
      #core-value .how-work-marker,
      #core-value .how-work-marker.is-past,
      #core-value .how-work-marker.is-active {
        width: .86rem !important;
        height: .86rem !important;
        border-color: rgba(105,255,240,.78) !important;
        background: rgba(105,255,240,.86) !important;
        box-shadow:
          0 0 0 7px rgba(105,255,240,.045),
          0 0 24px rgba(105,255,240,.36),
          0 0 54px rgba(105,255,240,.14) !important;
      }
    }

    @media (max-width: 900px) {
      #core-value .how-work-step.is-past::before {
        border-color: rgba(105,255,240,.30) !important;
        background: rgba(105,255,240,.16) !important;
        box-shadow: 0 0 16px rgba(105,255,240,.14) !important;
      }

      #core-value .how-work-step.is-active::before {
        border-color: rgba(105,255,240,.95) !important;
        background: var(--cyan) !important;
        box-shadow:
          0 0 0 7px rgba(105,255,240,.045),
          0 0 24px rgba(105,255,240,.34),
          0 0 44px rgba(105,255,240,.13) !important;
      }
    }


    /* Final requested update: Operating Power steps
       Desktop: every step appears active.
       Tablet/mobile: step state remains controlled by scroll. */
    @media (min-width: 901px) {
      #core-value .how-work-step,
      #core-value .how-work-step.is-past,
      #core-value .how-work-step.is-active {
        opacity: 1 !important;
        transform: translateY(-.12rem) !important;
        filter: drop-shadow(0 15px 32px rgba(0,0,0,.26)) !important;
      }

      #core-value .how-work-step .how-work-num,
      #core-value .how-work-step.is-past .how-work-num,
      #core-value .how-work-step.is-active .how-work-num {
        color: var(--cyan) !important;
        text-shadow: 0 0 17px rgba(105,255,240,.32) !important;
      }

      #core-value .how-work-step .how-work-title,
      #core-value .how-work-step.is-past .how-work-title,
      #core-value .how-work-step.is-active .how-work-title {
        color: #fffdf8 !important;
        text-shadow: 0 8px 34px rgba(0,0,0,.42) !important;
      }

      #core-value .how-work-step .how-work-copy,
      #core-value .how-work-step.is-past .how-work-copy,
      #core-value .how-work-step.is-active .how-work-copy {
        color: rgba(255,255,255,.70) !important;
      }
    }



    /* =========================================================
       QG shared landing header + footer patch
       ========================================================= */
    :root {
      --qg-nav-font: var(--font-alternate, var(--font-display, 'Sora', 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif));
    }

    header.nav[data-qg-shared-header] {
      position: relative;
      z-index: 30;
      height: 88px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 0 clamp(34px, 3.2vw, 58px);
      background: transparent;
    }

    header.nav[data-qg-shared-header] .brand {
      justify-self: start;
      display: inline-flex;
      align-items: center;
      gap: 0;
      color: #fff;
      text-decoration: none;
      font-family: var(--qg-nav-font);
      font-weight: 700;
      letter-spacing: -0.02em;
      font-size: clamp(15px, 1.12vw, 21px);
      line-height: 1;
      white-space: nowrap;
    }

    header.nav[data-qg-shared-header] .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(30px, 3.15vw, 62px);
    }

    header.nav[data-qg-shared-header] .nav-links a,
    header.nav[data-qg-shared-header] .nav-dropdown-toggle {
      color: rgba(255,255,255,.74);
      text-decoration: none;
      font-family: var(--qg-nav-font);
      font-size: clamp(12px, .76vw, 15px);
      font-weight: 600;
      line-height: 1;
      transition: color .2s ease, border-color .22s ease, background .22s ease, transform .22s ease;
      white-space: nowrap;
    }

    header.nav[data-qg-shared-header] .nav-links a:hover,
    header.nav[data-qg-shared-header] .nav-dropdown:hover .nav-dropdown-toggle,
    header.nav[data-qg-shared-header] .nav-dropdown:focus-within .nav-dropdown-toggle {
      color: #fff;
    }

    header.nav[data-qg-shared-header] .nav-dropdown {
      position: relative;
      display: inline-flex;
      align-items: center;
    }

    header.nav[data-qg-shared-header] .nav-dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 0;
      padding: 0;
      background: transparent;
      cursor: pointer;
    }

    header.nav[data-qg-shared-header] .nav-dropdown-toggle::after {
      content: "";
      width: 6px;
      height: 6px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      opacity: .78;
      transition: transform .22s ease, opacity .22s ease;
    }

    header.nav[data-qg-shared-header] .nav-dropdown:hover .nav-dropdown-toggle::after,
    header.nav[data-qg-shared-header] .nav-dropdown:focus-within .nav-dropdown-toggle::after,
    header.nav[data-qg-shared-header] .nav-dropdown.open .nav-dropdown-toggle::after {
      transform: rotate(225deg) translateY(-1px);
      opacity: 1;
    }

    header.nav[data-qg-shared-header] .nav-dropdown-menu {
      position: absolute;
      left: 50%;
      top: calc(100% + 18px);
      min-width: 290px;
      padding: 10px;
      border: 1px solid rgba(255,255,255,.09);
      background:
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)),
        rgba(2,5,12,.92);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.045),
        0 20px 60px rgba(0,0,0,.34),
        0 0 22px rgba(105,255,240,.045);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      transform: translateX(-50%) translateY(8px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    header.nav[data-qg-shared-header] .nav-dropdown-menu::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -19px;
      height: 19px;
    }

    header.nav[data-qg-shared-header] .nav-dropdown:hover .nav-dropdown-menu,
    header.nav[data-qg-shared-header] .nav-dropdown:focus-within .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    header.nav[data-qg-shared-header] .nav-links .nav-dropdown-menu a {
      display: flex;
      align-items: center;
      min-height: 42px;
      padding: 0 12px;
      color: rgba(255,255,255,.68);
      border: 1px solid transparent;
      background: transparent;
      font-size: clamp(12px, .72vw, 14px);
      letter-spacing: -0.01em;
    }

    header.nav[data-qg-shared-header] .nav-links .nav-dropdown-menu a:hover,
    header.nav[data-qg-shared-header] .nav-links .nav-dropdown-menu a:focus,
    header.nav[data-qg-shared-header] .nav-links .nav-dropdown-menu a.active {
      color: #fff;
      border-color: rgba(105,255,240,.16);
      background: rgba(105,255,240,.055);
      outline: none;
    }

    header.nav[data-qg-shared-header] .mobile-menu-toggle {
      justify-self: end;
      display: none;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      background: rgba(255,255,255,.035);
      color: #fff;
      cursor: pointer;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
      transition: border-color .22s ease, background .22s ease, transform .22s ease;
    }

    header.nav[data-qg-shared-header] .mobile-menu-toggle:hover {
      transform: translateY(-1px);
      border-color: rgba(105,255,240,.24);
      background: rgba(105,255,240,.055);
    }

    header.nav[data-qg-shared-header] .mobile-menu-toggle span {
      width: 17px;
      height: 1.5px;
      border-radius: 999px;
      background: currentColor;
      transform-origin: center;
      transition: transform .24s ease, opacity .2s ease;
    }

    header.nav[data-qg-shared-header].nav-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    header.nav[data-qg-shared-header].nav-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
    header.nav[data-qg-shared-header].nav-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    footer.qg-footer[data-qg-shared-footer] {
      position: relative;
      z-index: 1;
      overflow: hidden;
      background:
        radial-gradient(circle at 16% 20%, rgba(105,255,240,0.075), transparent 28%),
        radial-gradient(circle at 84% 82%, rgba(29,23,102,0.25), transparent 34%),
        linear-gradient(180deg, rgba(2,5,12,0.10), rgba(2,5,12,0.98));
      border-top: 1px solid rgba(255,255,255,0.075);
    }

    footer.qg-footer[data-qg-shared-footer]::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      width: min(920px, 86vw);
      height: 1px;
      transform: translateX(-50%);
      pointer-events: none;
      background: linear-gradient(90deg, transparent, rgba(105,255,240,0.34), transparent);
      opacity: 0.95;
    }

    footer.qg-footer[data-qg-shared-footer]::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -7.5rem;
      width: min(760px, 92vw);
      height: 15rem;
      transform: translateX(-50%);
      pointer-events: none;
      border-radius: 999px;
      background: radial-gradient(ellipse at center, rgba(105,255,240,0.075), transparent 70%);
      filter: blur(44px);
      opacity: 0.86;
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-inner {
      position: relative;
      z-index: 2;
      max-width: 82rem;
      margin: 0 auto;
      padding: clamp(3.25rem, 5vw, 4.75rem) 1.25rem 1.35rem;
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-main {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 0.75fr));
      gap: clamp(1.5rem, 4vw, 4rem);
      align-items: start;
      padding-bottom: 2.3rem;
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-brand { max-width: 25rem; }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      color: #fffdf8;
      text-decoration: none;
      font-family: var(--qg-nav-font);
      font-size: clamp(1.18rem, 2vw, 1.45rem);
      font-weight: 700;
      letter-spacing: -0.045em;
      line-height: 1;
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-copy {
      margin-top: 1rem;
      max-width: 22rem;
      color: rgba(255,255,255,0.48);
      font-size: 0.86rem;
      line-height: 1.68;
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-actions {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      flex-wrap: wrap;
      margin-top: 1.25rem;
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-link-inline {
      color: rgba(255,255,255,0.76);
      font-family: var(--qg-nav-font);
      font-size: 0.82rem;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.22s ease, color 0.22s ease;
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-link-inline:hover {
      color: #fff;
      transform: translateX(3px);
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-col-title {
      margin-bottom: 0.95rem;
      color: rgba(255,255,255,0.92);
      font-family: var(--qg-nav-font);
      font-size: 0.86rem;
      line-height: 1.2;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-list {
      display: grid;
      gap: 0.7rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-list a,
    footer.qg-footer[data-qg-shared-footer] .qg-footer-list span {
      color: rgba(255,255,255,0.48);
      text-decoration: none;
      font-size: 0.8rem;
      line-height: 1.48;
      transition: color 0.22s ease, transform 0.22s ease;
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-list a {
      display: inline-flex;
      width: fit-content;
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-list a:hover {
      color: var(--cyan, #69fff0);
      transform: translateX(3px);
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(255,255,255,0.07);
      color: rgba(255,255,255,0.34);
      font-size: 0.74rem;
      line-height: 1.6;
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-bottom-links {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-bottom-links a {
      color: rgba(255,255,255,0.42);
      text-decoration: none;
      transition: color 0.22s ease;
    }

    footer.qg-footer[data-qg-shared-footer] .qg-footer-bottom-links a:hover {
      color: var(--cyan, #69fff0);
    }

    @media (max-width: 1024px) {
      header.nav[data-qg-shared-header] {
        height: 82px;
        grid-template-columns: 1fr auto;
        gap: 0.75rem;
        padding: 0 clamp(20px, 4vw, 36px);
      }

      header.nav[data-qg-shared-header] .mobile-menu-toggle { display: inline-flex; }

      header.nav[data-qg-shared-header] .nav-links {
        position: absolute;
        left: clamp(20px, 4vw, 36px);
        right: clamp(20px, 4vw, 36px);
        top: calc(100% - 4px);
        z-index: 50;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        padding: 0 10px;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        border: 1px solid rgba(255,255,255,.09);
        background:
          linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)),
          rgba(2,5,12,.94);
        box-shadow:
          inset 0 1px 0 rgba(255,255,255,.05),
          0 24px 70px rgba(0,0,0,.42),
          0 0 24px rgba(105,255,240,.05);
        backdrop-filter: blur(18px) saturate(140%);
        -webkit-backdrop-filter: blur(18px) saturate(140%);
        transition: max-height .32s ease, padding .24s ease, opacity .22s ease, visibility .22s ease, transform .24s ease;
      }

      header.nav[data-qg-shared-header].nav-open .nav-links {
        max-height: min(74svh, 540px);
        padding: 10px;
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }

      header.nav[data-qg-shared-header] .nav-links > a,
      header.nav[data-qg-shared-header] .nav-dropdown-toggle {
        width: 100%;
        min-height: 46px;
        padding: 0 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: normal;
        color: rgba(255,255,255,.76);
        border: 1px solid transparent;
        font-size: 14px;
      }

      header.nav[data-qg-shared-header] .nav-links > a:hover,
      header.nav[data-qg-shared-header] .nav-dropdown.open .nav-dropdown-toggle,
      header.nav[data-qg-shared-header] .nav-dropdown:focus-within .nav-dropdown-toggle {
        color: #fff;
        border-color: rgba(105,255,240,.16);
        background: rgba(105,255,240,.055);
      }

      header.nav[data-qg-shared-header] .nav-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
      }

      header.nav[data-qg-shared-header] .nav-dropdown-menu {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        min-width: 0 !important;
        max-height: 0;
        padding: 0 8px;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow: hidden;
        transform: none !important;
        border-color: transparent;
        background: rgba(255,255,255,.022);
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: max-height .28s ease, padding .22s ease, opacity .2s ease, visibility .2s ease;
      }

      header.nav[data-qg-shared-header] .nav-dropdown-menu::before { display: none; }

      header.nav[data-qg-shared-header] .nav-dropdown.open .nav-dropdown-menu,
      header.nav[data-qg-shared-header] .nav-dropdown:focus-within .nav-dropdown-menu {
        max-height: 360px;
        padding: 8px;
        margin: 6px 0 10px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        border: 1px solid rgba(255,255,255,.07);
      }

      header.nav[data-qg-shared-header] .nav-links .nav-dropdown-menu a {
        min-height: 42px;
        padding: 11px 12px;
        line-height: 1.35;
        white-space: normal !important;
      }
    }

    @media (max-width: 900px) {
      footer.qg-footer[data-qg-shared-footer] .qg-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      footer.qg-footer[data-qg-shared-footer] .qg-footer-brand {
        grid-column: 1 / -1;
        max-width: 34rem;
      }
    }

    @media (max-width: 767px) {
      header.nav[data-qg-shared-header] {
        height: 76px;
        padding: 0 18px;
      }

      header.nav[data-qg-shared-header] .brand { font-size: 15px; }
    }

    @media (max-width: 640px) {
      footer.qg-footer[data-qg-shared-footer] .qg-footer-inner { padding-top: 3rem; }

      footer.qg-footer[data-qg-shared-footer] .qg-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.65rem 1rem;
      }

      footer.qg-footer[data-qg-shared-footer] .qg-footer-brand {
        grid-column: 1 / -1;
      }

      footer.qg-footer[data-qg-shared-footer] .qg-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* WordPress integration scroll safety patch */
html,
body {
  min-height: 100%;
  overflow-x: hidden;
}
body:not(.project-brief-is-open) {
  overflow-y: auto;
}
.page {
  overflow-x: hidden;
  overflow-y: visible;
}

/* Brand mark beside Quant Glob logo text - editable from WordPress Customizer. */
.brand .qg-brand-mark,
.qg-footer-logo .qg-brand-mark,
header.nav[data-qg-shared-header] .brand .qg-brand-mark,
footer.qg-footer[data-qg-shared-footer] .qg-footer-logo .qg-brand-mark {
  width: var(--qg-brand-mark-size, 34px) !important;
  height: var(--qg-brand-mark-size, 34px) !important;
  display: block !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  filter: drop-shadow(0 0 12px rgba(105,255,240,.22)) drop-shadow(0 8px 20px rgba(0,0,0,.28));
}

.brand,
.qg-footer-logo,
header.nav[data-qg-shared-header] .brand,
footer.qg-footer[data-qg-shared-footer] .qg-footer-logo {
  gap: .58rem !important;
}

@media (max-width: 560px) {
  .brand .qg-brand-mark,
  header.nav[data-qg-shared-header] .brand .qg-brand-mark {
    width: min(var(--qg-brand-mark-size, 34px), 30px) !important;
    height: min(var(--qg-brand-mark-size, 34px), 30px) !important;
  }
}
