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

    html {
      scroll-behavior: smooth
    }

    :root {
      --cream: #EFEBDE;
      --cream2: #E8E4D2;
      --green: #B3E29C;
      --green-bright: #C8E060;
      --text: #1C1E18;
      --muted: #5C5E56;
      --light: #8C8E86;
      --border: rgba(28, 30, 24, 0.10);
      --font: 'Plus Jakarta Sans', system-ui, sans-serif;
      --ease: cubic-bezier(.25, .46, .45, .94);
    }

    body {
      background: #F6F5F0;
      color: var(--text);
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden
    }

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

    ::-webkit-scrollbar {
      width: 4px
    }

    ::-webkit-scrollbar-track {
      background: #F6F5F0
    }

    ::-webkit-scrollbar-thumb {
      background: rgba(28, 30, 24, .2);
      border-radius: 2px
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-bottom: 1px solid transparent;
      transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
    }

    nav.scrolled {
      background: rgba(246, 245, 240, .92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(28, 30, 24, .08);
    }

    .nav-logo {
      font-size: .95rem;
      font-weight: 600;
      letter-spacing: -.02em;
      cursor: pointer
    }

    .nav-center {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%)
    }

    .nav-item>a {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      border-radius: 100px;
      font-size: .85rem;
      font-weight: 400;
      color: var(--muted);
      transition: color .2s, background .2s;
      cursor: pointer;
      white-space: nowrap
    }

    .nav-item>a:hover,
    .nav-item.active>a {
      color: var(--text);
      background: rgba(28, 30, 24, .06)
    }

    .nav-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--text);
      flex-shrink: 0;
      opacity: 0;
      transition: opacity .2s
    }

    .nav-item.active .nav-dot {
      opacity: 1
    }

    /* mega */
    .mega-wrap {
      position: relative
    }

    .mega-menu {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 8px 48px rgba(0, 0, 0, .10);
      padding: 28px 32px;
      min-width: 680px;
      border: 1px solid rgba(0, 0, 0, .06);
      z-index: 600
    }

    .mega-wrap:hover .mega-menu {
      display: flex
    }

    .mega-left {
      background: rgba(179, 226, 156, .35);
      border-radius: 12px;
      padding: 22px 24px;
      min-width: 200px;
      margin-right: 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between
    }

    .mega-left h3 {
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.45;
      color: var(--text)
    }

    .mega-left a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .82rem;
      font-weight: 500;
      color: var(--text);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 7px 16px;
      width: fit-content;
      margin-top: 24px;
      transition: background .2s
    }

    .mega-left a:hover {
      background: rgba(28, 30, 24, .06)
    }

    .mega-cols {
      display: flex;
      gap: 40px
    }

    .mega-col-title {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--light);
      margin-bottom: 14px
    }

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

    .mega-col li a {
      font-size: .875rem;
      color: var(--muted);
      transition: color .2s
    }

    .mega-col li a:hover {
      color: var(--text)
    }

    .nav-cta {
      background: var(--text);
      color: #fff;
      padding: 10px 22px;
      border-radius: 100px;
      font-size: .85rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: opacity .2s;
      white-space: nowrap;
      flex-shrink: 0
    }

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

    /* ── PAGE SYSTEM ── */
    .page {
      display: none
    }

    .page.active {
      display: block
    }

    /* ── HERO BASE ── */
    .hero {
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 0 60px 72px
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 480px
    }

    .hero-label {
      display: none
    }

    .hero-content h1 {
      font-size: clamp(2.6rem, 4.4vw, 4rem);
      font-weight: 300;
      letter-spacing: -.025em;
      line-height: 1.08;
      color: var(--text);
      margin-bottom: 20px
    }

    .word-cycler {
      display: inline-grid;
      grid-template-columns: 1fr;
      justify-items: start;
      vertical-align: bottom;
      overflow: hidden;
      color: #6d963c;
      /* subtle green brand pop */
      font-style: italic;
      padding: 0 4px;
      margin-bottom: -0.1em;
      /* Optical alignment offset */
    }

    .wc-word {
      grid-area: 1 / 1;
      line-height: inherit;
      padding-bottom: 0.1em;
      /* minor descender clearance inside mask */
      opacity: 0;
      transform: translateY(100%);
      animation: aptos-swap 8s cubic-bezier(0.87, 0, 0.13, 1) infinite;
    }

    /* Stagger precisely every 2s for 4 elements to complete an 8s cycle */
    .wc-word:nth-child(1) {
      animation-delay: 0s;
    }

    .wc-word:nth-child(2) {
      animation-delay: 2s;
    }

    .wc-word:nth-child(3) {
      animation-delay: 4s;
    }

    .wc-word:nth-child(4) {
      animation-delay: 6s;
    }

    @keyframes aptos-swap {
      0% {
        opacity: 0;
        transform: translateY(100%);
      }

      5%,
      25% {
        opacity: 1;
        transform: translateY(0%);
      }

      30%,
      100% {
        opacity: 0;
        transform: translateY(-100%);
      }
    }

    .hero-content p {
      font-size: .92rem;
      color: rgba(28, 30, 24, .60);
      max-width: 380px;
      margin-bottom: 32px;
      line-height: 1.7
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap
    }

    /* buttons */
    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--text);
      color: #fff;
      padding: 14px 28px;
      border-radius: 100px;
      font-size: .875rem;
      font-weight: 500;
      transition: opacity .2s, transform .2s
    }

    .btn-dark:hover {
      opacity: .82;
      transform: translateY(-1px)
    }

    .btn-dark .arr {
      background: rgba(255, 255, 255, .15);
      border-radius: 50%;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .75rem
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(28, 30, 24, .22);
      color: var(--text);
      padding: 14px 28px;
      border-radius: 100px;
      font-size: .875rem;
      font-weight: 500;
      transition: background .2s
    }

    .btn-outline:hover {
      background: rgba(28, 30, 24, .05)
    }

    /* ── FADE-IN ── */
    .fi {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .65s var(--ease), transform .65s var(--ease)
    }

    .fi.vis {
      opacity: 1;
      transform: translateY(0)
    }

    /* ── HERO CANVAS ── */
    canvas.hero-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      display: block
    }

    /* ── MARQUEE ── */
    .marquee-strip {
      padding: 20px 0;
      background: rgba(28, 30, 24, .04);
      border-top: 1px solid rgba(28, 30, 24, .08);
      border-bottom: 1px solid rgba(28, 30, 24, .08);
      overflow: hidden;
      white-space: nowrap
    }

    .marquee-inner {
      display: inline-flex;
      gap: 48px;
      animation: marquee 22s linear infinite
    }

    .marquee-inner:hover {
      animation-play-state: paused
    }

    @keyframes marquee {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    .m-item {
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .04em;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 16px
    }

    .m-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--light);
      flex-shrink: 0
    }

    /* ── SECTION ── */
    .section {
      padding: 110px 60px
    }

    .section-alt {
      background: rgba(28, 30, 24, .03)
    }

    .sec-label {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--light);
      margin-bottom: 16px
    }

    .section h2,
    .sec-h2 {
      font-size: clamp(2rem, 3.5vw, 2.9rem);
      font-weight: 400;
      letter-spacing: -.025em;
      line-height: 1.15;
      margin-bottom: 64px
    }

    /* ── SERVICE CARDS ── */
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px
    }

    .svc-card {
      background: rgba(239, 235, 222, .72);
      border-radius: 20px;
      padding: 36px 32px;
      border: 1px solid rgba(28, 30, 24, .08);
      transition: background .3s, transform .3s;
      cursor: default
    }

    .svc-card:hover {
      background: rgba(239, 235, 222, .92);
      transform: translateY(-2px)
    }

    .svc-num {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      color: var(--light);
      display: block;
      margin-bottom: 28px
    }

    .svc-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: -.02em;
      margin-bottom: 10px
    }

    .svc-card p {
      font-size: .875rem;
      color: var(--muted);
      line-height: 1.7
    }

    .svc-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .82rem;
      font-weight: 600;
      color: var(--text);
      margin-top: 22px;
      transition: gap .2s;
      cursor: pointer
    }

    .svc-link:hover {
      gap: 10px
    }

    /* ── STATS ── */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(28, 30, 24, .12);
      border-radius: 20px;
      overflow: hidden;
      margin-top: 60px
    }

    .stat {
      background: var(--cream);
      padding: 40px 36px
    }

    .stat-num {
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      font-weight: 300;
      letter-spacing: -.04em;
      line-height: 1;
      margin-bottom: 8px
    }

    .stat-label {
      font-size: .85rem;
      color: var(--muted)
    }

    /* ── TESTIMONIALS ── */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px
    }

    .testi {
      background: rgba(239, 235, 222, .72);
      border-radius: 20px;
      padding: 36px;
      border: 1px solid rgba(28, 30, 24, .08)
    }

    .testi-q {
      font-size: .95rem;
      color: var(--text);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 24px
    }

    .testi-name {
      font-size: .875rem;
      font-weight: 600
    }

    .testi-role {
      font-size: .8rem;
      color: var(--light);
      margin-top: 3px
    }

    /* ── CERTS ── */
    .certs {
      padding: 44px 60px;
      border-top: 1px solid var(--border)
    }

    .certs-lbl {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--light);
      margin-bottom: 18px
    }

    .certs-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px
    }

    .cert {
      font-size: .8rem;
      font-weight: 500;
      color: var(--muted);
      padding: 7px 18px;
      border-radius: 100px;
      border: 1px solid rgba(28, 30, 24, .15);
      background: rgba(239, 235, 222, .5);
      transition: background .2s, color .2s;
      cursor: default
    }

    .cert:hover {
      background: rgba(239, 235, 222, .9);
      color: var(--text)
    }

    /* ── CTA BAND ── */
    .cta-band {
      padding: 120px 60px;
      background: radial-gradient(ellipse 65% 80% at 85% 105%, #a8d880 0%, #b3e29c 42%, #c4eaac 72%, #ceedbb 100%);
      position: relative;
      overflow: hidden
    }

    .cta-arc {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(60, 88, 22, .12);
      pointer-events: none
    }

    .cta-arc:nth-child(1) {
      width: 700px;
      height: 700px;
      right: -8%;
      bottom: -40%
    }

    .cta-arc:nth-child(2) {
      width: 460px;
      height: 460px;
      right: 4%;
      bottom: -20%
    }

    .cta-band h2 {
      font-size: clamp(2.5rem, 5.5vw, 4.8rem);
      font-weight: 400;
      letter-spacing: -.035em;
      line-height: 1.07;
      margin-bottom: 18px;
      max-width: 720px;
      position: relative
    }

    .cta-band p {
      font-size: 1rem;
      color: var(--muted);
      margin-bottom: 40px;
      max-width: 420px;
      position: relative
    }

    .cta-btns {
      display: flex;
      gap: 12px;
      position: relative
    }

    /* ── ACCORDION ── */
    .acc-section {
      padding: 80px 60px;
      background: rgba(28, 30, 24, .03)
    }

    .accordion {
      border-top: 1px solid var(--border);
      margin-top: 32px
    }

    .acc-item {
      border-bottom: 1px solid var(--border);
      overflow: hidden
    }

    .acc-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 26px 0;
      cursor: pointer
    }

    .acc-header h3 {
      font-size: 1.15rem;
      font-weight: 500;
      letter-spacing: -.02em
    }

    .acc-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--muted);
      transition: transform .3s, background .25s, color .25s;
      flex-shrink: 0
    }

    .acc-item.open .acc-icon {
      transform: rotate(45deg);
      background: var(--text);
      color: #fff;
      border-color: var(--text)
    }

    .acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .42s var(--ease)
    }

    .acc-item.open .acc-body {
      max-height: 360px
    }

    .acc-body-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      padding-bottom: 32px
    }

    .acc-body-inner p {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.75
    }

    .acc-img {
      background: rgba(239, 235, 222, .6);
      border-radius: 16px;
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.8rem;
      border: 1px solid rgba(28, 30, 24, .08)
    }

    /* ── SERVICE ACCORDION (home) ── */
    .svc-acc {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 48px
    }

    .sva-item {
      background: rgba(239, 235, 222, .45);
      border-radius: 18px;
      border: 1px solid rgba(28, 30, 24, .07);
      overflow: hidden;
      transition: background .28s
    }

    .sva-item.open {
      background: rgba(239, 235, 222, .78)
    }

    .sva-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 26px 36px;
      cursor: pointer;
      user-select: none;
      -webkit-user-select: none
    }

    .sva-header h3 {
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: -.022em;
      color: rgba(28, 30, 24, .45);
      transition: color .25s
    }

    .sva-item.open .sva-header h3 {
      color: var(--text)
    }

    .sva-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #c8e060;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      cursor: pointer;
      transition: transform .38s var(--ease), background .28s
    }

    .sva-item.open .sva-btn {
      background: var(--text);
      transform: rotate(45deg)
    }

    .sva-btn svg {
      width: 14px;
      height: 14px;
      stroke: var(--text);
      stroke-width: 2.2;
      fill: none;
      transition: stroke .28s
    }

    .sva-item.open .sva-btn svg {
      stroke: #fff
    }

    .sva-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .50s var(--ease)
    }

    .sva-item.open .sva-body {
      max-height: 420px
    }

    .sva-body-inner {
      padding: 4px 36px 36px
    }

    .sva-body-inner>p {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.82;
      margin-bottom: 26px
    }

    .sva-tags-lbl {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--light);
      margin-bottom: 10px
    }

    .sva-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 26px
    }

    .sva-tag {
      border: 1px solid rgba(28, 30, 24, .14);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: .78rem;
      color: var(--muted);
      background: transparent
    }

    .sva-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .875rem;
      font-weight: 500;
      color: var(--text)
    }

    /* ── SCROLL STACK CARDS ── */
    .scroll-stack {
      position: relative;
      padding-bottom: 12vh;
    }

    .sc-item {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      will-change: transform;
      transform-origin: top center;
    }

    .sc-item:first-child {
      position: relative;
    }

    .sc-card {
      border-radius: 56px;
      /* Premium rounded corners */
      width: calc(100% - 40px);
      margin: 4vh auto 0 auto;
      aspect-ratio: 16 / 9;
      min-height: 60vh;
      padding: 60px 50px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(28, 30, 24, 0.05);
    }

    .sc-bg-0 {
      background: linear-gradient(140deg, #F6F5F0 0%, #e4f2d0 100%)
    }

    .sc-bg-1 {
      background: linear-gradient(140deg, #eef5e3 0%, #d8ecb8 100%)
    }

    .sc-bg-2 {
      background: linear-gradient(140deg, #e6f0d8 0%, #cce7a0 100%)
    }

    .sc-bg-3 {
      background: linear-gradient(140deg, #deecd0 0%, #c2e28a 100%)
    }

    .sc-bg-4 {
      background: linear-gradient(140deg, #d6e8c6 0%, #b8dd78 100%)
    }

    .sc-bg-5 {
      background: linear-gradient(140deg, #cce4bc 0%, #aed868 100%)
    }

    /* Card title: dominant large type — primary word dark, secondary muted */
    .sc-title {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 8px
    }

    .sc-t1 {
      display: block;
      font-size: clamp(3.2rem, 6.5vw, 5.6rem);
      font-weight: 500;
      letter-spacing: -.04em;
      line-height: 1.0;
      color: #1C1E18
    }

    .sc-t2 {
      display: block;
      font-size: clamp(3.2rem, 6.5vw, 5.6rem);
      font-weight: 400;
      letter-spacing: -.04em;
      line-height: 1.0;
      color: rgba(28, 30, 24, .28)
    }

    /* Bottom zone: tags + description stacked */
    .sc-bottom {
      display: flex;
      flex-direction: column;
      gap: 20px
    }

    .sc-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px
    }

    .sc-tag {
      border: 1px solid rgba(28, 30, 24, .18);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: .78rem;
      font-weight: 400;
      color: rgba(28, 30, 24, .55)
    }

    .sc-desc {
      display: flex;
      gap: 12px;
      align-items: flex-start
    }

    .sc-star {
      color: #4a7a1e;
      font-size: .9rem;
      margin-top: 2px;
      flex-shrink: 0;
      opacity: .7
    }

    .sc-desc p {
      font-size: .875rem;
      line-height: 1.72;
      color: rgba(28, 30, 24, .50);
      max-width: 560px
    }

    /* ── INDUSTRIES CARD ── */
    .ind-card {
      background: var(--cream);
      border-radius: 20px;
      padding: 36px;
      border: 1px solid rgba(28, 30, 24, .08);
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 48px
    }

    .ind-card-left h3 {
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.5;
      margin-bottom: 24px;
      color: var(--text)
    }

    .ind-card-link {
      font-size: .85rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--text);
      transition: gap .2s
    }

    .ind-card-link:hover {
      gap: 10px
    }

    /* ── LUSION WORK CARDS ── */
    .work-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
    }

    .work-img-wrap {
      width: 100%;
      aspect-ratio: 16/11;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
    }

    .work-img-bg {
      position: absolute;
      inset: 0;
      transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    }

    .work-card:hover .work-img-bg {
      transform: scale(1.05);
    }

    .work-tags {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--text);
      margin-top: 28px;
    }

    .work-title {
      font-size: clamp(2rem, 3vw, 2.5rem);
      font-weight: 400;
      margin-top: 8px;
      letter-spacing: -0.02em;
      position: relative;
      padding-left: 0;
      transition: padding-left 0.4s cubic-bezier(0.2, 1, 0.3, 1);
      display: flex;
      align-items: center;
    }

    .work-arr {
      opacity: 0;
      transform: translateX(-15px);
      transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
      position: absolute;
      left: 0;
      font-weight: 300;
    }

    .work-card:hover .work-title {
      padding-left: 40px;
    }

    .work-card:hover .work-arr {
      opacity: 1;
      transform: translateX(0);
    }

    .ind-cols {
      display: flex;
      gap: 48px
    }

    .ind-col-title {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--light);
      margin-bottom: 14px
    }

    .ind-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px
    }

    .ind-col li a {
      font-size: .875rem;
      color: var(--muted);
      transition: color .2s
    }

    .ind-col li a:hover {
      color: var(--text)
    }

    /* ── BENEFITS ── */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(28, 30, 24, .12);
      border-radius: 20px;
      overflow: hidden;
      margin-top: 60px
    }

    .benefit {
      background: var(--cream);
      padding: 48px 40px
    }

    .benefit-num {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--light);
      display: block;
      margin-bottom: 22px
    }

    .benefit h3 {
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: -.02em;
      margin-bottom: 10px
    }

    .benefit p {
      font-size: .875rem;
      color: var(--muted);
      line-height: 1.7
    }

    /* ── ABOUT SPLIT ── */
    .about-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-bottom: 64px
    }

    .about-split-left p {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.85
    }

    .about-split-right {
      background: rgba(239, 235, 222, .55);
      border-radius: 24px;
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      font-size: 4rem;
      border: 1px solid rgba(28, 30, 24, .08)
    }

    /* ── FOOTER ── */
    footer {
      background: var(--text);
      color: rgba(255, 255, 255, .65);
      padding: 80px 60px 40px
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr repeat(4, 1fr);
      gap: 48px;
      margin-bottom: 72px
    }

    .footer-logo {
      font-size: .95rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 14px;
      letter-spacing: -.02em
    }

    .footer-brand p {
      font-size: .85rem;
      line-height: 1.75;
      max-width: 260px
    }

    footer h4 {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
      margin-bottom: 18px
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px
    }

    .footer-col li a {
      font-size: .85rem;
      color: rgba(255, 255, 255, .55);
      transition: color .2s
    }

    .footer-col li a:hover {
      color: #fff
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 28px;
      border-top: 1px solid rgba(255, 255, 255, .09);
      font-size: .8rem;
      color: rgba(255, 255, 255, .35)
    }

    .footer-socials {
      display: flex;
      gap: 8px
    }

    .fsoc {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .14);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .78rem;
      color: rgba(255, 255, 255, .45);
      transition: border-color .2s, color .2s
    }

    .fsoc:hover {
      border-color: rgba(255, 255, 255, .4);
      color: #fff
    }



    /* ── DEV TABS (hidden) ── */


    /* ── CONTACT ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 120px;
      max-width: 1200px;
    }
    .contact-form {
      background: var(--cream);
      padding: 60px;
      border-radius: 24px;
      border: 1px solid rgba(28, 30, 24, .08);
      box-shadow: 0 12px 30px rgba(0,0,0,0.02);
    }
    .form-row {
      display: flex;
      gap: 24px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 26px;
      flex: 1;
    }
    .form-group label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 10px;
    }
    .form-group input, .form-group textarea {
      padding: 18px 24px;
      border-radius: 12px;
      border: 1px solid rgba(28, 30, 24, .12);
      background: #F6F5F0;
      font-family: inherit;
      font-size: 1rem;
      color: var(--text);
      transition: border-color .3s, box-shadow .3s, background-color .3s;
      outline: none;
    }
    .form-group input:focus, .form-group textarea:focus {
      border-color: var(--text);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(179, 226, 156, 0.3);
    }
    .contact-info {
      padding-top: 20px;
    }
    .info-block {
      margin-bottom: 56px;
    }
    .info-block h3 {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--light);
      margin-bottom: 14px;
    }
    .info-block p {
      color: var(--muted);
      line-height: 1.8;
      font-size: 1rem;
    }
    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr; gap: 60px; }
      .contact-form { padding: 40px; }
      .form-row { flex-direction: column; gap: 0; }
    }
    /* ── SINGLE SERVICE PAGE ── */
    .ssvc-hero {
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      padding: 120px 40px 60px;
      overflow: hidden;
    }
    .ssvc-blob {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(circle at center, rgba(168, 216, 128, 0.4) 0%, rgba(168, 216, 128, 0) 70%);
      filter: blur(50px);
      z-index: 0;
      border-radius: 50%;
      animation: pulse-blob 8s ease-in-out infinite alternate;
      pointer-events: none;
    }
    .ssvc-blob.alt {
      background: radial-gradient(circle at center, rgba(200, 224, 96, 0.35) 0%, rgba(200, 224, 96, 0) 70%);
      animation: pulse-blob-alt 10s ease-in-out infinite alternate;
    }
    @keyframes pulse-blob {
      0% { transform: translate(-50%, -40%) scale(1); opacity: 0.8; }
      100% { transform: translate(-50%, -60%) scale(1.1); opacity: 1; }
    }
    @keyframes pulse-blob-alt {
      0% { transform: translate(-40%, -50%) scale(1.05); opacity: 0.9; }
      100% { transform: translate(-60%, -50%) scale(0.95); opacity: 0.7; }
    }
    .ssvc-hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }
    .ssvc-hero-content h1 {
      font-size: clamp(3rem, 5.5vw, 4.8rem);
      font-weight: 400;
      letter-spacing: -0.03em;
      line-height: 1.05;
      margin-bottom: 24px;
      color: var(--text);
    }
    .ssvc-hero-content p {
      font-size: 1.15rem;
      color: var(--muted);
      max-width: 640px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }
    .ssvc-intro {
      padding: 100px 60px;
      background: rgba(28, 30, 24, 0.02);
    }
    .ssvc-intro-inner {
      display: flex;
      gap: 80px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: flex-start;
    }
    .ssvc-intro-left {
      flex: 1;
    }
    .ssvc-intro-left h2 {
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }
    .ssvc-intro-left h2 strong {
      font-weight: 500;
    }
    .ssvc-intro-right {
      flex: 1;
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.8;
      padding-top: 10px;
    }
    @media (max-width: 900px) {
      .ssvc-intro-inner { flex-direction: column; gap: 40px; }
    }
    .ssvc-features {
      padding: 100px 60px 140px;
      max-width: 1400px;
      margin: 0 auto;
    }
    .ssvc-feature {
      display: flex;
      background: var(--cream);
      border-radius: 32px;
      overflow: hidden;
      margin-bottom: 24px;
      border: 1px solid rgba(28, 30, 24, .06);
    }
    .ssvc-feature.alt {
      flex-direction: row-reverse;
    }
    .ssvc-feature-text {
      flex: 1;
      padding: 100px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .ssvc-feature-text h3 {
      font-size: 1.9rem;
      font-weight: 400;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }
    .ssvc-feature-text p {
      color: var(--muted);
      line-height: 1.75;
      font-size: 1.05rem;
    }
    .ssvc-feature-vis {
      flex: 1;
      background: rgba(28, 30, 24, 0.04);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      min-height: 480px;
    }
    @media (max-width: 900px) {
      .ssvc-feature, .ssvc-feature.alt { flex-direction: column; }
      .ssvc-feature-text { padding: 60px 40px; }
      .ssvc-feature-vis { min-height: 320px; }
    }
    
    .ssvc-vis-image {
      width: 90%;
      height: 90%;
      object-fit: contain;
      mix-blend-mode: multiply;
      position: relative;
      z-index: 2;
      filter: contrast(1.1) brightness(0.95);
    }
.ssvc-vis-icon {
      font-size: 7rem;
      opacity: 0.9;
      position: relative;
      z-index: 2;
    }
    .ssvc-vis-element {
      position: absolute;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(179, 226, 156, 0.3) 0%, transparent 60%);
      z-index: 1;
    }
    .ssvc-cta {
      text-align: center;
      padding: 80px 40px 120px;
    }
    .ssvc-cta h3 {
      font-size: 2.2rem;
      font-weight: 400;
      margin-bottom: 30px;
    }


    /* ── COMPREHENSIVE RESPONSIVE MOBILE OPTIMIZATIONS ── */
    @media (max-width: 1024px) {
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
      .mega-cols { flex-direction: column; gap: 32px; }
      .mega-left { margin-right: 0; margin-bottom: 32px; }
      .svc-grid, .testi-grid, .benefits-grid, .about-split { display: flex; flex-direction: column; }
      .stats-row { grid-template-columns: 1fr 1fr; display: grid; }
      .sc-card { 
        padding: 44px 28px; 
        aspect-ratio: auto; 
        width: calc(100% - 32px); 
        border-radius: 42px; 
        margin-top: 4vh; 
        min-height: 68vh; 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
      }
      .sc-t1, .sc-t2 { font-size: clamp(2.4rem, 8vw, 4rem); }
      .hero-content h1 { font-size: clamp(2.4rem, 8vw, 3.8rem); line-height: 1.1; }
      .section, .acc-section, .certs, .cta-band, .ssvc-intro, .ssvc-features { padding: 80px 24px; }
      .hero { padding: 0 24px 72px; min-height: 80vh; }
      nav { padding: 0 24px; }
      
      .sva-header { padding: 20px 24px; }
      .sva-body-inner { padding: 0 24px 24px; }
      .acc-body-inner { grid-template-columns: 1fr; gap: 24px; }
      
      .ssvc-hero { padding: 120px 24px 40px; min-height: auto; }
      .ssvc-hero-content h1 { font-size: clamp(2.4rem, 8vw, 3.8rem); line-height: 1.1; }
      .ssvc-blob { width: 400px; height: 400px; }
      .ssvc-intro-inner { flex-direction: column; gap: 32px; }
      
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .form-row { flex-direction: column; gap: 0; }
      .contact-form { padding: 40px 30px; border-radius: 20px; }
      
      .ind-card { display: flex; flex-direction: column; gap: 24px; padding: 24px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
      .footer-socials { width: 100%; justify-content: flex-start; }
    }

    @media (max-width: 768px) {
      .nav-center {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        height: max-content;
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        background: #F6F5F0;
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(.25,.46,.45,.94);
        z-index: 500;
        border-bottom: 1px solid rgba(28, 30, 24, .08);
      }
      .nav-center.mobile-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }
      .nav-item > a {
        font-size: 1.15rem;
        padding: 16px 0;
        border-bottom: 1px solid rgba(28, 30, 24, .06);
        border-radius: 0;
        justify-content: flex-start;
      }
      .nav-item > a:hover { background: transparent; color: var(--text); }
      .nav-dot { display: none; }
      
      /* Completely hide mega menu on small mobile screens – users can tap Services directly */
      .mega-menu { display: none !important; }
      
      .nav-mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 32px;
        height: 32px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 600;
        padding: 0;
      }
      .nav-mobile-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text);
        transition: all 0.3s;
        border-radius: 2px;
        transform-origin: left center;
      }
      .nav-mobile-toggle.active span:nth-child(1) { transform: rotate(41deg); }
      .nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
      .nav-mobile-toggle.active span:nth-child(3) { transform: rotate(-41deg); }
      
      .stats-row { grid-template-columns: 1fr; }
      .stat-num { font-size: 2.8rem; }
      
      .ssvc-feature-text { padding: 48px 32px; }
      .ssvc-feature-text h3 { font-size: 1.5rem; line-height: 1.3;}
      .ssvc-vis-icon { font-size: 4rem; }
      .ssvc-feature-vis { min-height: 240px; }
      
      .footer-top { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px;}
      .footer-brand { margin-bottom: 0px; }
      .cta-band { padding: 80px 24px; }
      .cta-band h2 { font-size: clamp(2.2rem, 8vw, 3rem); line-height: 1.1; }
      
      .cta-btns, .hero-btns { flex-direction: column; width: 100%; align-items: stretch; }
      .cta-btns a, .hero-btns a { width: 100%; justify-content: center; text-align: center; }
      
      .about-split-right { height: 240px; font-size: 3rem; }
    }
    
    @media (min-width: 769px) {
      .nav-mobile-toggle { display: none; }
    }

    .page-tabs {
      display: none
    }

    /* ══════════════════════════════════════════
       SERVICE DETAIL PAGES
    ══════════════════════════════════════════ */

    /* Visual hero — white section with blobs */
    .svc-visual-hero {
      min-height: 100vh;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding-top: 68px
    }

    .svc-blob-scene {
      position: relative;
      width: min(600px, 90vw);
      height: min(600px, 90vw);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .svc-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(2px);
      opacity: .9
    }

    /* headline sits over the blobs */
    .svc-visual-headline {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px;
      z-index: 2
    }

    .svc-visual-headline h1 {
      font-size: clamp(2rem, 4.5vw, 3.6rem);
      font-weight: 300;
      letter-spacing: -.03em;
      line-height: 1.1;
      color: var(--text);
      max-width: 760px
    }

    /* Intro band — sage/cream with centred text */
    .svc-intro-band {
      background: #DDDDD0;
      padding: 96px 60px;
      text-align: center
    }

    .svc-intro-band p {
      font-size: clamp(1.1rem, 2vw, 1.45rem);
      font-weight: 300;
      line-height: 1.65;
      letter-spacing: -.01em;
      color: var(--text);
      max-width: 860px;
      margin: 0 auto 40px
    }

    /* Service features section */
    .svc-features {
      padding: 100px 60px
    }

    .svc-features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 56px
    }

    .svc-feat-card {
      background: rgba(239, 235, 222, .72);
      border-radius: 20px;
      padding: 36px 32px;
      border: 1px solid rgba(28, 30, 24, .08);
      transition: background .3s, transform .3s
    }

    .svc-feat-card:hover {
      background: rgba(239, 235, 222, .95);
      transform: translateY(-2px)
    }

    .svc-feat-icon {
      width: 44px;
      height: 44px;
      background: rgba(179, 226, 156, .45);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 1.25rem
    }

    .svc-feat-card h3 {
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -.02em;
      margin-bottom: 10px
    }

    .svc-feat-card p {
      font-size: .875rem;
      color: var(--muted);
      line-height: 1.7
    }

    /* Process / How We Work */
    .svc-process {
      background: rgba(28, 30, 24, .03);
      padding: 100px 60px
    }

    .svc-process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(28, 30, 24, .12);
      border-radius: 20px;
      overflow: hidden;
      margin-top: 56px
    }

    .svc-step {
      background: var(--cream);
      padding: 40px 32px
    }

    .svc-step-num {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--light);
      margin-bottom: 16px;
      display: block
    }

    .svc-step h4 {
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -.02em;
      margin-bottom: 10px
    }

    .svc-step p {
      font-size: .84rem;
      color: var(--muted);
      line-height: 1.65
    }

    /* Help CTA at bottom of service page */
    .svc-help-cta {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 340px;
      border-radius: 0;
      overflow: hidden
    }

    .svc-help-left {
      background: #F0F0E8;
      padding: 72px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center
    }

    .svc-help-left h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 300;
      letter-spacing: -.025em;
      margin-bottom: 16px
    }

    .svc-help-left p {
      font-size: .92rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 400px;
      margin-bottom: 32px
    }

    .svc-help-right {
      background: linear-gradient(135deg, rgba(200,224,96,.45) 0%, rgba(179,226,156,.65) 60%, rgba(200,224,96,.3) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden
    }

    .svc-help-orb {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 35%, rgba(200,224,96,.9) 0%, rgba(179,226,156,.7) 45%, transparent 70%);
      position: relative
    }

    .svc-help-orb::after {
      content: '';
      position: absolute;
      width: 140px;
      height: 140px;
      background: radial-gradient(circle at 50% 50%, rgba(150,190,80,.6) 0%, transparent 70%);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%)
    }

    /* ── BLOB SHAPES for each service ── */

    /* Mobile: rounded phone-like rect + orbs */
    .blob-mobile-rect {
      width: 220px;
      height: 340px;
      border-radius: 42px;
      background: linear-gradient(160deg, rgba(200,224,96,.55) 0%, rgba(179,226,156,.5) 100%);
      border: 1.5px solid rgba(200,224,96,.4)
    }

    .blob-mobile-orb1 {
      width: 180px;
      height: 180px;
      background: radial-gradient(circle at 40% 40%, rgba(200,224,96,.75) 0%, rgba(179,226,156,.4) 60%, transparent 80%);
      top: 10%;
      left: 52%
    }

    .blob-mobile-orb2 {
      width: 120px;
      height: 120px;
      background: radial-gradient(circle at 50% 50%, rgba(150,200,80,.55) 0%, transparent 70%);
      bottom: 12%;
      left: 10%
    }

    /* Web: three overlapping circles (horizontal) */
    .blob-web-l {
      width: 280px;
      height: 280px;
      background: radial-gradient(circle at 55% 45%, rgba(200,224,96,.15) 0%, rgba(200,224,96,.08) 60%, transparent 80%);
      border: 1.5px solid rgba(179,226,156,.55);
      left: 4%;
      top: 50%;
      transform: translateY(-50%)
    }

    .blob-web-c {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle at 45% 40%, rgba(200,224,96,.9) 0%, rgba(179,226,156,.65) 50%, transparent 75%);
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%)
    }

    .blob-web-r {
      width: 280px;
      height: 280px;
      background: radial-gradient(circle at 45% 50%, rgba(200,224,96,.5) 0%, rgba(179,226,156,.35) 55%, transparent 80%);
      right: 4%;
      top: 50%;
      transform: translateY(-50%)
    }

    /* Cloud: three stacked / merged circles */
    .blob-cloud-mid {
      width: 300px;
      height: 280px;
      background: radial-gradient(ellipse at 50% 45%, rgba(200,224,96,.85) 0%, rgba(179,226,156,.6) 50%, transparent 75%);
      top: 8%;
      left: 50%;
      transform: translateX(-50%)
    }

    .blob-cloud-l {
      width: 230px;
      height: 230px;
      background: radial-gradient(circle at 55% 45%, rgba(200,224,96,.6) 0%, rgba(179,226,156,.45) 55%, transparent 78%);
      bottom: 8%;
      left: 6%
    }

    .blob-cloud-r {
      width: 230px;
      height: 230px;
      background: radial-gradient(circle at 45% 50%, rgba(200,224,96,.55) 0%, rgba(179,226,156,.4) 55%, transparent 78%);
      bottom: 8%;
      right: 6%
    }

    /* Tech Management: concentric / radar rings */
    .blob-mgmt-core {
      width: 200px;
      height: 200px;
      background: radial-gradient(circle at 50% 50%, rgba(200,224,96,.9) 0%, rgba(179,226,156,.65) 45%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%)
    }

    .blob-mgmt-ring1 {
      width: 320px;
      height: 320px;
      background: radial-gradient(circle at 50% 50%, transparent 38%, rgba(200,224,96,.3) 42%, rgba(179,226,156,.2) 50%, transparent 56%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%)
    }

    .blob-mgmt-ring2 {
      width: 460px;
      height: 460px;
      background: radial-gradient(circle at 50% 50%, transparent 38%, rgba(200,224,96,.18) 41%, rgba(179,226,156,.12) 48%, transparent 52%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%)
    }

    /* Financial: diamond / gem shape + orbs */
    .blob-fin-diamond {
      width: 260px;
      height: 260px;
      background: linear-gradient(145deg, rgba(200,224,96,.6) 0%, rgba(179,226,156,.5) 100%);
      border: 1.5px solid rgba(200,224,96,.45);
      border-radius: 24px;
      transform: rotate(45deg);
      top: 50%;
      left: 50%;
      margin-top: -130px;
      margin-left: -130px
    }

    .blob-fin-glow {
      width: 320px;
      height: 320px;
      background: radial-gradient(circle at 50% 50%, rgba(200,224,96,.35) 0%, transparent 65%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%)
    }

    /* Strategy: compass — four directional blobs */
    .blob-strat-center {
      width: 180px;
      height: 180px;
      background: radial-gradient(circle at 50% 50%, rgba(200,224,96,.88) 0%, rgba(179,226,156,.6) 50%, transparent 72%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%)
    }

    .blob-strat-n {
      width: 160px;
      height: 160px;
      background: radial-gradient(circle at 50% 65%, rgba(200,224,96,.55) 0%, transparent 70%);
      top: 3%;
      left: 50%;
      transform: translateX(-50%)
    }

    .blob-strat-s {
      width: 160px;
      height: 160px;
      background: radial-gradient(circle at 50% 35%, rgba(200,224,96,.45) 0%, transparent 70%);
      bottom: 3%;
      left: 50%;
      transform: translateX(-50%)
    }

    .blob-strat-e {
      width: 150px;
      height: 150px;
      background: radial-gradient(circle at 35% 50%, rgba(200,224,96,.5) 0%, transparent 70%);
      right: 3%;
      top: 50%;
      transform: translateY(-50%)
    }

    .blob-strat-w {
      width: 150px;
      height: 150px;
      background: radial-gradient(circle at 65% 50%, rgba(200,224,96,.45) 0%, transparent 70%);
      left: 3%;
      top: 50%;
      transform: translateY(-50%)
    }
