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

    img,
    svg,
    canvas {
      display: block;
      max-width: 100%;
    }

    :root {
      --red: #C0392B;
      --red-d: #8B2318;
      --red-l: #E8503F;
      --red-f: rgba(192, 57, 43, .07);
      --bk: #080807;
      --dk: #0F0D0B;
      --dk2: #161412;
      --dk3: #242220;
      --dk4: #302C29;
      --gy: #928D87;
      --gyl: #A8A39F;
      --off: #F4F0EB;
      --wh: #FAFAF8;
      --px: clamp(20px, 5.5vw, 72px);
      --nav-h: 64px;
      --sec-py: clamp(56px, min(9vw, 10vh), 132px);
      --sec-py-sm: clamp(48px, min(8vw, 9vh), 100px);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--bk);
      color: var(--wh);
      overflow-x: hidden;
    }

    .page {
      display: none;
      animation: pgIn .45s ease;
    }

    .page.active {
      display: block;
    }

    @keyframes pgIn {
      from {
        opacity: 0;
        transform: translateY(10px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9000;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px;
      opacity: .028;
      mix-blend-mode: overlay;
    }

    .pgbar {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      background: var(--red);
      width: 0%;
      z-index: 9999;
      pointer-events: none;
    }

    @media(hover:hover)and(pointer:fine) {
      body {
        cursor: none;
      }

      #cur,
      #cring {
        display: block;
      }
    }

    #cur {
      display: none;
      position: fixed;
      width: 7px;
      height: 7px;
      background: var(--red);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width .2s, height .2s;
    }

    #cring {
      display: none;
      position: fixed;
      width: 32px;
      height: 32px;
      border: 1px solid rgba(192, 57, 43, .4);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9997;
      transform: translate(-50%, -50%);
      transition: width .3s, height .3s;
    }

    .wa-fab {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 52px;
      height: 52px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 997;
      text-decoration: none;
      animation: waPulse 2.5s ease infinite;
    }

    .wa-fab svg {
      width: 26px;
      height: 26px;
      fill: #fff;
    }

    @keyframes waPulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .45)
      }

      50% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0)
      }
    }

    /* SERVICE MOBILE MODAL */
    .sv-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(8, 8, 7, .97);
      z-index: 800;
      flex-direction: column;
      overflow-y: auto;
    }

    .sv-modal.open {
      display: flex;
    }

    .sv-modal-bar {
      position: sticky;
      top: 0;
      background: var(--bk);
      border-bottom: 1px solid var(--dk3);
      padding: 14px clamp(20px, 5vw, 56px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 1;
    }

    .sv-modal-close-btn {
      background: none;
      border: none;
      color: var(--gyl);
      font-size: 24px;
      cursor: pointer;
      line-height: 1;
    }

    .sv-modal-inner {
      padding: clamp(28px, 5vw, 56px);
      flex: 1;
    }

    /* MOBILE MENU */
    .mob-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(8, 8, 7, .98);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      z-index: 1050;
    }

    .mob-menu.open {
      display: flex;
    }

    .mob-menu a,
    .mob-menu button {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(24px, 7vw, 42px);
      letter-spacing: 3px;
      color: var(--wh);
      text-decoration: none;
      cursor: pointer;
      background: none;
      border: none;
      transition: color .2s;
    }

    .mob-menu a:hover,
    .mob-menu button:hover {
      color: var(--red);
    }

    .mob-login {
      font-family: 'DM Mono', monospace !important;
      font-size: 10px !important;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: 1px solid rgba(192, 57, 43, .38);
      background: rgba(192, 57, 43, .07);
      padding: 11px 20px;
      color: var(--gyl) !important;
    }

    .mob-divider {
      width: 46px;
      height: 1px;
      background: var(--dk3);
      margin: 2px 0;
    }

    /* NAV */
    nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 1000;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 var(--px);
      transition: background .4s;
    }

    nav.scrolled {
      background: rgba(8, 8, 7, .97);
      border-bottom: 1px solid var(--dk3);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      cursor: pointer;
    }

    .nl-s {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 21px;
      color: var(--red);
      letter-spacing: -1px;
      animation: logoPulse 4s ease infinite;
    }

    @keyframes logoPulse {

      0%,
      100% {
        text-shadow: none
      }

      50% {
        text-shadow: 0 0 18px rgba(192, 57, 43, .45)
      }
    }

    .nl-w {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 21px;
      color: var(--wh);
      letter-spacing: 5px;
    }

    .nl-sub {
      font-family: 'DM Mono', monospace;
      font-size: 7.5px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gy);
      margin-left: 4px;
      padding-top: 5px;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'DM Mono', monospace;
      font-size: 9.5px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gyl);
      text-decoration: none;
      cursor: pointer;
      transition: color .2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }

    .nav-links a:hover,
    .nav-links a.nav-act {
      color: var(--wh);
    }

    .nav-links a:hover::after,
    .nav-links a.nav-act::after {
      transform: scaleX(1);
    }

    .nav-divider {
      align-self: center;
      width: 1px;
      height: 14px;
      background: var(--dk3);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-cta {
      font-family: 'DM Mono', monospace;
      font-size: 9.5px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--wh);
      padding: 9px 18px;
      border: 1px solid var(--red);
      transition: background .25s;
      cursor: pointer;
      background: none;
      white-space: nowrap;
      text-decoration: none;
    }

    .nav-cta:hover {
      background: var(--red);
    }

    .nav-login {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gyl);
      padding: 9px 16px;
      border: 1px solid rgba(192, 57, 43, .38);
      background: rgba(192, 57, 43, .07);
      cursor: pointer;
      transition: all .25s;
      display: flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
      text-decoration: none;
    }

    .nav-login::before {
      content: '⬡';
      color: var(--red);
      font-size: 11px;
    }

    .nav-login:hover {
      border-color: var(--red);
      background: rgba(192, 57, 43, .18);
      color: var(--wh);
    }

    .nav-hb {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .nav-hb span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--wh);
      transition: transform .3s, opacity .3s;
    }

    .nav-hb.open span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .nav-hb.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-hb.open span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    /* HERO — 100dvh, fully robust */
    .hero {
      height: 100dvh;
      height: 100svh;
      display: grid;
      grid-template-columns: 55% 45%;
      overflow: hidden;
    }

    .hero-l {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: calc(var(--nav-h) + clamp(12px, 3vh, 40px)) var(--px) clamp(20px, 3vh, 44px);
      position: relative;
      overflow: hidden;
    }

    .hero-l::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(0deg, transparent, transparent 63px, rgba(192, 57, 43, .05) 63px, rgba(192, 57, 43, .05) 64px);
      pointer-events: none;
    }

    .hero-l::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, transparent 8%, var(--red) 28%, var(--red) 72%, transparent 92%);
      animation: sp 3s ease infinite;
    }

    @keyframes sp {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .4
      }
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      animation: ptD linear infinite;
    }

    @keyframes ptD {
      0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
      }

      5% {
        opacity: .8
      }

      90% {
        opacity: .3
      }

      100% {
        transform: translateY(-80px) translateX(var(--drift));
        opacity: 0;
      }
    }

    .h-ann {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      font-family: 'DM Mono', monospace;
      font-size: 7.5px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      opacity: 0;
      animation: fadeUp .5s ease forwards .1s;
    }

    .h-ann-d {
      width: 4px;
      height: 4px;
      border: 1px solid var(--red);
      border-radius: 50%;
      animation: annP 2s ease infinite;
    }

    @keyframes annP {

      0%,
      100% {
        transform: scale(1)
      }

      50% {
        transform: scale(1.5);
        opacity: .3
      }
    }

    .h-eye {
      font-family: 'DM Mono', monospace;
      font-size: 9.5px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 9px;
      opacity: 0;
      animation: fadeUp .5s ease forwards .2s;
    }

    .h-eye::before {
      content: '';
      width: 14px;
      height: 1px;
      background: var(--red);
    }

    .h-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(30px, min(5.2vw, 7.8vh), 72px);
      line-height: .96;
      letter-spacing: -.5px;
      margin-bottom: 14px;
    }

    .h-accent {
      color: var(--red);
      font-style: italic;
      margin-right: .16em;
    }

    .h-ln {
      display: block;
      overflow: hidden;
    }

    .h-li {
      display: block;
      opacity: 0;
      transform: translateY(110%);
      animation: slideUp .65s cubic-bezier(.16, 1, .3, 1) forwards;
    }

    .h-ln:nth-child(1) .h-li {
      animation-delay: .32s
    }

    .h-ln:nth-child(2) .h-li {
      animation-delay: .47s
    }

    .h-ln:nth-child(3) .h-li {
      animation-delay: .62s;
    }

    .h-ln:nth-child(4) .h-li {
      animation-delay: .77s
    }

    .h-ln:nth-child(5) .h-li {
      animation-delay: .92s
    }

    /* Subtitle: hard-clamped to 3 lines, never pushes button */
    .h-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(13px, min(1.35vw, 2.1vh), 17px);
      font-weight: 300;
      line-height: 1.62;
      color: var(--gyl);
      max-width: 400px;
      margin-bottom: clamp(16px, 2.5vh, 36px);
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      opacity: 0;
      animation: fadeUp .5s ease forwards .95s;
    }

    .h-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      opacity: 0;
      animation: fadeUp .5s ease forwards 1.1s;
    }

    .btn-red {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--red);
      color: var(--wh);
      font-family: 'DM Mono', monospace;
      font-size: 9.5px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 13px 24px;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: background .3s;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .btn-red::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .14) 50%, transparent 70%);
      transform: translateX(-100%);
      transition: transform .55s;
    }

    .btn-red:hover {
      background: var(--red-d);
    }

    .btn-red:hover::after {
      transform: translateX(100%);
    }

    .btn-ghost {
      font-family: 'DM Mono', monospace;
      font-size: 9.5px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gyl);
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      transition: color .2s;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .btn-ghost:hover {
      color: var(--wh);
    }

    .hero-r {
      position: relative;
      overflow: hidden;
      background: var(--dk2);
    }

    #binCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .h-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(192, 57, 43, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(192, 57, 43, .07) 1px, transparent 1px);
      background-size: 46px 46px;
      animation: gM 22s linear infinite;
      z-index: 1;
    }

    @keyframes gM {
      from {
        background-position: 0 0
      }

      to {
        background-position: 46px 46px
      }
    }

    .h-stripe {
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-55deg, transparent, transparent 26px, rgba(192, 57, 43, .022) 26px, rgba(192, 57, 43, .022) 27px);
      z-index: 1;
    }

    .h-scan {
      position: absolute;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--red) 20%, rgba(255, 100, 60, .9) 50%, var(--red) 80%, transparent);
      z-index: 3;
      animation: scanR 5s ease-in-out infinite 1s;
    }

    @keyframes scanR {
      0% {
        top: 0%;
        opacity: 0
      }

      5% {
        opacity: 1
      }

      95% {
        opacity: .7
      }

      100% {
        top: 100%;
        opacity: 0
      }
    }

    .h-divider {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(192, 57, 43, .4), transparent);
      z-index: 4;
    }

    .h-corner {
      position: absolute;
      width: 14px;
      height: 14px;
      z-index: 5;
      animation: cP 3s ease infinite;
    }

    @keyframes cP {

      0%,
      100% {
        opacity: .4
      }

      50% {
        opacity: 1
      }
    }

    .h-tl {
      top: 16px;
      left: 16px;
      border-top: 1px solid var(--red);
      border-left: 1px solid var(--red);
    }

    .h-tr {
      top: 16px;
      right: 16px;
      border-top: 1px solid var(--red);
      border-right: 1px solid var(--red);
      animation-delay: .5s;
    }

    .h-bl {
      bottom: 16px;
      left: 16px;
      border-bottom: 1px solid var(--red);
      border-left: 1px solid var(--red);
      animation-delay: 1s;
    }

    .h-br {
      bottom: 16px;
      right: 16px;
      border-bottom: 1px solid var(--red);
      border-right: 1px solid var(--red);
      animation-delay: 1.5s;
    }

    .h-wave-wrap {
      position: absolute;
      bottom: 54px;
      left: 0;
      right: 0;
      height: 26px;
      overflow: hidden;
      z-index: 3;
      pointer-events: none;
    }

    .h-wave-svg {
      width: 200%;
      animation: wS 3s linear infinite;
    }

    @keyframes wS {
      from {
        transform: translateX(0)
      }

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

    .h-diagram {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 28px;
      z-index: 2;
    }

    .diag-svg {
      width: 100%;
      max-width: 420px;
      max-height: 100%;
      opacity: 0;
      animation: fadeIn 1s ease forwards 1.3s;
    }

    .h-statsbar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      display: flex;
      background: rgba(8, 8, 7, .72);
      border-top: 1px solid var(--dk3);
      z-index: 4;
    }

    .hst {
      flex: 1;
      padding: 9px 16px;
      border-right: 1px solid var(--dk3);
      opacity: 0;
      animation: fadeUp .5s ease forwards;
    }

    .hst:last-child {
      border-right: none;
    }

    .hst:nth-child(1) {
      animation-delay: 1.6s
    }

    .hst:nth-child(2) {
      animation-delay: 1.8s
    }

    .hst:nth-child(3) {
      animation-delay: 2s
    }

    .hst-n {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(20px, 2.4vw, 30px);
      line-height: 1;
      color: var(--wh);
    }

    .hst-n em {
      color: var(--red);
      font-style: normal;
    }

    .hst-l {
      font-family: 'DM Mono', monospace;
      font-size: 7px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gy);
      margin-top: 1px;
    }

    @media(max-height:650px) {
      .h-ann {
        display: none;
      }

      .h-title {
        font-size: clamp(24px, 6vh, 52px);
        margin-bottom: 8px;
      }

      .h-sub {
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
      }
    }

    /* MARQUEE */
    .mq-wrap {
      border-top: 1px solid var(--dk3);
      border-bottom: 1px solid var(--dk3);
      overflow: hidden;
      padding: 11px 0;
      background: var(--dk);
    }

    .mq-track {
      display: flex;
      animation: mqR 22s linear infinite;
      white-space: nowrap;
    }

    .mq-track.rev {
      animation-direction: reverse;
      animation-duration: 28s;
    }

    .mq-item {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 0 26px;
      font-family: 'DM Mono', monospace;
      font-size: 9.5px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gy);
    }

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

    @keyframes mqR {
      from {
        transform: translateX(0)
      }

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

    /* UTILS */
    .sec-tag {
      font-family: 'DM Mono', monospace;
      font-size: 9.5px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 10px;
    }

    .sec-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(44px, 6vw, 80px);
      line-height: 1;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .d1 {
      transition-delay: .12s
    }

    .d2 {
      transition-delay: .24s
    }

    .d3 {
      transition-delay: .36s
    }

    /* CLIENTS HOME SHOWCASE */
    .cli-home {
      padding: clamp(44px, 6vw, 80px) var(--px);
      background: var(--dk);
      border-bottom: 1px solid var(--dk3);
    }

    .cli-home-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .cli-see-link {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      cursor: pointer;
      background: none;
      border: none;
      text-decoration: none;
      transition: color .25s;
    }

    .cli-see-link:hover {
      color: var(--red-l);
    }

    .cli-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .cli-badge {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(12px, 1.5vw, 18px);
      letter-spacing: 2px;
      color: var(--gyl);
      padding: 8px 16px;
      border: 1px solid var(--dk3);
      transition: border-color .3s, color .3s, transform .2s;
      cursor: default;
    }

    .cli-badge:hover {
      border-color: var(--red);
      color: var(--wh);
      transform: translateY(-2px);
    }

    /* MANIFESTO */
    .manifesto {
      padding: var(--sec-py) var(--px);
      display: grid;
      grid-template-columns: 210px 1fr;
      gap: 64px;
      background: var(--off);
      color: var(--bk);
      border-bottom: 1px solid rgba(0, 0, 0, .1);
      position: relative;
      overflow: hidden;
      scroll-margin-top: 56px;
    }

    .mf-bg {
      position: absolute;
      right: -20px;
      top: -40px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 280px;
      color: rgba(0, 0, 0, .025);
      line-height: 1;
      user-select: none;
      pointer-events: none;
      letter-spacing: -12px;
      animation: bgS 10s ease infinite alternate;
    }

    @keyframes bgS {
      from {
        transform: scale(1)
      }

      to {
        transform: scale(1.04) rotate(-.5deg)
      }
    }

    .mf-strip {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(to right, var(--red) 30%, transparent 60%);
      animation: sG 2s ease forwards .5s;
      transform-origin: left;
      transform: scaleX(0);
    }

    @keyframes sG {
      to {
        transform: scaleX(1)
      }
    }

    .mf-left {
      position: sticky;
      top: 80px;
      display: flex;
      flex-direction: column;
    }

    .sec-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(60px, 9vw, 110px);
      line-height: 1;
      color: var(--dk3);
      margin-top: -8px;
    }

    .sec-vert {
      font-family: 'DM Mono', monospace;
      font-size: 7.5px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(0, 0, 0, .18);
      writing-mode: vertical-lr;
      margin-top: 14px;
    }

    .mf-visual {
      position: relative;
      width: 100%;
      height: 180px;
      margin-top: 22px;
      flex-shrink: 0;
    }

    .mfv-ring {
      position: absolute;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .mfv-r1 {
      width: 110px;
      height: 110px;
      border: 1px solid rgba(192, 57, 43, .12);
      animation: mfr 10s linear infinite;
    }

    .mfv-r2 {
      width: 70px;
      height: 70px;
      border: 1px solid rgba(192, 57, 43, .18);
      animation: mfr 7s linear infinite reverse;
    }

    .mfv-r3 {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(192, 57, 43, .25);
      animation: mfr 5s linear infinite;
    }

    @keyframes mfr {
      to {
        transform: translate(-50%, -50%) rotate(360deg)
      }
    }

    .mfv-core {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      color: rgba(192, 57, 43, .22);
      letter-spacing: -1px;
      animation: mfC 4s ease infinite;
    }

    @keyframes mfC {

      0%,
      100% {
        opacity: .22
      }

      50% {
        opacity: .55
      }
    }

    .mfv-dot {
      position: absolute;
      border-radius: 50%;
      background: var(--red);
    }

    .mfv-d1 {
      width: 3px;
      height: 3px;
      top: 20%;
      left: 26%;
      animation: mfD 7s ease infinite;
      opacity: .5;
    }

    .mfv-d2 {
      width: 4px;
      height: 4px;
      top: 68%;
      left: 74%;
      animation: mfD 9s ease infinite 1.5s;
      opacity: .4;
    }

    .mfv-d3 {
      width: 2px;
      height: 2px;
      top: 80%;
      left: 36%;
      animation: mfD 8s ease infinite .8s;
      opacity: .6;
    }

    @keyframes mfD {

      0%,
      100% {
        transform: translateY(0);
        opacity: .5
      }

      50% {
        transform: translateY(-10px);
        opacity: 1
      }
    }

    .mf-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Mono', monospace;
      font-size: 8px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(192, 57, 43, .7);
      margin-bottom: 18px;
    }

    .mf-label::before {
      content: '';
      width: 12px;
      height: 1px;
      background: var(--red);
    }

    .mf-h {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(26px, 3.5vw, 48px);
      font-weight: 300;
      line-height: 1.18;
      margin-bottom: 28px;
    }

    .mf-h strong {
      font-weight: 600;
      color: var(--red-d);
    }

    .mf-body {
      font-size: clamp(13px, 1.1vw, 15px);
      font-weight: 300;
      line-height: 1.9;
      color: #555;
      margin-bottom: 18px;
    }

    .mf-pull {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(17px, 1.7vw, 22px);
      font-style: italic;
      font-weight: 300;
      color: var(--bk);
      border-left: 2px solid var(--red);
      padding-left: 22px;
      margin: 28px 0;
      line-height: 1.55;
    }

    /* NOSSA DIFERENÇA */
    .nossa-dif {
      padding: var(--sec-py-sm) var(--px);
      background: var(--off);
      color: var(--bk);
      border-top: 1px solid rgba(192, 57, 43, .25);
      border-bottom: 1px solid rgba(192, 57, 43, .25);
      position: relative;
      overflow: hidden;
    }

    .nossa-dif::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-55deg, transparent, transparent 26px, rgba(0, 0, 0, .015) 26px, rgba(0, 0, 0, .015) 27px);
      pointer-events: none;
    }

    .nd-hd {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      position: relative;
    }

    .nd-visual {
      flex-shrink: 0;
      width: 136px;
      height: 136px;
      border-radius: 50%;
      overflow: hidden;
      position: relative;
      background: var(--dk2);
      padding: 7px;
      border: 1px solid rgba(192, 57, 43, .3);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    }

    .nd-visual img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      position: relative;
      z-index: 1;
      display: block;
    }

    .nd-visual-ph {
      position: absolute;
      inset: 7px;
      width: calc(100% - 14px);
      height: calc(100% - 14px);
      border-radius: 50%;
      padding: 22px;
      background: var(--dk2);
    }

    .nd-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(192, 57, 43, .15);
      margin-top: 48px;
    }

    .nd-card {
      background: var(--wh);
      padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 34px);
      position: relative;
      overflow: hidden;
      transition: background .4s;
    }

    .nd-card:hover {
      background: var(--off);
    }

    .nd-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--red), var(--red-l));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .5s;
    }

    .nd-card:hover::before {
      transform: scaleX(1);
    }

    .nd-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 68px;
      line-height: 1;
      color: rgba(192, 57, 43, .12);
      margin-bottom: -6px;
    }

    .nd-icon {
      width: 30px;
      height: 1px;
      background: var(--red);
      margin-bottom: 14px;
      transition: width .3s;
    }

    .nd-card:hover .nd-icon {
      width: 50px;
    }

    .nd-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(20px, 2vw, 26px);
      font-weight: 600;
      line-height: 1.15;
      color: var(--bk);
      margin-bottom: 10px;
    }

    .nd-desc {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.85;
      color: #555;
    }

    /* SERVICES — split panel, hover zoom */
    .services {
      padding: var(--sec-py-sm) var(--px);
      background: var(--bk);
      scroll-margin-top: 56px;
    }

    .sv-hd {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 18px;
      margin-bottom: 36px;
    }

    .sv-split {
      display: flex;
      border: 1px solid var(--dk3);
      min-height: 400px;
      max-height: 820px;
    }

    .sv-list-col {
      flex: 0 0 42%;
      border-right: 1px solid var(--dk3);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      overflow-x: hidden;
    }

    .sv-row {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px clamp(14px, 2.5vw, 28px);
      border-bottom: 1px solid var(--dk3);
      cursor: pointer;
      position: relative;
      transition: background .3s;
      transform-origin: left center;
    }

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

    .sv-row:hover {
      background: var(--red-f);
      transform: scale(1.018);
      z-index: 1;
    }

    .sv-row::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--red);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform .3s;
    }

    .sv-row.sv-active {
      background: var(--dk2);
    }

    .sv-row.sv-active::before {
      transform: scaleY(1);
    }

    .sv-idx {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 3px;
      color: var(--gy);
      width: 36px;
      flex-shrink: 0;
      transition: color .3s;
    }

    .sv-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(17px, 2vw, 26px);
      font-weight: 300;
      flex: 1;
      line-height: 1.1;
      transition: color .3s;
    }

    .sv-arrow {
      color: var(--red);
      font-size: 15px;
      transition: transform .25s;
      flex-shrink: 0;
    }

    .sv-row:hover .sv-arrow,
    .sv-row.sv-active .sv-arrow {
      transform: translateX(4px);
    }

    .sv-row.sv-active .sv-idx {
      color: var(--red);
    }

    .sv-row.sv-active .sv-name {
      color: var(--wh);
    }

    .sv-panel-col {
      flex: 1;
      padding: clamp(24px, 3.5vw, 44px);
      display: none;
      flex-direction: column;
      animation: svIn .35s ease;
      overflow-y: auto;
      overflow-x: hidden;
    }

    .sv-panel-col.sv-visible {
      display: flex;
    }

    @keyframes svIn {
      from {
        opacity: 0;
        transform: translateX(16px)
      }

      to {
        opacity: 1;
        transform: translateX(0)
      }
    }

    .sv-panel-empty {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      text-align: center;
    }

    .sv-panel-empty svg {
      width: 36px;
      height: 36px;
      color: var(--dk3);
    }

    .sv-panel-empty span {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gy);
    }

    .sv-p-tag {
      font-family: 'DM Mono', monospace;
      font-size: 8.5px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px;
    }

    .sv-p-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(26px, 3.2vw, 44px);
      line-height: 1;
      margin-bottom: 6px;
    }

    .sv-p-meta {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
      font-size: 14.5px;
      color: var(--red-l);
      line-height: 1.4;
      margin-bottom: 20px;
    }

    .sv-p-desc {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--gyl);
      margin-bottom: 22px;
    }

    .sv-p-feats {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
    }

    .sv-feat {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 12.5px;
      font-weight: 300;
      line-height: 1.6;
      color: var(--gyl);
    }

    .sv-feat::before {
      content: '▸';
      color: var(--red);
      flex-shrink: 0;
      font-size: 9px;
      margin-top: 3px;
    }

    .sv-standards {
      border: 1px solid var(--dk3);
      border-top: none;
      padding: 22px clamp(16px, 3vw, 32px);
    }

    .sv-standards-label {
      font-family: 'DM Mono', monospace;
      font-size: 8.5px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gy);
      margin-bottom: 14px;
    }

    .sv-standards-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .sv-p-tools {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .sv-tool {
      font-family: 'DM Mono', monospace;
      font-size: 8px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gy);
      border: 1px solid var(--dk3);
      padding: 4px 9px;
    }

    /* PLANO — white */
    .plano {
      padding: var(--sec-py) var(--px);
      background: var(--off);
      color: var(--bk);
      position: relative;
      overflow: hidden;
    }

    .plano::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0, 0, 0, .017) 10px, rgba(0, 0, 0, .017) 11px);
      pointer-events: none;
    }

    .plano-hd {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 44px;
      align-items: end;
      margin-bottom: 48px;
    }

    .plano-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: 'DM Mono', monospace;
      font-size: 8px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      border: 1px solid rgba(192, 57, 43, .25);
      padding: 5px 11px;
      margin-bottom: 12px;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(0, 0, 0, .09);
    }

    .step-card {
      background: var(--off);
      padding: clamp(18px, 2.5vw, 28px) clamp(14px, 2vw, 22px);
      position: relative;
      overflow: hidden;
      transition: background .3s;
    }

    .step-card:hover {
      background: var(--wh);
    }

    .step-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--red), var(--red-l));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .45s;
    }

    .step-card:hover::before {
      transform: scaleX(1);
    }

    .step-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 56px;
      line-height: 1;
      color: rgba(0, 0, 0, .05);
      margin-bottom: -4px;
    }

    .step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(14px, 1.4vw, 18px);
      font-weight: 600;
      line-height: 1.2;
      color: var(--bk);
      margin-bottom: 6px;
    }

    .step-desc {
      font-size: 11px;
      font-weight: 300;
      line-height: 1.72;
      color: #555;
    }

    /* CASES */
    .cases {
      padding: var(--sec-py) var(--px);
      background: var(--off);
      color: var(--bk);
      border-top: 1px solid rgba(0, 0, 0, .1);
      position: relative;
      overflow: hidden;
    }

    .cases-chart-bg {
      position: absolute;
      right: clamp(36px, 6vw, 100px);
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      opacity: .07;
    }

    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(0, 0, 0, .1);
      margin-top: 44px;
    }

    .case-card {
      background: var(--wh);
      padding: clamp(22px, 3.5vw, 38px) clamp(16px, 2.5vw, 30px);
      position: relative;
      overflow: hidden;
      transition: background .4s;
    }

    .case-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--red), var(--red-l));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .5s;
    }

    .case-card:hover {
      background: var(--off);
    }

    .case-card:hover::before {
      transform: scaleX(1);
    }

    .case-sector {
      font-family: 'DM Mono', monospace;
      font-size: 8px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }

    .case-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(18px, 1.8vw, 22px);
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 10px;
      color: var(--bk);
    }

    .case-desc {
      font-size: 12px;
      font-weight: 300;
      line-height: 1.8;
      color: #555;
      margin-bottom: 16px;
    }

    .case-results {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .case-result {
      display: flex;
      align-items: baseline;
      gap: 8px;
    }

    .case-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      line-height: 1;
      color: var(--bk);
      letter-spacing: -1px;
    }

    .case-num em {
      color: var(--red);
      font-style: normal;
    }

    .case-label {
      font-family: 'DM Mono', monospace;
      font-size: 7.5px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #666;
      line-height: 1.5;
    }

    /* CLIENTS PREVIEW */
    .clients-preview {
      padding: clamp(40px, 6vw, 80px) 0;
      background: var(--dk);
      border-top: 1px solid var(--dk3);
      overflow: hidden;
    }

    .clients-head {
      padding: 0 var(--px);
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 26px;
    }

    .clients-head-l {
      display: flex;
      align-items: baseline;
      gap: 18px;
    }

    .clients-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, var(--dk3), transparent);
    }

    .cli-see-all {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      cursor: pointer;
      background: none;
      border: none;
      text-decoration: none;
      transition: color .25s;
      white-space: nowrap;
    }

    .cli-see-all:hover {
      color: var(--red-l);
    }

    .cli-track {
      display: flex;
      animation: mqR 32s linear infinite;
      white-space: nowrap;
    }

    .cli-item {
      display: flex;
      align-items: center;
      padding: 0 34px;
      border-right: 1px solid var(--dk3);
    }

    .cli-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(15px, 2vw, 21px);
      letter-spacing: 2px;
      color: var(--gy);
      transition: color .3s;
      white-space: nowrap;
    }

    .cli-item:hover .cli-name {
      color: var(--wh);
    }

    /* METHODOLOGY */
    .methodology {
      padding: clamp(64px, min(9vw, 9vh), 124px) var(--px);
      background: var(--off);
      color: var(--bk);
      position: relative;
      clip-path: polygon(0 48px, 100% 0, 100% calc(100% - 48px), 0 100%);
      padding-top: calc(clamp(64px, min(9vw, 9vh), 124px) + 48px);
      padding-bottom: calc(clamp(64px, min(9vw, 9vh), 124px) + 48px);
      scroll-margin-top: 56px;
    }

    .methodology::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-45deg, transparent, transparent 11px, rgba(0, 0, 0, .017) 11px, rgba(0, 0, 0, .017) 12px);
      pointer-events: none;
    }

    .mt-hd {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 18px;
      margin-bottom: 48px;
      position: relative;
    }

    .pipeline {
      position: relative;
    }

    .pl-track {
      position: absolute;
      top: 36px;
      left: 36px;
      right: calc(25% - 100px);
      height: 1px;
      background: rgba(0, 0, 0, .12);
    }

    .pl-fill {
      position: absolute;
      top: 36px;
      left: 36px;
      height: 1px;
      background: linear-gradient(to right, var(--red), var(--red-l));
      width: 0;
      transition: width 1.6s ease .3s;
    }

    .pl-fill.go {
      width: calc(75% + 64px);
    }

    .pl-dot {
      position: absolute;
      top: 36px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--red);
      transform: translate(-50%, -50%);
      z-index: 1;
      opacity: 0;
      transition: opacity .5s ease .9s;
    }

    .pl-fill.go~.pl-dot {
      opacity: 1;
    }

    .pl-dot-1 {
      left: calc(12.5% + 36px);
    }

    .pl-dot-2 {
      left: calc(37.5% + 36px);
    }

    .pl-dot-3 {
      left: calc(62.5% + 36px);
    }

    .pl-arrow {
      position: absolute;
      top: 36px;
      left: calc(75% + 88px);
      transform: translateY(-50%);
      z-index: 1;
      opacity: 0;
      transition: opacity .5s ease 1.1s;
    }

    .pl-fill.go~.pl-arrow {
      opacity: 1;
    }

    .pl-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .pl-step {
      padding: 0 18px 0 0;
    }

    .pl-node {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      border: 2.5px solid var(--red);
      background: var(--off);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      margin-bottom: 18px;
      transition: background .4s, border-color .4s;
    }

    .pl-node-v {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      color: rgba(0, 0, 0, .45);
      transition: color .4s;
    }

    .pl-step:hover .pl-node {
      background: var(--red);
      border-color: var(--red);
    }

    .pl-step:hover .pl-node-v {
      color: var(--wh);
    }

    .pl-ph {
      font-family: 'DM Mono', monospace;
      font-size: 8.5px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 6px;
    }

    .pl-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(15px, 1.5vw, 19px);
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 6px;
      color: var(--bk);
    }

    .pl-desc {
      font-size: 11.5px;
      font-weight: 300;
      line-height: 1.75;
      color: #555;
    }

    /* KPI */
    .kpi-band {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--dk3);
    }

    .kpi-item {
      background: var(--dk);
      padding: clamp(32px, 5vw, 56px) clamp(14px, 3.5vw, 40px);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .kpi-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--red), var(--red-l));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .5s;
    }

    .kpi-item:hover::before {
      transform: scaleX(1);
    }

    .kpi-ind {
      font-family: 'DM Mono', monospace;
      font-size: 7.5px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      opacity: .5;
      margin-bottom: 6px;
      animation: iB 3s step-end infinite;
    }

    @keyframes iB {

      0%,
      80%,
      100% {
        opacity: .5
      }

      85% {
        opacity: 1
      }
    }

    .kpi-n {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(46px, 6vw, 80px);
      line-height: 1;
      color: var(--wh);
      letter-spacing: -2px;
    }

    .kpi-n em {
      color: var(--red);
      font-style: normal;
    }

    .kpi-l {
      font-family: 'DM Mono', monospace;
      font-size: 8.5px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gy);
      margin-top: 8px;
      line-height: 1.6;
    }

    /* FATORES CRÍTICOS DE PROCESSOS */
    .fcp-sec {
      padding: var(--sec-py) var(--px);
      background: var(--bk);
      border-top: 1px solid var(--dk3);
      border-bottom: 1px solid var(--dk3);
      position: relative;
      overflow: hidden;
    }

    .fcp-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
      font-size: clamp(16px, 1.7vw, 20px);
      color: var(--gyl);
      max-width: 420px;
      margin-top: 14px;
    }

    .fcp-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: clamp(10px, 2vw, 28px);
      margin-top: 96px;
    }

    .fcp-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1;
      max-width: 220px;
      text-align: center;
    }

    .fcp-item.fcp-high {
      margin-bottom: 62px;
    }

    .fcp-card {
      background: var(--dk2);
      border: 1px solid var(--fcp-c-soft);
      border-radius: 3px;
      padding: 18px 16px 22px;
      margin-bottom: -15px;
      position: relative;
      z-index: 1;
      transition: border-color .3s, transform .3s;
    }

    .fcp-item:hover .fcp-card {
      border-color: var(--fcp-c);
      transform: translateY(-3px);
    }

    .fcp-card-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 19px;
      letter-spacing: .5px;
      color: var(--fcp-c);
      margin-bottom: 8px;
    }

    .fcp-card-desc {
      font-size: 11.5px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--gyl);
    }

    .fcp-stem {
      width: 1px;
      height: 22px;
      background: var(--fcp-c-soft);
    }

    .fcp-badge {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: var(--dk2);
      border: 2.5px solid var(--fcp-c);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
      flex-shrink: 0;
      color: var(--fcp-c);
      transition: background .3s;
    }

    .fcp-item:hover .fcp-badge {
      background: var(--fcp-c);
      color: var(--wh);
    }

    .fcp-icon {
      width: 38px;
      height: 38px;
    }

    .fcp-num {
      position: absolute;
      top: -4px;
      left: -4px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--fcp-c);
      color: var(--wh);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 12.5px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* SAP */
    .sap-sec {
      padding: var(--sec-py) var(--px);
      background: var(--bk);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
      border-top: 1px solid var(--dk3);
    }

    .sap-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(44px, 5vw, 70px);
      line-height: 1;
      margin-bottom: 22px;
    }

    .sap-sub {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--red-l);
      margin-bottom: 10px;
    }

    .sap-diagram-wrap {
      position: relative;
    }

    .sap-center-visual {
      position: absolute;
      left: 33.75%;
      top: 26.8%;
      width: 32.5%;
      height: 46.4%;
      border-radius: 50%;
      border: 1.5px solid var(--red);
      box-shadow: 0 0 0 6px rgba(192, 57, 43, .07), 0 0 34px rgba(192, 57, 43, .3);
    }

    .sap-center-visual img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      z-index: 1;
    }

    .sap-center-ph {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: var(--dk2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .sap-center-ph span {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(14px, 1.8vw, 20px);
      letter-spacing: 3px;
      color: var(--wh);
    }

    .sap-body {
      font-size: clamp(12.5px, 1.1vw, 14px);
      font-weight: 300;
      line-height: 1.88;
      color: var(--gyl);
      margin-bottom: 16px;
    }

    .sap-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 24px;
    }

    .sap-tag {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gy);
      border: 1px solid var(--dk3);
      padding: 6px 12px;
      transition: border-color .25s, color .25s, transform .25s;
    }

    .sap-tag:hover {
      border-color: var(--red);
      color: var(--wh);
      transform: translateY(-2px);
    }

    .sap-panel {
      border: 1px solid var(--dk3);
      background: var(--dk2);
      overflow: hidden;
    }

    .sap-ph {
      border-bottom: 1px solid var(--dk3);
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .sapd1 {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--red);
      animation: dP 2s ease infinite;
    }

    .sapd2 {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(192, 57, 43, .5);
      animation: dP 2s ease infinite .4s;
    }

    .sapd3 {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--dk4);
      animation: dP 2s ease infinite .8s;
    }

    @keyframes dP {

      0%,
      100% {
        opacity: .5
      }

      50% {
        opacity: 1
      }
    }

    .sap-pt {
      font-family: 'DM Mono', monospace;
      font-size: 8px;
      letter-spacing: 2px;
      color: var(--gy);
      text-transform: uppercase;
      margin-left: 4px;
    }

    /* CONTACT */
    .contact {
      padding: var(--sec-py) var(--px);
      background: var(--dk2);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      border-top: 1px solid var(--dk3);
      scroll-margin-top: 56px;
    }

    .ct-pre {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      font-style: italic;
      font-weight: 300;
      color: var(--gyl);
      margin-bottom: 10px;
    }

    .ct-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(44px, 5vw, 66px);
      line-height: 1;
      margin-bottom: 22px;
    }

    .ct-sub {
      font-size: 13.5px;
      font-weight: 300;
      line-height: 1.88;
      color: var(--gy);
      max-width: 340px;
      margin-bottom: 36px;
    }

    .ct-info {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .ci-label {
      font-family: 'DM Mono', monospace;
      font-size: 8.5px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 3px;
    }

    .ci-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 300;
      color: var(--wh);
      text-decoration: none;
      transition: color .25s;
    }

    .ci-val:hover {
      color: var(--red);
    }

    .contact-signal {
      position: relative;
      height: 80px;
      margin-top: 28px;
    }

    .cs-dot {
      position: absolute;
      width: 8px;
      height: 8px;
      background: var(--red);
      border-radius: 50%;
      top: 50%;
      left: 24px;
      transform: translateY(-50%);
      animation: csD 2s ease infinite;
    }

    @keyframes csD {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(192, 57, 43, .6)
      }

      50% {
        box-shadow: 0 0 0 7px rgba(192, 57, 43, 0)
      }
    }

    .cs-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(192, 57, 43, .3);
      top: 50%;
      left: 28px;
      transform: translate(-50%, -50%);
      animation: csR 2s ease infinite;
    }

    .cs-r1 {
      width: 28px;
      height: 28px
    }

    .cs-r2 {
      width: 52px;
      height: 52px;
      animation-delay: .5s
    }

    .cs-r3 {
      width: 76px;
      height: 76px;
      animation-delay: 1s
    }

    @keyframes csR {
      0% {
        opacity: .8;
        transform: translate(-50%, -50%) scale(.5)
      }

      100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.1)
      }
    }

    .cs-label {
      position: absolute;
      left: 58px;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'DM Mono', monospace;
      font-size: 8px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--dk4);
      animation: csL 2s ease infinite;
    }

    @keyframes csL {

      0%,
      100% {
        opacity: .4
      }

      50% {
        opacity: .9
      }
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-label {
      display: block;
      font-family: 'DM Mono', monospace;
      font-size: 8.5px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gy);
      margin-bottom: 6px;
    }

    .form-input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--dk3);
      padding: 10px 0;
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 300;
      color: var(--wh);
      outline: none;
      transition: border-color .3s;
    }

    .form-input:focus {
      border-color: var(--red);
    }

    .form-input::placeholder {
      color: var(--gy);
    }

    textarea.form-input {
      resize: none;
      height: 70px;
    }

    .form-btn {
      width: 100%;
      background: var(--red);
      color: var(--wh);
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: none;
      padding: 14px;
      cursor: pointer;
      margin-top: 10px;
      transition: background .3s;
    }

    .form-btn:hover {
      background: var(--red-d);
    }

    /* FOOTER */
    footer {
      padding: clamp(24px, 4vw, 40px) var(--px);
      background: var(--bk);
      border-top: 1px solid var(--dk3);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 16px;
    }

    .ft-tag {
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px;
      font-style: italic;
      color: var(--gy);
    }

    .ft-copy {
      font-family: 'DM Mono', monospace;
      font-size: 8.5px;
      letter-spacing: 2px;
      color: var(--gy);
      text-transform: uppercase;
    }

    .ft-email {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 1px;
      color: var(--gy);
      text-decoration: none;
      transition: color .25s;
    }

    .ft-email:hover {
      color: var(--wh);
    }

    /* Developer credit */
    .dev-credit {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 5px;
      padding-top: 14px;
      border-top: 1px solid var(--dk3);
    }

    .dc-slash {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px;
      color: rgba(192, 57, 43, .6);
    }

    .dc-by {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 1px;
      color: var(--gy);
    }

    .dc-heart {
      color: #e74c3c;
      font-size: 12px;
      animation: hb 2s ease infinite;
    }

    @keyframes hb {

      0%,
      100% {
        transform: scale(1)
      }

      50% {
        transform: scale(1.35)
      }
    }

    .dc-plus {
      color: var(--red);
      font-family: 'DM Mono', monospace;
      font-size: 12px;
      font-weight: 400;
      line-height: 1;
    }

    .dc-link {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 1px;
      color: var(--red);
      text-decoration: none;
      transition: color .25s;
    }

    .dc-link:hover {
      color: var(--red-l);
    }

    /* ════ SOBRE ════ */
    .sobre-hero {
      min-height: 55vh;
      display: flex;
      align-items: flex-end;
      padding: calc(var(--nav-h) + clamp(40px, 7vh, 90px)) var(--px) clamp(44px, 6vh, 70px);
      position: relative;
      overflow: hidden;
      background: var(--dk2);
      border-bottom: 1px solid var(--dk3);
    }

    .sobre-hero::before {
      content: 'SOBRE';
      position: absolute;
      right: -20px;
      bottom: -30px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(120px, 20vw, 260px);
      line-height: 1;
      color: rgba(255, 255, 255, .022);
      pointer-events: none;
      letter-spacing: -4px;
      animation: bPan 10s ease infinite alternate;
    }

    @keyframes bPan {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-24px)
      }
    }

    .sobre-line {
      position: absolute;
      left: var(--px);
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent 10%, var(--red) 30%, var(--red) 70%, transparent 90%);
    }

    .sobre-tag {
      font-family: 'DM Mono', monospace;
      font-size: 9.5px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
    }

    .sobre-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 9vw, 118px);
      line-height: .91;
      letter-spacing: -1px;
      margin-bottom: 18px;
    }

    .sobre-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(16px, 1.8vw, 22px);
      font-weight: 300;
      line-height: 1.6;
      color: var(--gyl);
      max-width: 560px;
    }

    .story {
      padding: var(--sec-py) var(--px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
      border-bottom: 1px solid var(--dk3);
    }

    .story-label {
      font-family: 'DM Mono', monospace;
      font-size: 9.5px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
    }

    .story-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 3.5vw, 46px);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 22px;
    }

    .story-title strong {
      font-weight: 600;
      color: var(--off);
    }

    .story-body {
      font-size: clamp(13px, 1.1vw, 15px);
      font-weight: 300;
      line-height: 1.9;
      color: var(--gyl);
      margin-bottom: 16px;
    }

    .story-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--dk3);
    }

    .sp-item {
      background: var(--dk2);
      padding: 20px 16px;
    }

    .sp-n {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 46px;
      line-height: 1;
      color: var(--dk3);
      margin-bottom: 3px;
    }

    .sp-n em {
      color: var(--red);
      font-style: normal;
    }

    .sp-l {
      font-family: 'DM Mono', monospace;
      font-size: 8px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gyl);
      line-height: 1.5;
    }

    /* Team — entrepreneur focus */
    .team-section {
      padding: var(--sec-py) var(--px);
      background: var(--off);
      color: var(--bk);
      border-bottom: 3px solid var(--red);
    }

    .team-grid {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 68px;
      align-items: start;
      margin-top: 44px;
    }

    .photo-stage {
      position: relative;
      width: 100%;
      padding-top: 128%;
    }

    .ps-shape {
      position: absolute;
      top: 4%;
      right: 4%;
      width: 74%;
      height: 74%;
      border-radius: 50%;
      background: linear-gradient(155deg, var(--red-l), var(--red-d) 75%);
      z-index: 0;
    }

    .ps-ring {
      position: absolute;
      top: -3%;
      right: -3%;
      width: 84%;
      height: 84%;
      border-radius: 50%;
      border: 1px solid rgba(192, 57, 43, .3);
      z-index: 0;
    }

    .ps-line {
      position: absolute;
      bottom: 9%;
      left: 0;
      width: 46%;
      height: 1px;
      background: linear-gradient(to right, var(--red), transparent);
      z-index: 1;
    }

    .ps-img {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 94%;
      height: 96%;
      object-fit: contain;
      object-position: bottom center;
      display: block;
      z-index: 2;
      filter: drop-shadow(0 22px 26px rgba(0, 0, 0, .4));
    }

    .ps-placeholder {
      display: none;
      position: absolute;
      inset: 0;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      z-index: 2;
    }

    .pp-icon {
      width: 56px;
      height: 56px;
      opacity: .4;
    }

    .pp-text {
      font-family: 'DM Mono', monospace;
      font-size: 8px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .75);
      text-align: center;
      line-height: 2;
      padding: 0 16px;
    }

    .team-lead {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 600;
      line-height: 1.28;
      color: var(--bk);
      margin-bottom: 18px;
    }

    .team-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(30px, 4.2vw, 52px);
      line-height: 1;
      color: var(--bk);
      margin-bottom: 4px;
    }

    .team-role {
      font-family: 'DM Mono', monospace;
      font-size: 9.5px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .team-role::before {
      content: '';
      width: 16px;
      height: 1px;
      background: var(--red);
    }

    .team-body {
      font-size: clamp(12.5px, 1.1vw, 15px);
      font-weight: 300;
      line-height: 1.88;
      color: #444;
      margin-bottom: 14px;
    }

    .team-skills {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 18px;
    }

    .team-skill {
      font-family: 'DM Mono', monospace;
      font-size: 8px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #555;
      border: 1px solid rgba(0, 0, 0, .15);
      padding: 5px 11px;
      transition: border-color .25s, color .25s;
    }

    .team-skill:hover {
      border-color: var(--red);
      color: var(--bk);
    }

    /* 25 Anos */
    .anos-sec {
      padding: var(--sec-py) var(--px);
      background: var(--bk);
      border-bottom: 1px solid var(--dk3);
    }

    .anos-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--dk3);
      margin-top: 48px;
    }

    .anos-card {
      background: var(--dk);
      padding: clamp(22px, 3.5vw, 40px) clamp(16px, 2.5vw, 28px);
      position: relative;
      overflow: hidden;
      transition: background .3s;
    }

    .anos-card:hover {
      background: var(--dk2);
    }

    .anos-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--red), var(--red-l));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .5s;
    }

    .anos-card:hover::before {
      transform: scaleX(1);
    }

    .anos-icon {
      width: 28px;
      height: 1px;
      background: var(--red);
      margin-bottom: 16px;
      transition: width .3s;
    }

    .anos-card:hover .anos-icon {
      width: 46px;
    }

    .anos-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(17px, 1.8vw, 22px);
      font-weight: 600;
      line-height: 1.2;
      color: var(--off);
      margin-bottom: 10px;
    }

    .anos-card-desc {
      font-size: 12.5px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--gyl);
    }

    /* MVV — letters more visible */
    .mvv {
      background: var(--bk);
    }

    .mvv-letter {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(140px, 17vw, 240px);
      line-height: .85;
      color: rgba(192, 57, 43, .1);
      -webkit-text-stroke: 2px rgba(192, 57, 43, .5);
      letter-spacing: -4px;
      user-select: none;
      animation: lF 6s ease infinite;
    }

    @keyframes lF {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-12px)
      }
    }

    .mvv-missao {
      padding: var(--sec-py) var(--px);
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 72px;
      align-items: center;
      border-bottom: 1px solid var(--dk3);
      position: relative;
      overflow: hidden;
    }

    .mvv-missao::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 35%;
      background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(192, 57, 43, .04) 8px, rgba(192, 57, 43, .04) 9px);
      pointer-events: none;
    }

    .mvv-label {
      font-family: 'DM Mono', monospace;
      font-size: 9.5px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .mvv-label::before {
      content: '';
      width: 18px;
      height: 1px;
      background: var(--red);
    }

    .mvv-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(44px, 5.5vw, 78px);
      line-height: 1;
      margin-bottom: 18px;
    }

    .mvv-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(17px, 1.7vw, 22px);
      font-weight: 300;
      line-height: 1.75;
      color: var(--gyl);
    }

    .mvv-visao {
      padding: var(--sec-py) var(--px);
      background: var(--off);
      color: var(--bk);
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 72px;
      align-items: center;
      border-bottom: 3px solid var(--red);
    }

    .radar-wrap {
      width: 180px;
      height: 180px;
      position: relative;
      margin: 0 auto;
      flex-shrink: 0;
    }

    .rring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(192, 57, 43, .2);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: rExp 3s ease-in-out infinite;
    }

    .rring:nth-child(1) {
      width: 32px;
      height: 32px
    }

    .rring:nth-child(2) {
      width: 76px;
      height: 76px;
      animation-delay: .6s
    }

    .rring:nth-child(3) {
      width: 124px;
      height: 124px;
      animation-delay: 1.2s
    }

    .rring:nth-child(4) {
      width: 176px;
      height: 176px;
      animation-delay: 1.8s
    }

    @keyframes rExp {
      0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(.5)
      }

      100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1)
      }
    }

    .rdot {
      position: absolute;
      width: 10px;
      height: 10px;
      background: var(--red);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: rP 1.5s ease infinite;
    }

    @keyframes rP {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(192, 57, 43, .6)
      }

      50% {
        box-shadow: 0 0 0 10px rgba(192, 57, 43, 0)
      }
    }

    .mvv-visao .mvv-letter {
      color: rgba(192, 57, 43, .08);
      -webkit-text-stroke: 2px rgba(192, 57, 43, .28);
    }

    .mvv-visao .mvv-text {
      color: #555;
    }

    .mvv-visao .mvv-title {
      color: var(--bk);
    }

    .mvv-valores {
      padding: var(--sec-py) var(--px);
      background: var(--dk2);
      border-bottom: 1px solid var(--dk3);
    }

    .mvv-val-hd {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 18px;
      margin-bottom: 48px;
    }

    .mvv-valores .mvv-letter {
      display: block;
      font-size: clamp(80px, 12vw, 180px);
    }

    .valores-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--dk3);
    }

    .valor-card {
      background: var(--dk2);
      padding: clamp(22px, 3.5vw, 38px) clamp(16px, 2.5vw, 28px);
      position: relative;
      overflow: hidden;
      transition: background .4s;
    }

    .valor-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--red), var(--red-l));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .5s;
    }

    .valor-card:hover {
      background: var(--dk);
    }

    .valor-card:hover::before {
      transform: scaleX(1);
    }

    .valor-icon {
      width: 30px;
      height: 1px;
      background: var(--red);
      margin-bottom: 16px;
      transition: width .3s;
    }

    .valor-card:hover .valor-icon {
      width: 50px;
    }

    .valor-num {
      font-family: 'DM Mono', monospace;
      font-size: 9.5px;
      letter-spacing: 4px;
      color: var(--red);
      margin-bottom: 12px;
    }

    .valor-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(20px, 2vw, 26px);
      font-weight: 600;
      line-height: 1.1;
      margin-bottom: 8px;
      color: var(--off);
    }

    .valor-desc {
      font-size: 12.5px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--gyl);
    }

    .certs {
      padding: clamp(44px, 6vw, 88px) var(--px);
      background: var(--dk);
    }

    .certs-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 28px;
    }

    .cert-badge {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gyl);
      border: 1px solid var(--dk3);
      padding: 10px 16px;
      transition: border-color .3s, color .3s, transform .3s;
      position: relative;
      overflow: hidden;
    }

    .cert-badge::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(192, 57, 43, .05);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }

    .cert-badge:hover {
      border-color: var(--red);
      color: var(--wh);
      transform: translateY(-3px);
    }

    .cert-badge:hover::before {
      transform: scaleX(1);
    }

    .sobre-cta {
      padding: clamp(52px, 7vw, 100px) var(--px);
      background: var(--red);
      color: var(--wh);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
    }

    .sobre-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-55deg, transparent, transparent 22px, rgba(255, 255, 255, .04) 22px, rgba(255, 255, 255, .04) 23px);
      animation: sA 4s linear infinite;
    }

    @keyframes sA {
      from {
        background-position: 0 0
      }

      to {
        background-position: 46px 46px
      }
    }

    .cta-heading {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(34px, 5vw, 60px);
      line-height: 1;
      margin-bottom: 6px;
      position: relative;
    }

    .cta-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-style: italic;
      font-weight: 300;
      opacity: .85;
      position: relative;
    }

    .cta-btn {
      position: relative;
      z-index: 1;
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      background: var(--wh);
      padding: 14px 28px;
      border: none;
      cursor: pointer;
      transition: transform .25s, box-shadow .25s;
      text-decoration: none;
      white-space: nowrap;
      display: inline-block;
      flex-shrink: 0;
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
    }

    /* ════ CLIENTES ════ */
    .clientes-hero {
      min-height: 36vh;
      display: flex;
      align-items: flex-end;
      padding: calc(var(--nav-h) + clamp(28px, 4.5vh, 54px)) var(--px) clamp(26px, 3.5vh, 40px);
      position: relative;
      overflow: hidden;
      background: var(--dk2);
      border-bottom: 1px solid var(--dk3);
    }

    .clientes-hero::before {
      content: 'CLIENTES';
      position: absolute;
      right: -30px;
      bottom: -30px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(100px, 17vw, 240px);
      line-height: 1;
      color: rgba(255, 255, 255, .018);
      pointer-events: none;
      letter-spacing: -5px;
      animation: bPan 12s ease infinite alternate;
    }

    .cli-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--dk3);
    }

    .cli-stat-item {
      background: var(--dk);
      padding: clamp(22px, 3.2vw, 38px) clamp(14px, 3vw, 34px);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cli-stat-photo {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: grayscale(1) brightness(.85) contrast(1.12);
      z-index: 0;
    }

    .cli-stat-item:nth-child(1) .cli-stat-photo {
      background-image: url(hof_1.jpg);
    }

    .cli-stat-item:nth-child(2) .cli-stat-photo {
      background-image: url(hof_2.jpg);
    }

    .cli-stat-item:nth-child(3) .cli-stat-photo {
      background-image: url(hof_3.jpg);
    }

    .cli-stat-item:nth-child(4) .cli-stat-photo {
      background-image: url(hof_4.jpg);
    }

    .cli-stat-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(165deg, rgba(192, 57, 43, .35) 0%, rgba(15, 13, 11, .55) 45%, rgba(8, 8, 7, .93) 100%);
      z-index: 1;
    }

    .cli-stat-item>*:not(.cli-stat-photo) {
      position: relative;
      z-index: 2;
    }

    .cli-stat-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--red), var(--red-l));
      transform: scaleX(0);
      z-index: 2;
      transform-origin: left;
      transition: transform .5s;
    }

    .cli-stat-item:hover::before {
      transform: scaleX(1);
    }

    .cli-stat-n {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(42px, 5vw, 68px);
      line-height: 1;
      color: var(--wh);
      letter-spacing: -2px;
    }

    .cli-stat-n em {
      color: var(--red);
      font-style: normal;
    }

    .cli-stat-l {
      font-family: 'DM Mono', monospace;
      font-size: 8px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gy);
      margin-top: 7px;
      line-height: 1.5;
    }

    /* CLIENTES EM DESTAQUE */
    .featured-cli {
      padding: clamp(52px, 7vw, 96px) var(--px) clamp(40px, 5vw, 64px);
      background: var(--bk);
    }

    .fcli-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--dk3);
      margin-top: 44px;
      border: 1px solid var(--dk3);
    }

    .fcli-card {
      background: var(--dk2);
      padding: 30px 26px;
      position: relative;
      overflow: hidden;
      transition: background .35s;
    }

    .fcli-card:hover {
      background: var(--dk);
    }

    .fcli-letter {
      position: absolute;
      right: 10px;
      top: -14px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 90px;
      line-height: 1;
      color: rgba(192, 57, 43, .1);
      pointer-events: none;
    }

    .fcli-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(22px, 2.4vw, 28px);
      letter-spacing: 1px;
      color: var(--wh);
      position: relative;
      margin-bottom: 6px;
    }

    .fcli-sector {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red-l);
      position: relative;
    }

    .cli-carousels {
      padding: clamp(52px, 7vw, 96px) 0;
      background: var(--bk);
      border-top: 1px solid var(--dk3);
      overflow: hidden;
    }

    .cli-carousels-head {
      padding: 0 var(--px);
      margin-bottom: 40px;
    }

    .cli-carousel-row {
      display: flex;
      animation: cliR 62s linear infinite;
      white-space: nowrap;
      gap: 14px;
    }

    .cli-carousel-row:hover {
      animation-play-state: paused;
    }

    .cli-card {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 24px 30px;
      background: var(--dk2);
      border: 1px solid var(--dk3);
      flex-shrink: 0;
      min-width: 208px;
      min-height: 88px;
      transition: border-color .3s, background .3s, transform .3s;
    }

    .cli-card:hover {
      border-color: var(--red);
      background: var(--dk);
      transform: translateY(-4px);
    }

    .cli-card img {
      max-height: 34px;
      max-width: 100%;
      object-fit: contain;
      filter: grayscale(1) brightness(1.6) opacity(.55);
      transition: filter .3s;
      margin-bottom: 6px;
    }

    .cli-card:hover img {
      filter: grayscale(0) brightness(1) opacity(1);
    }

    .cli-card-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(17px, 1.8vw, 23px);
      letter-spacing: 2px;
      color: var(--wh);
      margin-bottom: 4px;
    }

    .cli-card-sector {
      font-family: 'DM Mono', monospace;
      font-size: 8px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gy);
    }

    @keyframes cliR {
      from {
        transform: translateX(0)
      }

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

    .sectors {
      padding: clamp(52px, 7vw, 96px) var(--px);
      background: var(--dk);
      border-top: 1px solid var(--dk3);
    }

    .sectors-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--dk3);
      margin-top: 40px;
    }

    .sector-card {
      background: var(--dk);
      padding: clamp(22px, 3.5vw, 38px) clamp(16px, 2.5vw, 30px);
      position: relative;
      overflow: hidden;
      transition: background .4s;
    }

    .sector-card:hover {
      background: var(--dk2);
    }

    .sector-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--red), var(--red-l));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .5s;
    }

    .sector-card:hover::before {
      transform: scaleX(1);
    }

    .sector-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(17px, 1.8vw, 22px);
      font-weight: 600;
      color: var(--off);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .sector-name::before {
      content: '';
      width: 16px;
      height: 1px;
      background: var(--red);
      flex-shrink: 0;
    }

    .sector-clients {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .sector-cli {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gyl);
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .sector-cli::before {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--dk4);
      flex-shrink: 0;
    }

    .cli-placeholder {
      padding: clamp(44px, 6vw, 72px) var(--px);
      background: var(--bk);
      border-top: 1px solid var(--dk3);
    }

    .pf-corner {
      position: absolute;
      width: 18px;
      height: 18px;
      z-index: 3;
      pointer-events: none;
    }

    .pf-tl {
      top: -9px;
      left: -9px;
      border-top: 2px solid var(--red);
      border-left: 2px solid var(--red);
    }

    .pf-tr {
      top: -9px;
      right: -9px;
      border-top: 2px solid var(--red);
      border-right: 2px solid var(--red);
    }

    .pf-bl {
      bottom: -9px;
      left: -9px;
      border-bottom: 2px solid var(--red);
      border-left: 2px solid var(--red);
    }

    .pf-br {
      bottom: -9px;
      right: -9px;
      border-bottom: 2px solid var(--red);
      border-right: 2px solid var(--red);
    }

    .ph-card {
      position: relative;
      border: 1px solid rgba(192, 57, 43, .35);
      padding: clamp(32px, 5vw, 60px);
      text-align: center;
      background: linear-gradient(165deg, rgba(192, 57, 43, .06), transparent 60%);
      max-width: 520px;
      margin: 0 auto;
    }

    .ph-icon {
      width: 46px;
      height: 46px;
      margin: 0 auto 18px;
    }

    .ph-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(20px, 2.2vw, 28px);
      font-weight: 300;
      color: var(--off);
      margin-bottom: 9px;
    }

    .ph-sub {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--gy);
      margin-bottom: 22px;
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    @keyframes slideUp {
      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* RESPONSIVE */
    @media(max-width:1100px) {
      .sv-split {
        flex-direction: column;
      }

      .sv-list-col {
        flex: none;
        border-right: none;
        border-bottom: 1px solid var(--dk3);
      }

      .sv-panel-col {
        display: none !important;
      }
    }

    @media(max-width:1000px) {

      .nav-links,
      .nav-cta {
        display: none;
      }

      .nav-hb {
        display: flex;
      }

      .hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100dvh;
      }

      .hero-l {
        padding: calc(var(--nav-h) + 14px) var(--px) 34px;
        justify-content: flex-end;
      }

      .hero-r {
        height: 250px;
      }

      .manifesto {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .mf-left {
        position: static;
        flex-direction: row;
        align-items: baseline;
        gap: 14px;
        margin-bottom: 26px;
        flex-wrap: wrap;
      }

      .mf-visual,
      .mf-bg {
        display: none;
      }

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

      .nd-visual {
        display: none;
      }

      .plano-hd {
        grid-template-columns: 1fr;
      }

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

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

      .pl-steps {
        grid-template-columns: 1fr 1fr;
      }

      .pl-track,
      .pl-fill,
      .pl-dot,
      .pl-arrow {
        display: none;
      }

      .kpi-band {
        grid-template-columns: 1fr 1fr;
      }

      .fcp-row {
        flex-direction: column;
        align-items: center;
        margin-top: 56px;
        gap: 40px;
      }

      .fcp-item,
      .fcp-item.fcp-high {
        margin-bottom: 0;
        max-width: 380px;
      }

      .fcp-card {
        margin-bottom: 0;
        order: 2;
      }

      .fcp-stem {
        order: 1;
        height: 20px;
      }

      .fcp-badge {
        order: 0;
      }

      .sap-sec {
        grid-template-columns: 1fr;
      }

      .sap-panel {
        display: none;
      }

      .contact {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .contact-signal {
        display: none;
      }

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

      .story {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .photo-stage {
        padding-top: 100%;
        max-width: 290px;
        margin: 0 auto;
      }

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

      .mvv-missao,
      .mvv-visao {
        grid-template-columns: 1fr;
      }

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

      .sobre-cta {
        flex-direction: column;
        align-items: flex-start;
      }

      .cli-stats {
        grid-template-columns: 1fr 1fr;
      }

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

      .radar-wrap {
        display: none;
      }

      .cli-home-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
    }

    @media(max-width:640px) {
      :root {
        --px: 20px;
      }

      .hero-r {
        height: 190px;
      }

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

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

      .pl-steps {
        grid-template-columns: 1fr;
      }

      .methodology {
        clip-path: none;
        padding-top: var(--sec-py);
        padding-bottom: var(--sec-py);
      }

      .kpi-item {
        padding: 26px 12px;
      }

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

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

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

      .nav-login {
        display: none;
      }
    }