    :root {
      --white: #ffffff;
      --off: #f7f7f5;
      --border: #e8e8e4;
      --muted: #9b9b96;
      --muted: #5c5c5c;
      --body: #3a3a38;
      --ink: #111110;
      --green: #006039;
      --green-d: #17a363;
      --radius: 14px;
      --radius-lg: 22px;
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
      --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.10), 0 4px 16px rgba(0, 0, 0, 0.06);
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
    }

    body {
      font-family: 'Instrument Sans', system-ui, sans-serif;
      background: var(--white);
      color: var(--body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }

    ::-webkit-scrollbar-thumb {
      background: var(--green);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--green-d);
    }

    ::-webkit-scrollbar-track {
      background: transparent;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      border: none;
      background: none;
      cursor: pointer;
      font: inherit;
    }

    #cur {
      position: fixed;
      width: 8px;
      height: 8px;
      background: var(--ink);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width .3s var(--ease-out), height .3s var(--ease-out), background .3s;
    }

    #cur-ring {
      position: fixed;
      width: 36px;
      height: 36px;
      border: 1.5px solid rgba(17, 17, 16, .18);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: opacity .3s;
    }

    .c-big #cur {
      width: 44px;
      height: 44px;
      background: rgba(29, 191, 115, .2);
    }

    .c-big #cur-ring {
      opacity: 0;
    }

    @media (hover:none) {

      #cur,
      #cur-ring {
        display: none;
      }
    }

    #prog {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--green);
      z-index: 8000;
      transform-origin: left;
      transform: scaleX(0);
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      transition: background .35s, box-shadow .35s;
    }

    nav.stuck {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: saturate(180%) blur(20px);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      box-shadow: 0 1px 0 var(--border);
    }

    .nav-logo {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.02em;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-logo-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      animation: breathe 3s ease-in-out infinite;
    }

    @keyframes breathe {

      0%,
      100% {
        transform: scale(1)
      }

      50% {
        transform: scale(1.5)
      }
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-size: .875rem;
      font-weight: 500;
      color: var(--body);
      transition: color .18s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--green);
      border-radius: 99px;
      transition: width .35s var(--ease-out);
    }

    .nav-links a:hover {
      color: var(--ink);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-btn {
      background: var(--ink);
      color: var(--white);
      padding: .55rem 1.35rem;
      border-radius: 99px;
      font-size: .85rem;
      font-weight: 600;
      transition: background .18s, transform .35s var(--ease-spring), box-shadow .35s;
    }

    .nav-btn:hover {
      background: #2a2a28;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
    }

    /* HERO */
    #hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 120px 5% 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero-mesh {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse 70% 50% at 20% 10%, rgba(29, 191, 115, .07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 102, 204, .06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 90%, rgba(29, 191, 115, .04) 0%, transparent 60%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(0, 0, 0, .088) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .088) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
      -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(29, 191, 115, .09);
      border: 1px solid rgba(29, 191, 115, .25);
      padding: .35rem 1rem;
      border-radius: 99px;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--green-d);
      margin-bottom: 2.2rem;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp .7s var(--ease-out) .2s forwards;
    }

    .hero-badge-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
    }

    .hero-h1 {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: clamp(2.8rem, 5.8vw, 5rem);
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: -0.04em;
      color: var(--ink);
      max-width: 920px;
      margin: 0 auto 1.4rem;
    }

    .hero-h1 .line {
      /* overflow: hidden; */
      display: block;
    }

    .hero-h1 .line span {
      display: block;
      opacity: 0;
      transform: translateY(100%);
      animation: lineUp .75s var(--ease-out) both;
    }

    .hero-h1 .line:nth-child(1) span {
      animation-delay: .35s;
    }

    .hero-h1 .line:nth-child(2) span {
      animation-delay: .5s;
    }

    .hero-h1 .line:nth-child(3) span {
      animation-delay: .65s;
    }

    .hero-h1 em {
      font-style: normal;
      color: var(--green);
    }

    .hero-sub {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 500px;
      margin: 0 auto 2.8rem;
      line-height: 1.65;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp .7s var(--ease-out) .85s forwards;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp .7s var(--ease-out) 1s forwards;
    }

    @media (max-width: 680px) {
      #hero{
        padding-bottom: 0px;
      }
    }

    .btn-green {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green);
      color: var(--white);
      padding: .85rem 2rem;
      border-radius: 99px;
      font-size: .95rem;
      font-weight: 600;
      transition: background .18s, transform .35s var(--ease-spring), box-shadow .35s;
    }

    .btn-green:hover {
      background: var(--green-d);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(29, 191, 115, .3);
    }

    .btn-green svg {
      transition: transform .35s var(--ease-spring);
    }

    .btn-green:hover svg {
      transform: translate(2px, -2px);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--ink);
      padding: .85rem 2rem;
      border-radius: 99px;
      border: 1.5px solid var(--border);
      font-size: .95rem;
      font-weight: 600;
      transition: border-color .18s, background .18s, transform .35s var(--ease-spring);
    }

    .btn-outline:hover {
      border-color: #c8c8c4;
      background: var(--off);
      transform: translateY(-1px);
    }

    .hero-proof {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      flex-wrap: wrap;
      margin-top: 3.5rem;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp .7s var(--ease-out) 1.15s forwards;
    }

    .proof-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .proof-avatars {
      display: flex;
    }

    .proof-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 2px solid var(--white);
      margin-left: -8px;
      font-size: .65rem;
      font-weight: 700;
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .proof-avatar:first-child {
      margin-left: 0;
    }

    .proof-avatar:nth-child(1) {
      background: linear-gradient(135deg, #006039, #0ea5e9);
    }

    .proof-avatar:nth-child(2) {
      background: linear-gradient(135deg, #8b5cf6, #ec4899);
    }

    .proof-avatar:nth-child(3) {
      background: linear-gradient(135deg, #f59e0b, #ef4444);
    }

    .proof-avatar:nth-child(4) {
      background: linear-gradient(135deg, #06b6d4, #3b82f6);
    }

    .proof-text {
      font-size: .82rem;
      color: var(--muted);
    }

    .proof-text strong {
      color: var(--ink);
      font-weight: 600;
    }

    .proof-divider {
      width: 1px;
      height: 24px;
      background: var(--border);
    }

    .proof-stars {
      color: #f5a623;
      font-size: .85rem;
    }

    .hero-mockup {
      position: relative;
      margin-top: 5rem;
      max-width: 900px;
      width: 100%;
      opacity: 0;
      transform: translateY(40px) scale(.97);
      animation: mockupIn .9s var(--ease-out) 1.3s forwards;
    }

    @keyframes mockupIn {
      to {
        opacity: 1;
        transform: translateY(0) scale(1)
      }
    }

    .mockup-browser {
      background: var(--white);
      border-radius: 16px;
      box-shadow: 0 0 0 1px var(--border), var(--shadow-lg), 0 60px 120px rgba(0, 0, 0, .12);
      overflow: hidden;
    }

    .mockup-bar {
      height: 40px;
      background: #f0f0ee;
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 8px;
      border-bottom: 1px solid var(--border);
    }

    .mockup-dots {
      display: flex;
      gap: 6px;
    }

    .mockup-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .mockup-dot:nth-child(1) {
      background: #ff5f57;
    }

    .mockup-dot:nth-child(2) {
      background: #febc2e;
    }

    .mockup-dot:nth-child(3) {
      background: #28c840;
    }

    .mockup-url {
      flex: 1;
      background: var(--white);
      border-radius: 6px;
      height: 22px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      padding: 0 10px;
      font-size: .7rem;
      color: var(--muted);
      font-weight: 500;
      margin: 0 auto;
      max-width: 340px;
    }

    .mockup-body {
      background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
      padding: 2.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      min-height: 260px;
    }

    .mockup-card {
      background: rgba(255, 255, 255, .06);
      border-radius: 12px;
      padding: 1.2rem;
      border: 1px solid rgba(255, 255, 255, .08);
      transition: background .35s, transform .35s var(--ease-spring);
    }

    .mockup-card:hover {
      background: rgba(255, 255, 255, .1);
      transform: translateY(-3px);
    }

    .mockup-card:nth-child(1) {
      grid-column: span 2;
      display: flex;
      align-items: center;
      gap: 1.2rem;
    }

    .mc-tag {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(29, 191, 115, .9);
      margin-bottom: .4rem;
    }

    .mc-title {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      font-weight: 700;
      color: rgba(255, 255, 255, .95);
      line-height: 1.2;
    }

    .mc-sub {
      font-size: .75rem;
      color: rgba(255, 255, 255, .4);
      margin-top: .4rem;
    }

    .mc-bar {
      height: 4px;
      border-radius: 99px;
      background: rgba(255, 255, 255, .1);
      margin-top: .8rem;
      overflow: hidden;
    }

    .mc-bar-fill {
      height: 100%;
      background: var(--green);
      border-radius: 99px;
      width: 0;
      transition: width 1.5s var(--ease-out);
    }

    .mc-num {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--white);
    }

    .mc-metric {
      font-size: .72rem;
      color: rgba(255, 255, 255, .45);
      margin-top: .2rem;
    }

    .mc-spark {
      margin-top: .6rem;
      display: flex;
      align-items: flex-end;
      gap: 3px;
      height: 30px;
    }

    .mc-spark-bar {
      flex: 1;
      border-radius: 3px;
      background: rgba(29, 191, 115, .25);
    }

    .mc-icon {
      font-size: 2.2rem;
      flex-shrink: 0;
    }

    .mc-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 1rem;
      background: var(--green);
      color: var(--white);
      padding: .45rem 1rem;
      border-radius: 99px;
      font-size: .75rem;
      font-weight: 600;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes lineUp {
      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* LOGOS */
    .logos-strip {
      padding: 2rem 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .logos-label {
      text-align: center;
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
      margin-bottom: 1.4rem;
    }

    .logos-track {
      display: flex;
      gap: 3.5rem;
      width: max-content;
      animation: scroll 22s linear infinite;
    }

    .logos-track:hover {
      animation-play-state: paused;
    }

    .logo-item {
      display: flex;
      align-items: center;
      gap: .5rem;
      white-space: nowrap;
      font-weight: 600;
      font-size: .9rem;
      color: #c0c0bb;
      transition: color .35s;
    }

    .logo-item:hover {
      color: var(--body);
    }

    @keyframes scroll {
      to {
        transform: translateX(-50%)
      }
    }

    /* SECTIONS */
    .section {
      padding: clamp(5rem, 9vw, 8rem) 5%;
    }

    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green-d);
      margin-bottom: 1rem;
    }

    .label::before {
      content: '';
      width: 16px;
      height: 1.5px;
      background: var(--green);
      border-radius: 99px;
    }

    .h2 {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: clamp(1.5rem, 4vw, 3.4rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: var(--ink);
    }

    .sub-copy {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 500px;
      margin-top: .8rem;
    }

    .r {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
    }

    .r.on {
      opacity: 1;
      transform: translateY(0);
    }

    .r.d1 {
      transition-delay: .08s;
    }

    .r.d2 {
      transition-delay: .16s;
    }

    .r.d3 {
      transition-delay: .24s;
    }

    .r.d4 {
      transition-delay: .32s;
    }

    .r.d5 {
      transition-delay: .40s;
    }

    .r.d6 {
      transition-delay: .48s;
    }

    /* BENTO */
    #services {
      background: var(--off);
    }

    .bento {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 3.5rem;
    }

    .bento-cell {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2rem;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform .35s var(--ease-spring), box-shadow .35s;
    }

    .bento-cell:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .bento-cell.wide {
      grid-column: span 2;
    }

    .bc-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-bottom: 1.3rem;
    }

    .bc-icon.g {
      background: rgba(29, 191, 115, .1);
    }

    .bc-icon.b {
      background: rgba(0, 102, 204, .1);
    }

    .bc-icon.p {
      background: rgba(131, 56, 236, .1);
    }

    .bc-icon.o {
      background: rgba(255, 138, 0, .1);
    }

    .bc-icon.re {
      background: rgba(239, 68, 68, .1);
    }

    .bc-icon.t {
      background: rgba(20, 184, 166, .1);
    }

    .bc-title {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: .5rem;
    }

    .bc-desc {
      font-size: .875rem;
      color: var(--muted);
      line-height: 1.65;
    }

    .bc-tag {
      display: inline-block;
      margin-top: 1rem;
      background: var(--off);
      border: 1px solid var(--border);
      border-radius: 99px;
      font-size: .7rem;
      font-weight: 600;
      padding: .25rem .7rem;
      color: var(--body);
      transition: background .18s, border-color .18s, color .18s;
    }

    .bento-cell:hover .bc-tag {
      background: var(--green);
      border-color: var(--green);
      color: var(--white);
    }

    .bc-deco {
      position: absolute;
      bottom: -16px;
      right: -10px;
      opacity: .05;
      font-size: 5.5rem;
      pointer-events: none;
      line-height: 1;
    }

    /* STATS */
    #stats {
      padding: 0 5%;
    }

    .stats-bar {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .stat-cell {
      padding: 2.5rem 2rem;
      border-right: 1px solid var(--border);
      transition: background .35s;
    }

    .stat-cell:last-child {
      border-right: none;
    }

    .stat-cell:hover {
      background: var(--off);
    }

    .stat-n {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 800;
      letter-spacing: -.04em;
      color: var(--ink);
      line-height: 1;
    }

    .stat-n .suf {
      font-size: 60%;
      color: var(--green);
    }

    .stat-l {
      font-size: .82rem;
      color: var(--muted);
      margin-top: .5rem;
      font-weight: 500;
    }

    /* PORTFOLIO */
    .port-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .port-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .port-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
      transition: transform .35s var(--ease-spring), box-shadow .35s;
    }

    .port-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .port-card.lg {
      grid-column: span 2;
    }

    .port-img {
      aspect-ratio: 16/9;
      overflow: hidden;
      position: relative;
    }
    .port-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform .35s var(--ease-spring);
    }

    .port-card.lg .port-img {
      aspect-ratio: 16/8;
    }

    .port-canvas {
      width: 100%;
      height: 100%;
      transition: transform .65s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .port-card:hover .port-canvas {
      transform: scale(1.04);
    }

    @media (max-width: 680px) {
      .port-card .port-img {
        aspect-ratio: 4/3;
      }
      .port-card.lg .port-img {
        aspect-ratio: 4/3;
      }
    }

    .port-meta {
      padding: 1.2rem 1.4rem 1.4rem;
      background: var(--white);
    }

    .port-cat {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green-d);
      margin-bottom: .3rem;
    }

    .port-name {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink);
    }

    .port-sub {
      font-size: .8rem;
      color: var(--muted);
      margin-top: .15rem;
    }

    .port-arrow {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .9);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .85rem;
      opacity: 0;
      transform: scale(.7) rotate(-45deg);
      transition: opacity .35s, transform .35s var(--ease-spring);
      backdrop-filter: blur(6px);
    }

    .port-card:hover .port-arrow {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }

    .pc-1 {
      background: linear-gradient(135deg, #0f172a, #1e3a5f);
    }

    .pc-2 {
      background: linear-gradient(135deg, #0d1f12, #1a4426);
    }

    .pc-3 {
      background: linear-gradient(135deg, #1a0a2e, #2d1565);
    }

    .pc-4 {
      background: linear-gradient(135deg, #1f0d0d, #4a1515);
    }

    .pc-5 {
      background: linear-gradient(135deg, #1a1200, #3d2d00);
    }

    .pc-6 {
      background: linear-gradient(135deg, #001a1f, #004d55);
    }

    /* PROCESS */
    #process {
      background: var(--off);
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 4rem;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 12.5%;
      right: 12.5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
    }

    .ps {
      text-align: center;
      padding: 0 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .ps-num {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      color: var(--ink);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
      transition: background .35s, border-color .35s, transform .35s var(--ease-spring), box-shadow .35s;
    }

    .ps:hover .ps-num {
      background: var(--green);
      border-color: var(--green);
      color: var(--white);
      transform: scale(1.1);
      box-shadow: 0 8px 24px rgba(29, 191, 115, .3);
    }

    .ps-title {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: .5rem;
    }

    .ps-desc {
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* TECH */
    .tech-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 2.5rem;
    }

    .tech-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 99px;
      padding: .55rem 1.1rem;
      font-size: .855rem;
      font-weight: 500;
      color: var(--body);
      box-shadow: var(--shadow-sm);
      transition: border-color .18s, background .18s, transform .35s var(--ease-spring), box-shadow .35s, color .18s;
    }

    .tech-chip:hover {
      border-color: var(--green);
      background: rgba(29, 191, 115, .05);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(29, 191, 115, .15);
      color: var(--green-d);
    }

    /* TESTIMONIALS */
    #testimonials {
      background: var(--off);
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 3rem;
    }

    .testi-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
      transition: transform .35s var(--ease-spring), box-shadow .35s;
    }

    .testi-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .testi-stars {
      color: #f5a623;
      font-size: .9rem;
      margin-bottom: 1rem;
    }

    .testi-text {
      font-size: .9rem;
      color: var(--body);
      line-height: 1.72;
      margin-bottom: 1.4rem;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 10px;
      border-top: 1px solid var(--border);
      padding-top: 1rem;
    }

    .testi-av {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      flex-shrink: 0;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-weight: 800;
      font-size: .8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
    }

    .av1 {
      background: linear-gradient(135deg, #006039, #0ea5e9);
    }

    .av2 {
      background: linear-gradient(135deg, #8b5cf6, #ec4899);
    }

    .av3 {
      background: linear-gradient(135deg, #f59e0b, #ef4444);
    }

    .testi-name {
      font-weight: 600;
      font-size: .875rem;
      color: var(--ink);
    }

    .testi-role {
      font-size: .75rem;
      color: var(--muted);
      margin-top: 1px;
    }

    /* CTA */
    #cta-section {
      padding: 0 5% clamp(5rem, 8vw, 7rem);
    }

    .cta-box {
      max-width: 1100px;
      margin: 0 auto;
      background: var(--ink);
      border-radius: 24px;
      padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 5vw, 5rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(29, 191, 115, .15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 100% 0%, rgba(0, 102, 204, .12) 0%, transparent 60%);
    }

    .cta-left {
      position: relative;
      z-index: 1;
    }

    .cta-label {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(29, 191, 115, .8);
      margin-bottom: 1rem;
    }

    .cta-h2 {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -.03em;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: .8rem;
    }

    .cta-sub {
      color: rgba(255, 255, 255, .45);
      font-size: .95rem;
      line-height: 1.65;
      max-width: 440px;
    }

    .cta-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      color: var(--ink);
      padding: .85rem 1.8rem;
      border-radius: 99px;
      font-size: .9rem;
      font-weight: 700;
      transition: transform .35s var(--ease-spring), box-shadow .35s;
    }

    .btn-white:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 12px 32px rgba(255, 255, 255, .15);
    }

    .btn-outline-w {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: rgba(255, 255, 255, .8);
      padding: .85rem 1.6rem;
      border-radius: 99px;
      border: 1.5px solid rgba(255, 255, 255, .15);
      font-size: .9rem;
      font-weight: 600;
      transition: border-color .18s, background .18s, transform .35s;
    }

    .btn-outline-w:hover {
      border-color: rgba(255, 255, 255, .35);
      background: rgba(255, 255, 255, .06);
      transform: translateY(-1px);
    }

    .cta-right {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    .cta-contact-row {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, .6);
      font-size: .875rem;
      transition: color .18s;
    }

    .cta-contact-row:hover {
      color: var(--white);
    }

    .cta-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255, 255, 255, .07);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .95rem;
      flex-shrink: 0;
    }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      padding: 2.5rem 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .foot-logo {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-weight: 800;
      font-size: 1.05rem;
      color: var(--ink);
      letter-spacing: -.02em;
    }

    .foot-copy {
      font-size: .8rem;
      color: var(--muted);
    }

    .foot-links {
      display: flex;
      gap: 1.8rem;
    }

    .foot-links a {
      font-size: .8rem;
      color: var(--muted);
      transition: color .18s;
    }

    .foot-links a:hover {
      color: var(--ink);
    }

    @media(max-width:900px) {
      .nav-links {
        display: none;
      }

      .bento {
        grid-template-columns: 1fr 1fr;
      }

      .bento-cell.wide {
        grid-column: span 2;
      }

      .stats-bar {
        grid-template-columns: 1fr 1fr;
      }

      .stat-cell:nth-child(2) {
        border-right: none;
      }

      .stat-cell:nth-child(3) {
        border-top: 1px solid var(--border);
      }

      .port-grid {
        grid-template-columns: 1fr;
      }

      .port-card.lg {
        grid-column: auto;
      }

      .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

      .process-steps::before {
        display: none;
      }

      .testi-grid {
        grid-template-columns: 1fr;
      }

      .cta-box {
        flex-direction: column;
      }

      footer {
        flex-direction: column;
        text-align: center;
      }
    }

    @media(max-width:540px) {
      .bento {
        grid-template-columns: 1fr;
      }

      .bento-cell.wide {
        grid-column: auto;
      }

      .hero-h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        letter-spacing: 0.2px;
      }

      .mockup-body {
        grid-template-columns: 1fr;
      }

      .mockup-card:nth-child(1) {
        grid-column: auto;
        flex-direction: column;
      }
    }

    @media(max-width:340px) {
      .hero-h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        letter-spacing: 0.2px;
      }
    }

    /* Lucide icon sizing */
    .bc-icon svg {
      width: 1.5rem;
      height: 1.5rem;
    }

    .bc-deco svg {
      width: 3.5rem;
      height: 3.5rem;
      opacity: .35;
    }

    .logo-item svg {
      width: 1rem;
      height: 1rem;
      vertical-align: middle;
    }

    .proof-stars svg {
      width: 1rem;
      height: 1rem;
      fill: currentColor;
    }

    .testi-stars svg {
      width: 1rem;
      height: 1rem;
      fill: currentColor;
    }

    .tech-chip svg {
      width: 0.9rem;
      height: 0.9rem;
      vertical-align: middle;
    }

    .cta-icon svg {
      width: 1.3rem;
      height: 1.3rem;
    }

    .port-arrow svg {
      width: 1rem;
      height: 1rem;
    }

    .mc-icon svg {
      width: 1.4rem;
      height: 1.4rem;
    }

    .mockup-url svg {
      width: 0.72rem;
      height: 0.72rem;
      vertical-align: middle;
    }

    .mc-cta svg {
      width: 0.85rem;
      height: 0.85rem;
      vertical-align: middle;
    }

    .btn-white svg {
      width: 0.9rem;
      height: 0.9rem;
      vertical-align: middle;
    }

    /* Gravity playground */
    .gravity-stage {
      position: relative;
      width: 100%;
      height: 520px;
      border-radius: 20px;
      overflow: hidden;
      background: radial-gradient(ellipse at 60% 0%, rgba(29, 191, 115, .06) 0%, #00000014 65%), linear-gradient(135deg, rgba(255, 255, 255, 0.233) 0%, rgba(255, 255, 255, .01) 100%);
      border: 1px solid rgba(255, 255, 255, .07);
      margin-top: 2.5rem;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
    }

    #gravity-canvas {
      display: block;
      width: 100%;
      height: 100%;
      cursor: grab;
    }

    #gravity-canvas:active {
      cursor: grabbing;
    }

    .gravity-hint {
      position: absolute;
      bottom: 1.1rem;
      right: 1.5rem;
      font-size: .72rem;
      color: rgba(255, 255, 255, .5);
      font-weight: 500;
      letter-spacing: .05em;
      pointer-events: none;
      user-select: none;
      display: flex;
      align-items: center;
      gap: .35rem;
    }

    .gravity-hint::before {
      content: '';
      display: inline-block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(29, 191, 115, .5);
      animation: gpulse 2s ease-in-out infinite;
    }

    @media (max-width: 540px) {

      /* .gravity-stage {
        height: 660px;
      } */
      .gravity-hint {
        background: rgba(0, 0, 0, 0.5);
        padding: .25rem .6rem;
        border-radius: 99px;

      }
    }

    @keyframes gpulse {

      0%,
      100% {
        opacity: .4
      }

      50% {
        opacity: 1
      }
    }

    /* Hero text wave hover
       Specificity (0,3,0) beats .hero-h1 .line span (0,2,1)
       so we override display:block, opacity:0, animation and transform
       that the reveal rule applies to ALL spans inside .line           */
    .hero-h1 .line {
      overflow: none;
    }

    .hero-h1 .line .ch {
      display: inline-block;
      padding: 0 2px;
      opacity: 1;
      /* let parent span control reveal via its own opacity */
      animation: none;
      /* don't run lineUp on each individual char */
      transform: none;
      /* JS will set scale() via inline style on hover */
      transform-origin: 50% 85%;
      transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
      will-change: transform;
    }

    /* Criss-cross marquee stripes */
    .crisscross-wrap {
      overflow: hidden;
      padding: 4rem 0;
      position: relative;
    }

    .cc-inner {
      transform: rotate(-4deg);
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .cc-stripe {
      overflow: hidden;
      width: 100%;
    }

    .cc-track {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
      will-change: transform;
      animation: cc-ltr 30s linear infinite;
    }

    .cc-rev {
      animation: cc-rtl 30s linear infinite;
    }

    @keyframes cc-ltr {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    @keyframes cc-rtl {
      from {
        transform: translateX(-50%);
      }

      to {
        transform: translateX(0);
      }
    }

    .cc-light .cc-track {
      background: #fff;
      color: #0a0a0a;
      padding: 0.85rem 0;
    }

    .cc-dark .cc-track {
      background: #0e0e0e;
      color: #f0f0f0;
      padding: 0.85rem 0;
      border-top: 1px solid rgba(255, 255, 255, .06);
      border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .cc-pt {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      white-space: nowrap;
      padding: 0 0.4rem;
    }

    .cc-star {
      font-size: 0.7rem;
      margin: 0 1.1rem;
      opacity: 0.45;
      flex-shrink: 0;
    }

    .cc-light .cc-star {
      color: #0a0a0a;
    }

    .cc-dark .cc-star {
      color: #f0f0f0;
    }

    .hero-mockup {
      display: none;
    }



    /* ════ TESTIMONIALS — colorful neo-brutalist carousel ════ */
    #testimonials {
      background: #f7f3ec;
      overflow: hidden;
      position: relative;
    }

    #testimonials .section-inner {
      text-align: center;
    }

    #testimonials .label {
      color: #111;
    }

    #testimonials .h2 {
      color: #111;
    }

    /* carousel wrapper — overflow visible so hard shadows don't clip */
    .testi-carousel-wrap {
      position: relative;
      margin-top: 3rem;
      padding-bottom: 3rem;
    }

    .testi-carousel-wrap .slick-list {
      overflow: visible !important;
      padding-bottom: 18px !important;
    }

    .testi-carousel-wrap .slick-track {
      display: flex;
      align-items: stretch;
    }

    /* individual slide */
    .testi-carousel-wrap .slick-slide {
      padding: 12px 18px;
      margin: 0 20px;
      outline: none;
    }

    /* CARD base */
    .testi-card {
      border-radius: 20px;
      border: 2.5px solid #111;
      padding: 2rem 1.75rem;
      position: relative;
      overflow: hidden;
      will-change: transform;
      transform-style: preserve-3d;
      cursor: default;
      transition: box-shadow .18s ease, transform .18s ease;
    }

    /* sheen overlay for 3D effect */
    .testi-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
          rgba(255, 255, 255, .45) 0%, transparent 65%);
      pointer-events: none;
      opacity: 0;
      transition: opacity .25s;
    }

    .testi-card:hover::before {
      opacity: 1;
    }

    /* color themes — bg + hard punchy offset shadow */
    .tc-c1 {
      background: #FFEE55;
      box-shadow: 8px 8px 0 #FF3366;
    }

    .tc-c2 {
      background: #FF6B9D;
      box-shadow: 8px 8px 0 #2563EB;
    }

    .tc-c3 {
      background: #00F0C4;
      box-shadow: 8px 8px 0 #FF6000;
    }

    .tc-c4 {
      background: #B8FF6B;
      box-shadow: 8px 8px 0 #7C3AED;
    }

    .tc-c5 {
      background: #FF9F43;
      box-shadow: 8px 8px 0 #00B4D8;
    }

    .testi-card:hover.tc-c1 {
      box-shadow: 4px 4px 0 #FF3366;
    }

    .testi-card:hover.tc-c2 {
      box-shadow: 4px 4px 0 #2563EB;
    }

    .testi-card:hover.tc-c3 {
      box-shadow: 4px 4px 0 #FF6000;
    }

    .testi-card:hover.tc-c4 {
      box-shadow: 4px 4px 0 #7C3AED;
    }

    .testi-card:hover.tc-c5 {
      box-shadow: 4px 4px 0 #00B4D8;
    }

    /* card text — all dark on colorful bg */
    .testi-card .testi-stars {
      color: #111;
      margin-bottom: .9rem;
    }

    .testi-card .testi-text {
      color: #222;
      font-size: .92rem;
      line-height: 1.7;
      margin-bottom: 1.4rem;
    }

    .testi-card .testi-name {
      color: #111;
      font-weight: 700;
    }

    .testi-card .testi-role {
      color: #444;
      font-size: .78rem;
    }

    .testi-card .testi-author {
      border-top: 2px solid rgba(0, 0, 0, .15);
      padding-top: .9rem;
    }

    .testi-card .testi-av {
      border: 2px solid #111;
    }

    /* dots */
    .testi-carousel-wrap .slick-dots {
      bottom: -40px;
    }

    .testi-carousel-wrap .slick-dots li button:before {
      color: #bbb;
      font-size: 9px;
    }

    .testi-carousel-wrap .slick-dots li.slick-active button:before {
      color: #111;
    }

    /* arrows */
    .tc-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #111;
      border: 2.5px solid #111;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .15s, color .15s;
      box-shadow: 3px 3px 0 rgba(0, 0, 0, .25);
    }

    .tc-arrow:hover {
      background: #fff;
      color: #111;
    }

    .tc-arrow svg {
      width: 18px;
      height: 18px;
    }

    .tc-prev {
      left: 0;
    }

    .tc-next {
      right: 0;
    }

    /* ── Hamburger button ─────────────────────────────────────────────── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      border-radius: 10px;
      transition: background .18s;
      z-index: 600;
      position: relative;
    }
    .nav-hamburger:hover { background: rgba(0,0,0,.06); }
    .nh-bar {
      display: block;
      width: 22px;
      height: 2px;
      border-radius: 99px;
      background: var(--ink);
      transform-origin: center;
      transition: transform .38s cubic-bezier(.16,1,.3,1),
                  opacity .25s ease,
                  width .38s cubic-bezier(.16,1,.3,1);
    }
    /* Open state — animate to X */
    .nav-hamburger.open .nh-bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav-hamburger.open .nh-bar:nth-child(2) {
      opacity: 0;
      width: 0;
    }
    .nav-hamburger.open .nh-bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ── Backdrop ─────────────────────────────────────────────────────── */
    .mobile-nav-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.45);
      z-index: 580;
      opacity: 0;
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      transition: opacity .38s ease;
    }
    .mobile-nav-backdrop.active {
      display: block;
    }
    .mobile-nav-backdrop.visible {
      opacity: 1;
    }

    /* ── Drawer ───────────────────────────────────────────────────────── */
    .mobile-nav {
      position: fixed;
      top: 0;
      right: 0;
      width: min(320px, 88vw);
      height: 100dvh;
      background: #fff;
      z-index: 590;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform .42s cubic-bezier(.16,1,.3,1);
      box-shadow: -8px 0 40px rgba(0,0,0,.12);
      will-change: transform;
    }
    .mobile-nav.open {
      transform: translateX(0);
    }
    .mobile-nav-inner {
      display: flex;
      flex-direction: column;
      padding: 84px 32px 36px;
      height: 100%;
      gap: 0;
    }

    /* ── Links ────────────────────────────────────────────────────────── */
    .mobile-nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
      flex: 1;
    }
    .mobile-nav-links li {
      border-bottom: 1px solid var(--border, #f0f0ee);
      overflow: hidden;
    }
    .mn-link {
      display: block;
      padding: 18px 0;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -.02em;
      text-decoration: none;
      transform: translateX(32px);
      opacity: 0;
      transition: color .18s, transform .44s cubic-bezier(.16,1,.3,1), opacity .44s ease;
    }
    .mn-link:hover { color: var(--green); }
    /* stagger reveal */
    .mobile-nav.open .mn-link { transform: translateX(0); opacity: 1; }
    .mobile-nav-links li:nth-child(1) .mn-link { transition-delay: .06s; }
    .mobile-nav-links li:nth-child(2) .mn-link { transition-delay: .10s; }
    .mobile-nav-links li:nth-child(3) .mn-link { transition-delay: .14s; }
    .mobile-nav-links li:nth-child(4) .mn-link { transition-delay: .18s; }
    .mobile-nav-links li:nth-child(5) .mn-link { transition-delay: .22s; }

    /* ── CTA button ───────────────────────────────────────────────────── */
    .mn-cta {
      display: block;
      margin-top: 28px;
      background: var(--ink);
      color: #fff;
      text-align: center;
      padding: .8rem 1.5rem;
      border-radius: 99px;
      font-size: .95rem;
      font-weight: 700;
      letter-spacing: .01em;
      text-decoration: none;
      transform: translateY(12px);
      opacity: 0;
      transition: background .18s, transform .44s cubic-bezier(.16,1,.3,1) .28s, opacity .44s ease .28s;
    }
    .mobile-nav.open .mn-cta { transform: translateY(0); opacity: 1; }
    .mn-cta:hover { background: #2a2a28; }

    /* ── Footer info ──────────────────────────────────────────────────── */
    .mn-footer {
      margin-top: 24px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      font-size: .78rem;
      color: var(--muted, #888);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .4s ease .35s, transform .4s cubic-bezier(.16,1,.3,1) .35s;
    }
    .mobile-nav.open .mn-footer { opacity: 1; transform: translateY(0); }
    .mn-footer a { color: var(--muted, #888); text-decoration: none; }
    .mn-footer a:hover { color: var(--ink); }

    /* ── Show hamburger only on mobile ───────────────────────────────── */
    @media (max-width: 900px) {
      .nav-hamburger { display: flex; }
      .nav-btn { display: none; }
    }
    @media (min-width: 901px) {
      .mobile-nav,
      .mobile-nav-backdrop { display: none !important; }
    }

    @media(max-width:700px) {
      .proof-divider {
        display: none;
      }

      .process-steps {
        border: 1px solid rgba(0, 0, 0, 0.1);
        grid-template-columns: 1fr 1fr;
        gap: 0px;
        border-radius: 20px;
        padding: 0px;
        margin-top: 20px;
      }
      .process-steps .ps {
        padding: 10px;
        /* outline: 1px solid rgba(0, 0, 0, 0.1); */
        /* border-radius: 20px; */
      }
      .process-steps .ps:nth-child(1) {
        border-radius: 20px 0px 0px 0px;

      }
      .process-steps .ps:nth-child(2) {
        border-radius: 0px 20px 0px 0px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
      }
      .process-steps .ps:nth-child(3) {
        border-radius: 0px 0px 0px 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
      }
      .process-steps .ps:nth-child(4) {
        border-radius: 0px 0px 20px 0px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-left: 1px solid rgba(0, 0, 0, 0.1);
      }

      .process-steps .ps-desc{
        font-size: 12px;
      }

      .ps .ps-num{
        margin-bottom: 10px;
      }

    }