
    :root {
      --ink: #04042f;
      --ink-soft: #080a3a;
      --panel: #0d1047;
      --violet: #4906fc;
      --violet-strong: #2b17fa;
      --violet-soft: #8f5dfb;
      --cyan: #3ba1fd;
      --green: #67c5fd;
      --cream: #f2f6fe;
      --white: #ffffff;
      --muted: #acb5ec;
      --line: rgba(255,255,255,.11);
      --dark-line: rgba(4,4,47,.12);
      --shadow: 0 34px 90px rgba(4, 4, 47, .22);
      --radius: 28px;
      --container: 1220px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--white);
      background: var(--ink);
      font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.55;
      overflow-x: hidden;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    body.menu-open { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    button { color: inherit; }
    img, svg { display: block; max-width: 100%; }
    h1, h2, h3, p { margin-top: 0; }
    ::selection { color: #fff; background: rgba(73,6,252,.78); }

    .skip-link {
      position: fixed;
      top: 10px;
      left: 10px;
      z-index: 200;
      transform: translateY(-150%);
      padding: 10px 16px;
      border-radius: 12px;
      color: var(--ink);
      background: var(--white);
      font-weight: 800;
    }
    .skip-link:focus { transform: translateY(0); }

    :focus-visible {
      outline: 3px solid var(--cyan);
      outline-offset: 3px;
    }

    .container {
      width: min(var(--container), calc(100% - 48px));
      margin-inline: auto;
    }

    .top-note {
      position: relative;
      z-index: 102;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 6px 20px;
      color: rgba(255,255,255,.73);
      background: #020224;
      border-bottom: 1px solid rgba(255,255,255,.06);
      font-size: 11px;
      font-weight: 750;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    .top-note span { color: var(--cyan); }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(255,255,255,.075);
      background: rgba(4,4,47,.82);
      backdrop-filter: blur(22px) saturate(140%);
      -webkit-backdrop-filter: blur(22px) saturate(140%);
    }
    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 78px;
      gap: 24px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
      gap: 12px;
      font-weight: 870;
      letter-spacing: -.02em;
    }
    .brand-mark {
      position: relative;
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      overflow: hidden;
      border: 1px solid rgba(103,197,253,.4);
      border-radius: 14px;
      background: #fff;
      box-shadow: inset 0 1px 0 #fff, 0 10px 30px rgba(73,6,252,.34), 0 0 0 3px rgba(59,161,253,.06);
    }
    .brand-mark img { position: absolute; top: -10px; left: -21px; width: 85px; max-width: none; }
    .brand-mark::before { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; height: 6px; content: ""; background: #fff; }
    .brand-mark::after {
      position: absolute;
      inset: -60% -10%;
      content: "";
      transform: rotate(28deg);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
    }
    .brand-copy { display: grid; line-height: 1; }
    .brand-copy strong { font-size: 16px; letter-spacing: .035em; }
    .brand-copy small {
      margin-top: 5px;
      color: #7787c5;
      font-size: 8px;
      letter-spacing: .22em;
      text-transform: uppercase;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }
    .desktop-nav a {
      padding: 10px 12px;
      border-radius: 10px;
      color: #bdb9ca;
      font-size: 13px;
      font-weight: 700;
      transition: color .2s ease, background .2s ease;
    }
    .desktop-nav a:hover { color: #fff; background: rgba(255,255,255,.055); }
    .nav-actions { display: flex; align-items: center; gap: 10px; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 20px;
      gap: 10px;
      border: 1px solid transparent;
      border-radius: 14px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 820;
      letter-spacing: -.01em;
      transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, #3ba1fd 0%, #0c54fd 45%, #4906fc 100%);
      box-shadow: 0 12px 30px rgba(43,23,250,.33), inset 0 1px 0 rgba(255,255,255,.36);
    }
    .btn-primary:hover { box-shadow: 0 18px 42px rgba(12,84,253,.42), inset 0 1px 0 rgba(255,255,255,.36); }
    .btn-ghost {
      color: #eeeaf7;
      border-color: rgba(255,255,255,.13);
      background: rgba(255,255,255,.045);
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
    .btn-dark {
      color: #fff;
      background: #0c0a15;
      box-shadow: 0 12px 28px rgba(8,7,17,.15);
    }
    .btn-light {
      color: #14101d;
      border-color: rgba(14,10,30,.15);
      background: rgba(255,255,255,.52);
    }
    .btn-small { min-height: 42px; padding: 0 16px; font-size: 12px; border-radius: 12px; }
    .btn-arrow { font-size: 18px; font-weight: 500; transition: transform .2s ease; }
    .btn:hover .btn-arrow { transform: translateX(4px); }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 13px;
      background: rgba(255,255,255,.05);
      cursor: pointer;
    }
    .mobile-toggle span,
    .mobile-toggle::before,
    .mobile-toggle::after {
      display: block;
      width: 18px;
      height: 2px;
      margin: 4px auto;
      content: "";
      border-radius: 99px;
      background: #fff;
      transition: transform .2s ease, opacity .2s ease;
    }
    .mobile-toggle[aria-expanded="true"] span { opacity: 0; }
    .mobile-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
    .mobile-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

    .mobile-menu {
      position: fixed;
      inset: 110px 0 0;
      z-index: 99;
      display: none;
      padding: 26px 24px 40px;
      overflow-y: auto;
      background: rgba(4,4,47,.985);
    }
    .mobile-menu.open { display: block; }
    .mobile-menu nav { display: grid; gap: 6px; }
    .mobile-menu nav a {
      padding: 15px 4px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      font-size: 19px;
      font-weight: 720;
    }
    .mobile-menu .menu-actions { display: grid; gap: 10px; margin-top: 28px; }

    .hero {
      position: relative;
      min-height: 850px;
      overflow: hidden;
      padding: 92px 0 58px;
      isolation: isolate;
      background:
        radial-gradient(circle at 74% 28%, rgba(73,6,252,.32), transparent 29%),
        radial-gradient(circle at 27% 70%, rgba(59,161,253,.15), transparent 25%),
        linear-gradient(180deg, #04042f 0%, #050630 66%, #02021f 100%);
    }
    .hero::before {
      position: absolute;
      inset: 0;
      z-index: -2;
      content: "";
      opacity: .25;
      background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
    }
    .hero::after {
      position: absolute;
      top: -340px;
      right: -280px;
      z-index: -1;
      width: 780px;
      height: 780px;
      content: "";
      border: 1px solid rgba(89,97,252,.24);
      border-radius: 50%;
      box-shadow: 0 0 190px rgba(73,6,252,.2), inset 0 0 180px rgba(59,161,253,.07);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: .92fr 1.18fr;
      align-items: center;
      gap: 66px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      margin-bottom: 24px;
      padding: 8px 11px 8px 9px;
      gap: 9px;
      border: 1px solid rgba(103,197,253,.22);
      border-radius: 999px;
      color: #cddcff;
      background: rgba(59,161,253,.08);
      font-size: 10px;
      font-weight: 830;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .eyebrow-dot {
      position: relative;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(100,237,181,.09), 0 0 16px rgba(100,237,181,.55);
    }
    .eyebrow-dot::after {
      position: absolute;
      inset: -4px;
      content: "";
      border: 1px solid rgba(100,237,181,.5);
      border-radius: inherit;
      animation: pulse-ring 2.2s ease-out infinite;
    }
    @keyframes pulse-ring { 0% { transform: scale(.65); opacity: .8; } 80%,100% { transform: scale(1.7); opacity: 0; } }

    .hero h1 {
      max-width: 650px;
      margin-bottom: 25px;
      font-size: clamp(47px, 5.55vw, 78px);
      line-height: .99;
      letter-spacing: -.065em;
      font-weight: 880;
    }
    .hero h1 .gradient {
      display: block;
      color: transparent;
      background: linear-gradient(102deg, #fff 0%, #dce9ff 25%, #67c5fd 49%, #5961fc 73%, #8f5dfb 103%);
      background-clip: text;
      -webkit-background-clip: text;
    }
    .hero-copy > p {
      max-width: 610px;
      margin-bottom: 30px;
      color: #aeb9da;
      font-size: 17px;
      line-height: 1.75;
    }
    .hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
    .hero-signals {
      display: flex;
      flex-wrap: wrap;
      margin-top: 28px;
      gap: 10px 18px;
      color: #8f8b9e;
      font-size: 11px;
      font-weight: 700;
    }
    .hero-signals span { display: inline-flex; align-items: center; gap: 7px; }
    .hero-signals i {
      display: grid;
      width: 17px;
      height: 17px;
      place-items: center;
      border: 1px solid rgba(100,237,181,.22);
      border-radius: 50%;
      color: var(--green);
      background: rgba(100,237,181,.06);
      font-style: normal;
      font-size: 9px;
    }

    .hero-product {
      position: relative;
      min-width: 0;
      perspective: 1400px;
    }
    .product-halo {
      position: absolute;
      inset: 3% 4% 0;
      z-index: -1;
      border-radius: 50%;
      filter: blur(42px);
      background: radial-gradient(circle, rgba(73,6,252,.35), rgba(59,161,253,.11) 48%, transparent 70%);
    }
    .app-window {
      position: relative;
      min-height: 560px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 24px;
      background: #070832;
      box-shadow: 0 42px 100px rgba(0,0,26,.48), 0 0 0 1px rgba(59,161,253,.09), inset 0 1px 0 rgba(255,255,255,.08);
      transform: rotateY(-2deg) rotateX(1deg);
    }
    .window-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 47px;
      padding: 0 15px;
      border-bottom: 1px solid rgba(255,255,255,.07);
      color: #8c8899;
      background: #0a0b3a;
      font-size: 9px;
      font-weight: 720;
      letter-spacing: .03em;
    }
    .window-dots { display: flex; gap: 6px; }
    .window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #373440; }
    .window-dots i:nth-child(1) { background: #f36d7b; }
    .window-dots i:nth-child(2) { background: #edbf5b; }
    .window-dots i:nth-child(3) { background: #64d6a1; }
    .live-mini { display: flex; align-items: center; gap: 6px; color: #80dbb4; }
    .live-mini::before { width: 6px; height: 6px; content: ""; border-radius: 50%; background: #64edb5; box-shadow: 0 0 10px #64edb5; }
    .app-body { display: grid; grid-template-columns: 55px 1fr 176px; min-height: 513px; }
    .app-sidebar {
      display: flex;
      align-items: center;
      flex-direction: column;
      padding: 14px 8px;
      gap: 13px;
      border-right: 1px solid rgba(255,255,255,.065);
      background: #05062b;
    }
    .app-logo {
      position: relative;
      display: grid;
      width: 29px;
      height: 29px;
      margin-bottom: 8px;
      place-items: center;
      border-radius: 9px;
      overflow: hidden;
      border: 1px solid rgba(103,197,253,.3);
      background: #fff;
      box-shadow: 0 7px 16px rgba(43,23,250,.25);
    }
    .app-logo img { position: absolute; top: -7px; left: -15px; width: 58px; max-width: none; }
    .app-logo::after { position: absolute; right: 0; bottom: 0; left: 0; height: 4px; content: ""; background: #fff; }
    .side-icon {
      display: grid;
      width: 31px;
      height: 31px;
      place-items: center;
      border: 1px solid transparent;
      border-radius: 9px;
      color: #686472;
      font-size: 8px;
      font-weight: 900;
      letter-spacing: .03em;
    }
    .side-icon.active { color: #dce9ff; border-color: rgba(59,161,253,.24); background: rgba(12,84,253,.14); }
    .side-spacer { flex: 1; }
    .side-user { width: 27px; height: 27px; border-radius: 8px; background: linear-gradient(135deg,#d9cfff,#7a58db); }
    .chat-pane { min-width: 0; background: linear-gradient(180deg,#0c0d3a,#08092f); }
    .chat-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 64px;
      padding: 11px 16px;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .contact { display: flex; align-items: center; min-width: 0; gap: 10px; }
    .avatar {
      position: relative;
      display: grid;
      width: 34px;
      height: 34px;
      flex: 0 0 auto;
      place-items: center;
      border-radius: 11px;
      color: #211b35;
      background: linear-gradient(135deg,#f0e8ff,#bea6ff);
      font-size: 10px;
      font-weight: 850;
    }
    .avatar::after { position: absolute; right: -1px; bottom: -1px; width: 8px; height: 8px; content: ""; border: 2px solid #11101a; border-radius: 50%; background: #52e6a8; }
    .contact strong { display: block; overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
    .contact small { display: block; margin-top: 2px; color: #777382; font-size: 8px; }
    .head-tag { padding: 5px 7px; border: 1px solid rgba(100,237,181,.15); border-radius: 7px; color: #85dfb9; background: rgba(100,237,181,.06); font-size: 7px; font-weight: 800; text-transform: uppercase; }
    .conversation { display: flex; min-height: 393px; padding: 20px 17px 14px; flex-direction: column; gap: 12px; }
    .message { max-width: 78%; padding: 10px 12px; border-radius: 13px; font-size: 8.5px; line-height: 1.55; box-shadow: 0 7px 20px rgba(0,0,0,.08); }
    .message.customer { align-self: flex-start; color: #ddd9e5; border: 1px solid rgba(255,255,255,.07); border-bottom-left-radius: 4px; background: #1b1924; }
    .message.ai { align-self: flex-end; color: #f4f7ff; border: 1px solid rgba(103,197,253,.2); border-bottom-right-radius: 4px; background: linear-gradient(135deg,rgba(12,84,253,.4),rgba(73,6,252,.28)); }
    .audio-line { display: flex; align-items: center; gap: 7px; }
    .play-dot { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; color: #15101e; background: var(--violet-soft); font-size: 8px; }
    .wave { display: flex; align-items: center; flex: 1; height: 18px; gap: 2px; }
    .wave i { width: 2px; border-radius: 99px; background: #938da0; }
    .wave i:nth-child(1), .wave i:nth-child(8) { height: 4px; }
    .wave i:nth-child(2), .wave i:nth-child(7) { height: 8px; }
    .wave i:nth-child(3), .wave i:nth-child(6) { height: 13px; }
    .wave i:nth-child(4) { height: 17px; }
    .wave i:nth-child(5) { height: 11px; }
    .audio-time { color: #6f6b78; font-size: 7px; }
    .transcript { margin-top: 7px; padding-top: 7px; border-top: 1px solid rgba(255,255,255,.07); color: #9c97a7; font-size: 7px; }
    .transcript b { color: var(--cyan); font-weight: 750; }
    .mini-product {
      display: grid;
      grid-template-columns: 44px 1fr auto;
      align-items: center;
      margin-top: 8px;
      padding: 7px;
      gap: 8px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px;
      background: rgba(255,255,255,.055);
    }
    .product-img { position: relative; width: 44px; height: 40px; overflow: hidden; border: 1px solid rgba(103,197,253,.24); border-radius: 8px; background: #fff; box-shadow: 0 6px 15px rgba(12,84,253,.2); }
    .product-img img { position: absolute; top: -10px; left: -22px; width: 88px; max-width: none; }
    .product-img::after { position: absolute; right: 0; bottom: 0; left: 0; height: 6px; content: ""; background: #fff; }
    .mini-product strong { display: block; font-size: 7px; }
    .mini-product small { color: #ada6bd; font-size: 6px; }
    .mini-price { color: #91f0c5; font-size: 7px; font-weight: 850; }
    .typing { display: inline-flex; align-self: flex-end; padding: 8px 10px; gap: 3px; border: 1px solid rgba(59,161,253,.16); border-radius: 11px 11px 3px 11px; background: rgba(12,84,253,.13); }
    .typing i { width: 4px; height: 4px; border-radius: 50%; background: #bba6f7; animation: typing 1.2s infinite ease-in-out; }
    .typing i:nth-child(2) { animation-delay: .13s; }
    .typing i:nth-child(3) { animation-delay: .26s; }
    @keyframes typing { 0%,70%,100% { transform: translateY(0); opacity: .45; } 35% { transform: translateY(-3px); opacity: 1; } }
    .composer { display: flex; align-items: center; height: 42px; margin: 0 14px 13px; padding: 0 8px 0 12px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; color: #5f5b68; background: #17151f; font-size: 7px; }
    .composer span { flex: 1; }
    .send-mini { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 8px; color: #fff; background: linear-gradient(135deg,#3ba1fd,#0c54fd 52%,#4906fc); font-size: 9px; }
    .context-pane { padding: 16px 13px; border-left: 1px solid rgba(255,255,255,.065); background: #06072d; }
    .context-label { margin-bottom: 11px; color: #696574; font-size: 7px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
    .lead-card { padding: 11px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: #14121d; }
    .lead-score { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
    .lead-score span { color: #7d778a; font-size: 7px; }
    .score-ring { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: conic-gradient(#71e6b1 0 82%, #2b2832 82%); }
    .score-ring::before { display: grid; width: 26px; height: 26px; content: "82"; place-items: center; border-radius: 50%; color: #d9f8e9; background: #14121d; font-size: 7px; font-weight: 900; }
    .lead-row { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; border-top: 1px solid rgba(255,255,255,.05); color: #6f6a79; font-size: 6.5px; }
    .lead-row strong { color: #c7c2d0; font-size: 6.5px; font-weight: 720; }
    .pipeline { margin-top: 12px; padding: 11px; border: 1px solid rgba(59,161,253,.13); border-radius: 12px; background: rgba(12,84,253,.055); }
    .pipeline-head { display: flex; justify-content: space-between; color: #7c7688; font-size: 6px; }
    .pipeline-head strong { color: #d7cbff; font-size: 7px; }
    .pipeline-bar { height: 4px; margin: 9px 0; overflow: hidden; border-radius: 99px; background: #292632; }
    .pipeline-bar i { display: block; width: 68%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#7242ec,#65dfed); }
    .automation-note { display: flex; align-items: flex-start; margin-top: 12px; padding: 9px; gap: 7px; border: 1px solid rgba(94,231,247,.1); border-radius: 10px; color: #898393; background: rgba(94,231,247,.035); font-size: 6.5px; line-height: 1.45; }
    .automation-note i { display: grid; width: 17px; height: 17px; flex: 0 0 auto; place-items: center; border-radius: 6px; color: #65dfed; background: rgba(94,231,247,.09); font-style: normal; font-size: 7px; }

    .float-chip {
      position: absolute;
      z-index: 4;
      display: flex;
      align-items: center;
      padding: 10px 12px;
      gap: 9px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 13px;
      color: #ddd8e7;
      background: rgba(20,17,32,.82);
      box-shadow: 0 16px 40px rgba(0,0,0,.26);
      backdrop-filter: blur(15px);
      font-size: 8px;
      font-weight: 720;
      animation: float 5s ease-in-out infinite;
    }
    .float-chip i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(100,237,181,.65); }
    .float-chip.one { top: 70px; right: -24px; }
    .float-chip.two { bottom: 75px; left: -30px; animation-delay: -2.1s; }
    .float-chip.two i { background: var(--cyan); box-shadow: 0 0 12px rgba(94,231,247,.65); }
    @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
    .demo-caption { margin: 15px 0 0; color: #6e6979; font-size: 9px; text-align: center; letter-spacing: .04em; }

    .sector-strip {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.3fr repeat(5, auto);
      align-items: center;
      margin-top: 72px;
      padding: 21px 24px;
      gap: 20px;
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 20px;
      background: rgba(255,255,255,.025);
    }
    .sector-strip p { margin: 0; color: #6f6b7b; font-size: 9px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
    .sector-name { display: flex; align-items: center; gap: 8px; color: #aaa6b5; font-size: 10px; font-weight: 760; white-space: nowrap; }
    .sector-name i { width: 5px; height: 5px; border-radius: 50%; background: #5b5664; }

    .light-section { color: #04042f; background: var(--cream); }
    .section { position: relative; padding: 116px 0; }
    .section-kicker {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      gap: 10px;
      color: #2b17fa;
      font-size: 10px;
      font-weight: 850;
      letter-spacing: .17em;
      text-transform: uppercase;
    }
    .section-kicker::before { width: 24px; height: 1px; content: ""; background: currentColor; }
    .section-heading { max-width: 790px; }
    .section-heading.center { margin-inline: auto; text-align: center; }
    .section-heading.center .section-kicker { justify-content: center; }
    .section-heading h2 {
      margin-bottom: 20px;
      font-size: clamp(38px, 4.4vw, 64px);
      line-height: 1.04;
      letter-spacing: -.055em;
      font-weight: 860;
    }
    .section-heading p { max-width: 670px; margin-bottom: 0; color: #716d79; font-size: 17px; line-height: 1.75; }
    .section-heading.center p { margin-inline: auto; }

    .manifesto {
      overflow: hidden;
      padding: 122px 0 102px;
    }
    .manifesto::after {
      position: absolute;
      top: -100px;
      right: -120px;
      width: 470px;
      height: 470px;
      content: "";
      border: 1px solid rgba(12,84,253,.12);
      border-radius: 50%;
      box-shadow: 0 0 0 55px rgba(12,84,253,.03), 0 0 0 110px rgba(73,6,252,.02);
    }
    .manifesto-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; }
    .manifesto h2 { max-width: 780px; margin: 0; font-size: clamp(44px, 5.4vw, 75px); line-height: 1.03; letter-spacing: -.065em; }
    .manifesto h2 span { color: #2b17fa; }
    .manifesto-copy p { margin-bottom: 24px; color: #5d6483; font-size: 17px; line-height: 1.8; }
    .identity-lockup { display: inline-flex; align-items: center; margin-bottom: 22px; padding: 8px 14px 8px 8px; gap: 11px; border: 1px solid rgba(12,84,253,.14); border-radius: 15px; background: rgba(255,255,255,.72); box-shadow: 0 12px 35px rgba(4,4,47,.07); }
    .identity-lockup > span:last-child { display: grid; line-height: 1; }
    .identity-lockup b { color: #04042f; font-size: 12px; letter-spacing: .04em; }
    .identity-lockup small { margin-top: 5px; color: #5961fc; font-size: 7px; font-weight: 800; letter-spacing: .24em; }
    .identity-mark { position: relative; width: 44px; height: 44px; overflow: hidden; border: 1px solid rgba(59,161,253,.25); border-radius: 13px; background: #fff; box-shadow: 0 7px 18px rgba(43,23,250,.16); }
    .identity-mark img { position: absolute; top: -11px; left: -22px; width: 89px; max-width: none; }
    .identity-mark::after { position: absolute; right: 0; bottom: 0; left: 0; height: 6px; content: ""; background: #fff; }
    .micro-link { display: inline-flex; align-items: center; gap: 8px; color: #191322; font-size: 13px; font-weight: 850; }
    .micro-link i { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg,#3ba1fd,#0c54fd 52%,#4906fc); font-style: normal; transition: transform .2s ease; }
    .micro-link:hover i { transform: translateX(4px); }

    .capabilities { padding-top: 55px; }
    .cap-grid { display: grid; grid-template-columns: repeat(12, 1fr); margin-top: 62px; gap: 17px; }
    .cap-card {
      position: relative;
      min-height: 330px;
      overflow: hidden;
      padding: 29px;
      border: 1px solid var(--dark-line);
      border-radius: 24px;
      background: rgba(255,255,255,.68);
      box-shadow: 0 16px 45px rgba(4,4,47,.045);
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }
    .cap-card:hover { transform: translateY(-5px); border-color: rgba(12,84,253,.28); box-shadow: 0 24px 60px rgba(43,23,250,.1); }
    .cap-card.large { grid-column: span 7; }
    .cap-card.small { grid-column: span 5; }
    .cap-number { color: #9d97a5; font-size: 10px; font-weight: 820; letter-spacing: .12em; }
    .cap-card h3 { max-width: 420px; margin: 18px 0 13px; font-size: 27px; line-height: 1.12; letter-spacing: -.035em; }
    .cap-card > p { max-width: 430px; color: #716d77; font-size: 14px; line-height: 1.7; }
    .cap-visual { position: absolute; right: 24px; bottom: 22px; width: 48%; min-width: 220px; }
    .memory-stack { display: grid; gap: 7px; transform: rotate(-2deg); }
    .memory-line { display: flex; align-items: center; min-height: 41px; padding: 8px 10px; gap: 9px; border: 1px solid rgba(16,11,30,.09); border-radius: 11px; background: rgba(255,255,255,.87); box-shadow: 0 8px 24px rgba(26,13,62,.06); font-size: 8px; }
    .memory-line:nth-child(2) { transform: translateX(-20px); }
    .memory-line:nth-child(3) { transform: translateX(-7px); }
    .memory-icon { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 8px; color: #fff; background: linear-gradient(135deg,#3ba1fd,#0c54fd 55%,#4906fc); font-size: 8px; font-weight: 900; }
    .memory-line span { display: grid; gap: 2px; }
    .memory-line b { font-size: 7px; }
    .memory-line small { color: #8b8592; font-size: 6px; }
    .audio-orbit { display: grid; width: 178px; height: 178px; margin-left: auto; place-items: center; border: 1px solid rgba(12,84,253,.17); border-radius: 50%; box-shadow: inset 0 0 55px rgba(59,161,253,.08), 0 0 0 26px rgba(73,6,252,.03); }
    .audio-core { display: grid; width: 80px; height: 80px; place-items: center; border-radius: 26px; color: #fff; background: linear-gradient(145deg,#67c5fd,#0c54fd 54%,#4906fc); box-shadow: 0 20px 42px rgba(12,84,253,.28); }
    .audio-wave { display: flex; align-items: center; height: 30px; gap: 4px; }
    .audio-wave i { width: 3px; border-radius: 99px; background: #fff; animation: equalize 1.25s ease-in-out infinite alternate; }
    .audio-wave i:nth-child(1), .audio-wave i:nth-child(5) { height: 10px; }
    .audio-wave i:nth-child(2), .audio-wave i:nth-child(4) { height: 20px; animation-delay: -.3s; }
    .audio-wave i:nth-child(3) { height: 29px; animation-delay: -.55s; }
    @keyframes equalize { to { transform: scaleY(.45); opacity: .65; } }
    .crm-board { display: grid; grid-template-columns: repeat(3,1fr); width: 300px; padding: 13px; gap: 8px; border: 1px solid rgba(15,10,28,.08); border-radius: 16px; background: #fff; box-shadow: 0 18px 45px rgba(25,13,59,.1); transform: rotate(1.5deg); }
    .crm-col { min-height: 125px; padding: 7px; border-radius: 9px; background: #f4f2f7; }
    .crm-col > b { display: block; margin-bottom: 8px; color: #8c8794; font-size: 6px; text-transform: uppercase; }
    .crm-lead { margin-bottom: 6px; padding: 7px; border: 1px solid #ebe7f0; border-radius: 7px; background: #fff; font-size: 5.5px; box-shadow: 0 3px 8px rgba(20,10,45,.04); }
    .crm-lead i { display: block; width: 65%; height: 3px; margin-top: 5px; border-radius: 99px; background: #d8d2df; }
    .pay-card { width: 228px; margin-left: auto; padding: 17px; border: 1px solid rgba(15,10,28,.08); border-radius: 18px; background: #fff; box-shadow: 0 20px 50px rgba(25,13,59,.1); }
    .pay-top { display: flex; align-items: center; gap: 9px; color: #292331; font-size: 8px; font-weight: 800; }
    .pay-check { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 9px; color: #176440; background: #d5f8e8; }
    .pay-value { margin: 18px 0 6px; font-size: 23px; font-weight: 870; letter-spacing: -.05em; }
    .pay-meta { color: #89838e; font-size: 6px; }
    .pay-status { margin-top: 13px; padding-top: 10px; border-top: 1px solid #eeeaf1; color: #3c9e71; font-size: 7px; font-weight: 800; }

    .tour-section {
      overflow: hidden;
      background:
        radial-gradient(circle at 10% 70%, rgba(94,231,247,.07), transparent 25%),
        radial-gradient(circle at 82% 25%, rgba(73,6,252,.21), transparent 27%),
        #04042f;
    }
    .tour-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
    .tour-section .section-heading p { color: #928e9e; }
    .tour-section .section-kicker { color: #67c5fd; }
    .tour-tabs { display: flex; padding: 5px; gap: 4px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.035); }
    .tour-tab { min-height: 39px; padding: 0 15px; border: 0; border-radius: 10px; color: #817c8d; background: transparent; cursor: pointer; font-size: 10px; font-weight: 800; transition: color .2s, background .2s; }
    .tour-tab[aria-selected="true"] { color: #fff; background: linear-gradient(135deg,rgba(12,84,253,.3),rgba(73,6,252,.22)); box-shadow: inset 0 0 0 1px rgba(103,197,253,.18); }
    .tour-stage { position: relative; min-height: 600px; margin-top: 58px; }
    .tour-panel { position: absolute; inset: 0; display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 60px; opacity: 0; pointer-events: none; transform: translateY(15px); transition: opacity .45s ease, transform .45s ease; }
    .tour-panel.active { position: relative; opacity: 1; pointer-events: auto; transform: translateY(0); }
    .tour-copy .step-tag { display: inline-flex; align-items: center; margin-bottom: 22px; gap: 8px; color: #a990f2; font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
    .tour-copy .step-tag i { display: grid; width: 25px; height: 25px; place-items: center; border: 1px solid rgba(103,197,253,.22); border-radius: 8px; background: rgba(12,84,253,.1); font-style: normal; }
    .tour-copy h3 { margin-bottom: 17px; font-size: clamp(34px,4vw,52px); line-height: 1.05; letter-spacing: -.05em; }
    .tour-copy > p { color: #9792a2; font-size: 15px; line-height: 1.75; }
    .tour-list { display: grid; margin-top: 27px; gap: 12px; }
    .tour-list span { display: flex; align-items: center; gap: 10px; color: #cbc6d3; font-size: 12px; font-weight: 650; }
    .tour-list i { display: grid; width: 21px; height: 21px; place-items: center; border-radius: 7px; color: #8ff1c5; background: rgba(100,237,181,.08); font-style: normal; font-size: 9px; }
    .tour-ui { position: relative; min-width: 0; }
    .tour-browser { overflow: hidden; border: 1px solid rgba(103,197,253,.14); border-radius: 23px; background: #070832; box-shadow: 0 35px 90px rgba(0,0,26,.42); }
    .tour-browser-top { display: flex; align-items: center; height: 43px; padding: 0 14px; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.07); background: #0b0d3f; }
    .tour-browser-top i { width: 7px; height: 7px; border-radius: 50%; background: #3c3944; }
    .url-bar { width: 42%; height: 19px; margin-left: 8px; border-radius: 7px; background: #211e2a; }
    .tour-screen { min-height: 450px; padding: 22px; }
    .screen-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
    .screen-head h4 { margin: 0; font-size: 13px; }
    .screen-head span { padding: 5px 8px; border: 1px solid rgba(100,237,181,.12); border-radius: 8px; color: #80dcb3; background: rgba(100,237,181,.05); font-size: 7px; font-weight: 800; }
    .support-layout { display: grid; grid-template-columns: 1fr .72fr; gap: 12px; }
    .support-chat, .support-brain { min-height: 348px; padding: 15px; border: 1px solid rgba(255,255,255,.065); border-radius: 15px; background: #17151f; }
    .support-chat { display: flex; flex-direction: column; gap: 10px; }
    .tour-message { max-width: 86%; padding: 10px; border-radius: 11px; color: #a9a4b1; background: #211f2a; font-size: 7px; line-height: 1.55; }
    .tour-message.right { align-self: flex-end; color: #eef4ff; background: linear-gradient(135deg,rgba(12,84,253,.34),rgba(73,6,252,.24)); }
    .intent-card { padding: 11px; border: 1px solid rgba(59,161,253,.15); border-radius: 12px; background: rgba(12,84,253,.065); }
    .intent-card + .intent-card { margin-top: 9px; }
    .intent-card small { display: block; color: #726d7c; font-size: 6px; text-transform: uppercase; letter-spacing: .1em; }
    .intent-card b { display: block; margin-top: 5px; color: #d5cced; font-size: 8px; }
    .intent-meter { height: 3px; margin-top: 9px; overflow: hidden; border-radius: 99px; background: #292631; }
    .intent-meter i { display: block; width: 92%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#7344ed,#68e4ef); }
    .store-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 14px; }
    .store-products { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
    .store-item { overflow: hidden; border: 1px solid rgba(255,255,255,.065); border-radius: 14px; background: #17151f; }
    .store-photo { position: relative; height: 103px; background: linear-gradient(145deg,#3e2b6e,#936fe8 54%,#cec0ff); }
    .store-photo.alt { background: linear-gradient(145deg,#263b50,#5793a7 54%,#b9edf1); }
    .store-photo::before { position: absolute; inset: 26px 35px 0; content: ""; border-radius: 12px 12px 0 0; background: rgba(255,255,255,.88); box-shadow: 0 -7px 25px rgba(255,255,255,.15); }
    .store-info { padding: 11px; }
    .store-info b { display: block; font-size: 8px; }
    .store-info span { display: block; margin-top: 5px; color: #82e6b8; font-size: 8px; font-weight: 850; }
    .checkout-card { padding: 16px; border: 1px solid rgba(255,255,255,.075); border-radius: 15px; background: #17151f; }
    .checkout-card h5 { margin: 0 0 15px; font-size: 10px; }
    .checkout-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.055); color: #817c8b; font-size: 7px; }
    .checkout-row strong { color: #cbc6d2; }
    .checkout-total { display: flex; justify-content: space-between; margin: 17px 0; font-size: 10px; font-weight: 850; }
    .checkout-button { display: grid; min-height: 36px; place-items: center; border-radius: 10px; color: #fff; background: linear-gradient(135deg,#8f68f8,#6233dd); font-size: 8px; font-weight: 820; }
    .crm-layout { display: grid; grid-template-columns: 1fr 170px; gap: 12px; }
    .kanban { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
    .kanban-col { min-height: 330px; padding: 10px; border: 1px solid rgba(255,255,255,.055); border-radius: 12px; background: #15131d; }
    .kanban-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; color: #777280; font-size: 6px; font-weight: 850; text-transform: uppercase; }
    .kanban-title i { width: 6px; height: 6px; border-radius: 50%; background: #7a4bee; }
    .kanban-card { margin-bottom: 8px; padding: 10px; border: 1px solid rgba(255,255,255,.06); border-radius: 10px; background: #201d29; }
    .kanban-card b { display: block; font-size: 7px; }
    .kanban-card small { display: block; margin-top: 4px; color: #716b7a; font-size: 6px; }
    .kanban-tags { display: flex; margin-top: 9px; gap: 4px; }
    .kanban-tags span { padding: 3px 5px; border-radius: 5px; color: #c9d8ff; background: rgba(12,84,253,.12); font-size: 5px; }
    .insight-panel { padding: 13px; border: 1px solid rgba(255,255,255,.06); border-radius: 12px; background: #15131d; }
    .insight-panel h5 { margin: 0 0 15px; font-size: 9px; }
    .insight-number { margin-bottom: 3px; font-size: 28px; font-weight: 870; letter-spacing: -.06em; }
    .insight-panel > small { color: #75dcae; font-size: 6px; }
    .bar-chart { display: flex; align-items: flex-end; height: 90px; margin-top: 20px; gap: 5px; }
    .bar-chart i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(#8d61f3,#4b287e); }
    .bar-chart i:nth-child(1) { height: 34%; }
    .bar-chart i:nth-child(2) { height: 52%; }
    .bar-chart i:nth-child(3) { height: 43%; }
    .bar-chart i:nth-child(4) { height: 71%; }
    .bar-chart i:nth-child(5) { height: 86%; }
    .bar-chart i:nth-child(6) { height: 78%; }
    .insight-line { display: flex; justify-content: space-between; margin-top: 18px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.055); color: #77717f; font-size: 6px; }
    .insight-line b { color: #c5bfcc; }

    .flow-section { overflow: hidden; }
    .flow-section::before { position: absolute; inset: auto auto -300px -260px; width: 650px; height: 650px; content: ""; border-radius: 50%; background: radial-gradient(circle,rgba(12,84,253,.11),transparent 68%); }
    .flow-grid { display: grid; grid-template-columns: .76fr 1.24fr; align-items: start; gap: 80px; }
    .flow-sticky { position: sticky; top: 125px; }
    .flow-sticky .section-heading p { max-width: 500px; }
    .flow-steps { position: relative; display: grid; gap: 16px; }
    .flow-steps::before { position: absolute; top: 40px; bottom: 40px; left: 34px; width: 1px; content: ""; background: linear-gradient(#0c54fd,rgba(12,84,253,.06)); }
    .flow-step { position: relative; display: grid; grid-template-columns: 68px 1fr; min-height: 170px; padding: 25px; gap: 23px; border: 1px solid var(--dark-line); border-radius: 22px; background: rgba(255,255,255,.7); transition: transform .25s, border-color .25s, box-shadow .25s; }
    .flow-step:hover { transform: translateX(5px); border-color: rgba(12,84,253,.24); box-shadow: 0 20px 50px rgba(4,4,47,.08); }
    .flow-index { position: relative; z-index: 2; display: grid; width: 68px; height: 68px; place-items: center; border: 1px solid rgba(12,84,253,.18); border-radius: 20px; color: #0c54fd; background: #eaf2ff; font-size: 11px; font-weight: 900; }
    .flow-step h3 { margin: 4px 0 11px; font-size: 22px; letter-spacing: -.03em; }
    .flow-step p { margin: 0; color: #77717c; font-size: 14px; line-height: 1.7; }
    .flow-tags { display: flex; flex-wrap: wrap; margin-top: 15px; gap: 6px; }
    .flow-tags span { padding: 5px 8px; border: 1px solid rgba(15,10,28,.08); border-radius: 8px; color: #6f6975; background: #fff; font-size: 8px; font-weight: 750; }

    .integration-section { padding: 94px 0 170px; border-top: 1px solid rgba(15,10,28,.07); }
    .integration-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 38px; gap: 40px; }
    .integration-head h3 { margin: 0; font-size: 28px; letter-spacing: -.04em; }
    .integration-head p { max-width: 460px; margin: 0; color: #77717d; font-size: 13px; }
    .logo-cloud { display: grid; grid-template-columns: repeat(7,1fr); border: 1px solid var(--dark-line); border-radius: 20px; background: rgba(255,255,255,.45); }
    .logo-chip { display: grid; min-height: 112px; place-items: center; border-right: 1px solid var(--dark-line); color: #433d48; font-size: 11px; font-weight: 850; text-align: center; }
    .logo-chip:last-child { border-right: 0; }
    .logo-chip span { display: grid; place-items: center; gap: 8px; }
    .logo-badge { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; color: #fff; background: #25202e; font-size: 8px; letter-spacing: .02em; }
    .logo-chip:nth-child(1) .logo-badge { background: #20b96b; }
    .logo-chip:nth-child(2) .logo-badge { background: linear-gradient(135deg,#7041e8,#9b77ff); }
    .logo-chip:nth-child(3) .logo-badge { background: linear-gradient(135deg,#166b83,#37bfd4); }
    .logo-chip:nth-child(4) .logo-badge { background: #15101c; }
    .logo-chip:nth-child(5) .logo-badge { background: #00a3df; }
    .logo-chip:nth-child(6) .logo-badge { background: #1168e8; }
    .logo-chip:nth-child(7) .logo-badge { background: #7041e8; }
    .integration-summary { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 22px; gap: 9px; }
    .integration-summary article { display: flex; align-items: center; min-height: 78px; padding: 15px; gap: 12px; border: 1px solid var(--dark-line); border-radius: 15px; background: rgba(255,255,255,.48); }
    .integration-summary > article > span { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; border-radius: 10px; color: #0c54fd; background: #eaf2ff; font-size: 8px; font-weight: 900; }
    .integration-summary b { display: block; margin-bottom: 3px; color: #332c39; font-size: 10px; }
    .integration-summary small { display: block; color: #817a85; font-size: 8px; line-height: 1.45; }

    .segments-section { color: #fff; background: #04042f; }
    .segments-grid { display: grid; grid-template-columns: repeat(5,1fr); margin-top: 58px; border: 1px solid rgba(255,255,255,.09); border-radius: 24px; overflow: hidden; }
    .segment-card { position: relative; min-height: 370px; padding: 28px 22px; border-right: 1px solid rgba(255,255,255,.08); overflow: hidden; background: rgba(255,255,255,.018); transition: background .3s, flex .3s; }
    .segment-card:last-child { border-right: 0; }
    .segment-card:hover { background: rgba(12,84,253,.1); }
    .segment-icon { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; color: #cbbaff; background: rgba(255,255,255,.035); font-size: 11px; font-weight: 900; }
    .segment-card h3 { margin: 165px 0 11px; font-size: 18px; letter-spacing: -.03em; }
    .segment-card p { margin: 0; color: #817d8a; font-size: 11px; line-height: 1.65; }
    .segment-orb { position: absolute; top: 80px; right: -35px; width: 135px; height: 135px; border: 1px solid rgba(59,161,253,.18); border-radius: 50%; box-shadow: inset 0 0 40px rgba(12,84,253,.08), 0 0 0 18px rgba(73,6,252,.03); }
    .segment-orb::after { position: absolute; top: 24px; left: 22px; width: 23px; height: 23px; content: ""; border-radius: 8px; background: linear-gradient(135deg,#67c5fd,#0c54fd 55%,#4906fc); box-shadow: 0 10px 25px rgba(12,84,253,.35); transform: rotate(18deg); }

    .security-section {
      overflow: hidden;
      color: #fff;
      background: linear-gradient(135deg,#3ba1fd 0%,#0c54fd 34%,#2b17fa 65%,#4906fc 100%);
    }
    .security-section::after { position: absolute; right: -250px; bottom: -330px; width: 760px; height: 760px; content: ""; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }
    .security-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
    .security-section .section-kicker { color: #dfd4ff; }
    .security-copy h2 { margin-bottom: 20px; font-size: clamp(42px,4.8vw,68px); line-height: 1.02; letter-spacing: -.06em; }
    .security-copy p { color: rgba(255,255,255,.71); font-size: 16px; line-height: 1.75; }
    .security-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 13px; }
    .security-card { min-height: 210px; padding: 24px; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; background: rgba(18,5,55,.15); backdrop-filter: blur(10px); }
    .security-card .sec-icon { display: grid; width: 39px; height: 39px; margin-bottom: 37px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.08); font-size: 10px; font-weight: 900; }
    .security-card h3 { margin-bottom: 8px; font-size: 16px; }
    .security-card p { margin: 0; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.65; }

    .pricing-section { color: #04042f; background: #f2f6fe; }
    .pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 56px; gap: 13px; }
    .plan-card { position: relative; display: flex; min-height: 520px; padding: 27px; flex-direction: column; border: 1px solid var(--dark-line); border-radius: 22px; background: rgba(255,255,255,.58); transition: transform .3s, box-shadow .3s; }
    .plan-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(27,15,60,.08); }
    .plan-card.featured { color: #fff; border-color: #3ba1fd; background: linear-gradient(160deg,#080a3a,#0c124f 58%,#160769); box-shadow: 0 24px 60px rgba(12,84,253,.2); }
    .popular { position: absolute; top: 16px; right: 16px; padding: 5px 8px; border-radius: 7px; color: #dce9ff; background: rgba(59,161,253,.16); font-size: 7px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
    .plan-name { color: #706a76; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
    .featured .plan-name { color: #a99ab8; }
    .plan-card h3 { margin: 15px 0 4px; font-size: 22px; letter-spacing: -.04em; }
    .plan-price { display: flex; align-items: flex-end; min-height: 74px; margin: 19px 0 21px; }
    .plan-price strong { font-size: 39px; line-height: 1; letter-spacing: -.06em; }
    .plan-price sup { align-self: flex-start; margin: 7px 4px 0 0; font-size: 11px; font-weight: 800; }
    .plan-price span { margin: 0 0 3px 5px; color: #85808a; font-size: 9px; }
    .plan-desc { min-height: 61px; margin-bottom: 20px; color: #7c7681; font-size: 10px; line-height: 1.6; }
    .featured .plan-desc { color: #8f8997; }
    .plan-list { display: grid; margin: 0 0 27px; padding: 20px 0 0; gap: 11px; border-top: 1px solid rgba(15,10,28,.08); list-style: none; }
    .featured .plan-list { border-color: rgba(255,255,255,.08); }
    .plan-list li { display: flex; align-items: flex-start; gap: 8px; color: #67616d; font-size: 9px; line-height: 1.4; }
    .featured .plan-list li { color: #c0bbc7; }
    .plan-list li::before { display: grid; width: 16px; height: 16px; flex: 0 0 auto; content: "✓"; place-items: center; border-radius: 6px; color: #5d34ca; background: #eee8ff; font-size: 7px; font-weight: 900; }
    .featured .plan-list li::before { color: #67c5fd; background: rgba(59,161,253,.14); }
    .plan-card .btn { width: 100%; margin-top: auto; }
    .pricing-note { margin: 25px auto 0; color: #8d8792; font-size: 9px; text-align: center; }

    .faq-section { color: #04042f; background: #fbfcff; }
    .faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
    .faq-grid .section-heading { position: sticky; top: 125px; align-self: start; }
    .faq-list { border-top: 1px solid var(--dark-line); }
    .faq-item { border-bottom: 1px solid var(--dark-line); }
    .faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 86px; padding: 18px 0; gap: 20px; border: 0; color: #04042f; background: transparent; cursor: pointer; text-align: left; font-size: 15px; font-weight: 790; }
    .faq-plus { position: relative; width: 28px; height: 28px; flex: 0 0 auto; border: 1px solid rgba(15,10,28,.12); border-radius: 9px; transition: transform .25s, background .25s; }
    .faq-plus::before, .faq-plus::after { position: absolute; top: 13px; left: 8px; width: 10px; height: 1px; content: ""; background: #5f5865; }
    .faq-plus::after { transform: rotate(90deg); transition: transform .25s; }
    .faq-item.open .faq-plus { background: #eaf2ff; transform: rotate(45deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
    .faq-answer p { max-width: 700px; margin: 0; padding: 0 48px 26px 0; color: #746e79; font-size: 13px; line-height: 1.75; }

    .final-cta { position: relative; overflow: hidden; padding: 116px 0; text-align: center; background: #030329; }
    .final-cta::before { position: absolute; inset: 0; content: ""; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(circle at center,#000,transparent 70%); }
    .final-cta::after { position: absolute; top: -210px; left: 50%; width: 700px; height: 500px; content: ""; transform: translateX(-50%); border-radius: 50%; filter: blur(28px); background: radial-gradient(circle,rgba(12,84,253,.42),rgba(73,6,252,.17) 46%,transparent 72%); }
    .cta-inner { position: relative; z-index: 2; }
    .cta-icon { position: relative; display: grid; width: 62px; height: 62px; margin: 0 auto 25px; place-items: center; overflow: hidden; border: 1px solid rgba(103,197,253,.35); border-radius: 19px; background: #fff; box-shadow: 0 18px 44px rgba(12,84,253,.36), 0 0 0 4px rgba(59,161,253,.07); }
    .cta-icon img { position: absolute; top: -14px; left: -30px; width: 121px; max-width: none; }
    .cta-icon::after { position: absolute; right: 0; bottom: 0; left: 0; height: 11px; content: ""; background: #fff; }
    .final-cta h2 { max-width: 870px; margin: 0 auto 22px; font-size: clamp(44px,5.4vw,76px); line-height: 1; letter-spacing: -.065em; }
    .final-cta p { max-width: 610px; margin: 0 auto 31px; color: #9792a2; font-size: 16px; line-height: 1.7; }
    .final-cta .hero-actions { justify-content: center; }

    .site-footer { padding: 66px 0 26px; color: #dce5ff; background: #02021f; border-top: 1px solid rgba(103,197,253,.11); }
    .footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3,1fr); gap: 65px; }
    .footer-brand p { max-width: 340px; margin: 20px 0 25px; color: #706c79; font-size: 11px; line-height: 1.7; }
    .footer-status { display: inline-flex; align-items: center; gap: 8px; color: #827d8b; font-size: 9px; }
    .footer-status i { width: 7px; height: 7px; border-radius: 50%; background: #64edb5; box-shadow: 0 0 10px rgba(100,237,181,.6); }
    .footer-col h3 { margin: 5px 0 19px; color: #aaa6b4; font-size: 9px; font-weight: 830; letter-spacing: .13em; text-transform: uppercase; }
    .footer-col nav { display: grid; gap: 12px; }
    .footer-col a { color: #706c79; font-size: 10px; transition: color .2s; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.065); color: #55515e; font-size: 8px; }

    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    .toast {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 300;
      max-width: 330px;
      padding: 14px 16px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 13px;
      color: #e9e5ef;
      background: rgba(16,13,25,.94);
      box-shadow: 0 20px 50px rgba(0,0,0,.35);
      opacity: 0;
      transform: translateY(15px);
      pointer-events: none;
      transition: opacity .25s, transform .25s;
      font-size: 11px;
    }
    .toast.show { opacity: 1; transform: translateY(0); }

    /* ===== Robô-guia nas seções claras ===== */
    .robot-guide {
      --eye-x: 0px;
      --eye-y: 0px;
      --head-x: 0deg;
      --head-y: 0deg;
      position: fixed;
      right: 17px;
      bottom: 15px;
      z-index: 220;
      width: 170px;
      height: 238px;
      pointer-events: none;
      opacity: 0;
      visibility: hidden;
      transform: translate3d(0,24px,0) scale(.91);
      transform-origin: right bottom;
      transition: opacity .36s ease, transform .45s cubic-bezier(.2,.8,.2,1), visibility .36s;
    }
    .robot-guide.visible {
      opacity: 1;
      visibility: visible;
      transform: translate3d(0,0,0) scale(1);
    }
    .robot-bubble {
      position: absolute;
      right: 138px;
      bottom: 116px;
      width: 276px;
      padding: 16px 17px 14px;
      pointer-events: auto;
      opacity: 0;
      transform: translate3d(16px,9px,0) scale(.96);
      transform-origin: right bottom;
      border: 1px solid rgba(59,37,113,.13);
      border-radius: 19px 19px 5px 19px;
      color: #171120;
      background: rgba(255,255,255,.93);
      box-shadow: 0 24px 65px rgba(25,13,58,.17), inset 0 1px 0 #fff;
      backdrop-filter: blur(18px) saturate(150%);
      -webkit-backdrop-filter: blur(18px) saturate(150%);
      transition: opacity .25s ease, transform .3s cubic-bezier(.2,.8,.2,1);
    }
    .robot-bubble::after {
      position: absolute;
      right: -10px;
      bottom: 18px;
      width: 20px;
      height: 20px;
      content: "";
      transform: rotate(45deg);
      border-top: 1px solid rgba(59,37,113,.08);
      border-right: 1px solid rgba(59,37,113,.08);
      border-radius: 0 5px 0 0;
      background: rgba(255,255,255,.93);
    }
    .robot-guide.speaking .robot-bubble,
    .robot-guide.user-focus .robot-bubble,
    .robot-guide:focus-within .robot-bubble {
      opacity: 1;
      transform: translate3d(0,0,0) scale(1);
    }
    .robot-bubble-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
      color: #0c54fd;
      font-size: 8px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .robot-bubble-meta span { display: inline-flex; align-items: center; gap: 7px; }
    .robot-bubble-meta span i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #65dca7;
      box-shadow: 0 0 0 4px rgba(101,220,167,.1), 0 0 12px rgba(101,220,167,.48);
    }
    .robot-bubble-meta small {
      padding: 4px 6px;
      border-radius: 6px;
      color: #6b6572;
      background: #f2eef9;
      font-size: 6px;
      letter-spacing: .1em;
    }
    .robot-bubble p {
      margin: 0;
      color: #3f3947;
      font-size: 12px;
      font-weight: 680;
      line-height: 1.55;
    }
    .robot-bubble-hint {
      display: block;
      margin-top: 9px;
      color: #9a93a1;
      font-size: 7px;
      font-weight: 730;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .robot-character {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 154px;
      height: 232px;
      padding: 0;
      pointer-events: auto;
      border: 0;
      border-radius: 74px 74px 35px 35px;
      color: inherit;
      background: transparent;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .robot-character::before {
      position: absolute;
      inset: 27px 13px 17px;
      content: "";
      opacity: 0;
      border-radius: 50%;
      background: radial-gradient(circle,rgba(119,76,235,.2),rgba(94,231,247,.08) 40%,transparent 70%);
      filter: blur(8px);
      transition: opacity .3s ease;
    }
    .robot-character:hover::before,
    .robot-character:focus-visible::before { opacity: 1; }
    .robot-character:focus-visible { outline: 3px solid #6e3ef2; outline-offset: 3px; }
    .robot-floor {
      position: absolute;
      right: 12px;
      bottom: 3px;
      width: 129px;
      height: 25px;
      border-radius: 50%;
      background: radial-gradient(ellipse,rgba(67,43,124,.24),rgba(67,43,124,.05) 46%,transparent 72%);
      filter: blur(2px);
      animation: robot-shadow 3.4s ease-in-out infinite;
    }
    .robot-unit {
      position: absolute;
      right: 6px;
      bottom: 12px;
      width: 142px;
      height: 211px;
      transform-style: preserve-3d;
      animation: robot-float 3.4s ease-in-out infinite;
    }
    .robot-antenna {
      position: absolute;
      top: 0;
      left: 69px;
      z-index: 1;
      width: 3px;
      height: 31px;
      border-radius: 99px;
      background: linear-gradient(#3ba1fd,#5961fc);
      transform: rotate(-7deg);
      transform-origin: bottom;
    }
    .robot-antenna::after {
      position: absolute;
      bottom: -3px;
      left: -5px;
      width: 13px;
      height: 8px;
      content: "";
      border-radius: 8px 8px 2px 2px;
      background: #dfe8ff;
      box-shadow: inset 0 1px 0 #fff;
    }
    .robot-antenna i {
      position: absolute;
      top: -4px;
      left: -4px;
      width: 11px;
      height: 11px;
      border: 2px solid #fff;
      border-radius: 50%;
      background: #67c5fd;
      box-shadow: 0 0 0 4px rgba(59,161,253,.1), 0 0 17px rgba(59,161,253,.9);
      animation: robot-signal 1.8s ease-in-out infinite;
    }
    .robot-head {
      position: absolute;
      top: 28px;
      left: 17px;
      z-index: 5;
      width: 108px;
      height: 79px;
      transform: perspective(450px) rotateY(var(--head-x)) rotateX(var(--head-y));
      transform-origin: center 82%;
      border: 1px solid rgba(81,65,112,.2);
      border-radius: 35px 35px 28px 28px;
      background: linear-gradient(145deg,#ffffff 0%,#f4f1f9 47%,#c9c2d5 100%);
      box-shadow: 0 11px 24px rgba(41,23,77,.2), inset 0 2px 2px #fff, inset 0 -7px 12px rgba(81,65,112,.09);
      transition: transform .16s ease-out, filter .25s ease;
    }
    .robot-head::before {
      position: absolute;
      top: 5px;
      left: 17px;
      width: 55px;
      height: 7px;
      content: "";
      transform: rotate(-7deg);
      border-radius: 99px;
      background: linear-gradient(90deg,rgba(255,255,255,.92),rgba(255,255,255,0));
    }
    .robot-guide.user-focus .robot-head {
      transform: perspective(450px) rotateY(0deg) rotateX(0deg) scale(1.045);
      filter: brightness(1.04);
    }
    .robot-ear {
      position: absolute;
      top: 26px;
      z-index: -1;
      width: 13px;
      height: 29px;
      border: 1px solid rgba(81,65,112,.18);
      background: linear-gradient(#e9e5f0,#bfb7cf);
      box-shadow: inset 0 1px #fff;
    }
    .robot-ear::after { position: absolute; top: 8px; width: 5px; height: 11px; content: ""; border-radius: 4px; background: #0c54fd; box-shadow: 0 0 9px rgba(12,84,253,.5); }
    .robot-ear-left { left: -9px; border-radius: 8px 3px 3px 8px; }
    .robot-ear-left::after { left: 3px; }
    .robot-ear-right { right: -9px; border-radius: 3px 8px 8px 3px; }
    .robot-ear-right::after { right: 3px; }
    .robot-face {
      position: absolute;
      inset: 11px 10px 10px;
      overflow: hidden;
      border: 1px solid rgba(181,168,223,.24);
      border-radius: 25px 25px 20px 20px;
      background:
        radial-gradient(circle at 50% 100%,rgba(73,6,252,.32),transparent 58%),
        linear-gradient(160deg,#04042f,#0a1051 62%,#02021f);
      box-shadow: inset 0 0 14px rgba(94,231,247,.06), inset 0 1px 0 rgba(255,255,255,.11);
    }
    .robot-face::after {
      position: absolute;
      top: -15px;
      left: -9px;
      width: 48px;
      height: 85px;
      content: "";
      transform: rotate(24deg);
      background: linear-gradient(90deg,transparent,rgba(255,255,255,.095),transparent);
    }
    .robot-eyes { position: absolute; top: 17px; left: 14px; display: flex; gap: 12px; }
    .robot-eye {
      position: relative;
      display: grid;
      width: 27px;
      height: 18px;
      place-items: center;
      overflow: hidden;
      border: 1px solid rgba(103,197,253,.58);
      border-radius: 12px 12px 10px 10px;
      background: radial-gradient(circle,#f2f6fe 0 18%,#67c5fd 32%,#0c54fd 74%);
      box-shadow: 0 0 12px rgba(59,161,253,.46), inset 0 0 7px rgba(255,255,255,.45);
      animation: robot-blink 6.2s infinite;
    }
    .robot-pupil {
      width: 7px;
      height: 9px;
      border: 1px solid rgba(255,255,255,.7);
      border-radius: 50%;
      background: #090914;
      box-shadow: 0 0 5px rgba(255,255,255,.4);
      transform: translate(var(--eye-x),var(--eye-y));
      transition: transform .1s ease-out;
    }
    .robot-guide.user-focus .robot-pupil { transform: translate(0,0); }
    .robot-mouth {
      position: absolute;
      bottom: 10px;
      left: 50%;
      width: 31px;
      height: 6px;
      overflow: hidden;
      transform: translateX(-50%);
      border: 1px solid rgba(158,129,245,.45);
      border-radius: 4px 4px 9px 9px;
      background: rgba(73,6,252,.2);
      box-shadow: 0 0 9px rgba(12,84,253,.22);
    }
    .robot-mouth i { display: block; width: 58%; height: 1px; margin: 2px auto 0; border-radius: 99px; background: #b3f8ff; box-shadow: 0 0 6px #5ee7f7; }
    .robot-guide.speaking .robot-mouth { animation: robot-talk .48s ease-in-out infinite alternate; }
    .robot-neck {
      position: absolute;
      top: 101px;
      left: 57px;
      z-index: 2;
      width: 29px;
      height: 23px;
      border-radius: 5px 5px 10px 10px;
      background: repeating-linear-gradient(180deg,#ded8e7 0 4px,#a79db8 5px 7px);
      box-shadow: inset 6px 0 8px rgba(255,255,255,.55);
    }
    .robot-body {
      position: absolute;
      top: 113px;
      left: 25px;
      z-index: 3;
      width: 92px;
      height: 83px;
      overflow: hidden;
      border: 1px solid rgba(81,65,112,.2);
      border-radius: 25px 25px 35px 35px;
      background: linear-gradient(145deg,#fff 0%,#eae5f0 49%,#aaa0ba 100%);
      box-shadow: 0 14px 27px rgba(41,23,77,.18), inset 0 2px 2px #fff, inset 0 -12px 17px rgba(69,53,95,.13);
    }
    .robot-body::before {
      position: absolute;
      top: -27px;
      left: 50%;
      width: 106px;
      height: 47px;
      content: "";
      transform: translateX(-50%);
      border-radius: 50%;
      background: linear-gradient(90deg,#3ba1fd,#0c54fd 50%,#4906fc);
      box-shadow: 0 0 20px rgba(12,84,253,.34);
    }
    .robot-chest {
      position: absolute;
      top: 17px;
      left: 50%;
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      transform: translateX(-50%);
      border: 1px solid rgba(193,244,250,.46);
      border-radius: 15px;
      overflow: hidden;
      background: #fff;
      box-shadow: inset 0 1px rgba(255,255,255,.26), 0 7px 18px rgba(12,84,253,.28);
    }
    .robot-chest::before { position: absolute; inset: 5px; content: ""; border: 1px solid rgba(255,255,255,.13); border-radius: 11px; }
    .robot-chest img { position: absolute; top: -10px; left: -21px; width: 85px; max-width: none; }
    .robot-chest::after { position: absolute; right: 0; bottom: 0; left: 0; height: 6px; content: ""; background: #fff; }
    .robot-power { position: absolute; bottom: 9px; left: 50%; display: flex; gap: 4px; transform: translateX(-50%); }
    .robot-power i { width: 4px; height: 4px; border-radius: 50%; background: #746b7c; }
    .robot-power i:first-child { background: #65dca7; box-shadow: 0 0 7px rgba(101,220,167,.8); }
    .robot-arm {
      position: absolute;
      top: 122px;
      z-index: 1;
      width: 20px;
      height: 66px;
      transform-origin: 50% 9px;
      border: 1px solid rgba(81,65,112,.19);
      border-radius: 11px 11px 14px 14px;
      background: linear-gradient(90deg,#aaa1b8,#f5f2f8 46%,#b7aec4);
      box-shadow: inset 2px 0 3px rgba(255,255,255,.66), 0 8px 16px rgba(41,23,77,.14);
      transition: transform .3s ease;
    }
    .robot-arm::before { position: absolute; top: 25px; left: 3px; width: 12px; height: 5px; content: ""; border-radius: 3px; background: #887c98; box-shadow: inset 0 1px rgba(255,255,255,.4); }
    .robot-arm-left { left: 13px; transform: rotate(17deg); }
    .robot-arm-right { right: 13px; transform: rotate(-14deg); }
    .robot-hand { position: absolute; bottom: -7px; left: 1px; width: 16px; height: 17px; border: 1px solid rgba(81,65,112,.2); border-radius: 7px 7px 9px 9px; background: linear-gradient(#eeeaf3,#aaa0b9); box-shadow: inset 0 2px #fff; }
    .robot-guide.presenting .robot-arm-left { animation: robot-present 1.35s cubic-bezier(.2,.75,.2,1) both; }

    @keyframes robot-float { 0%,100% { transform: translateY(0) rotate(-.4deg); } 50% { transform: translateY(-7px) rotate(.5deg); } }
    @keyframes robot-shadow { 0%,100% { opacity: .78; transform: scale(1); } 50% { opacity: .45; transform: scale(.88); } }
    @keyframes robot-signal { 0%,100% { transform: scale(.82); filter: brightness(.9); } 50% { transform: scale(1.18); filter: brightness(1.2); } }
    @keyframes robot-blink { 0%,45%,48%,100% { transform: scaleY(1); } 46%,47% { transform: scaleY(.08); } }
    @keyframes robot-talk { from { height: 5px; width: 29px; } to { height: 9px; width: 25px; } }
    @keyframes robot-present { 0%,100% { transform: rotate(17deg); } 35%,72% { transform: rotate(70deg) translateY(-3px); } 55% { transform: rotate(62deg) translateY(-7px); } }

    @media (max-width: 1100px) {
      .robot-guide { display: none !important; }
      .robot-bubble { right: 132px; width: 250px; }
      .integration-section { padding-bottom: 94px; }
    }

    @media (min-width: 1101px) {
      .integration-section .integration-head { padding-right: 176px; }
      .integration-section .logo-cloud { width: calc(100% - 176px); }
      .integration-section .integration-summary { width: calc(100% - 400px); }
    }

    @media (max-width: 900px) {
      .robot-guide { display: none !important; }
    }

    /* ===== Sistema neural interativo ===== */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 260;
      width: 0;
      height: 2px;
      pointer-events: none;
      background: linear-gradient(90deg, #67c5fd, #0c54fd 48%, #4906fc 100%);
      box-shadow: 0 0 16px rgba(12,84,253,.84);
      transform-origin: left center;
    }

    .cursor-light,
    .cursor-core {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 250;
      pointer-events: none;
      opacity: 0;
      will-change: transform, opacity;
    }
    .cursor-light {
      width: 210px;
      height: 210px;
      margin: -105px 0 0 -105px;
      border-radius: 50%;
      filter: blur(4px);
      mix-blend-mode: screen;
      background: radial-gradient(circle, rgba(103,197,253,.17) 0%, rgba(73,6,252,.09) 30%, transparent 68%);
      transition: width .25s ease, height .25s ease, margin .25s ease, opacity .2s ease;
    }
    .cursor-core {
      width: 8px;
      height: 8px;
      margin: -4px 0 0 -4px;
      border: 1px solid rgba(255,255,255,.86);
      border-radius: 50%;
      background: rgba(103,197,253,.78);
      box-shadow: 0 0 15px rgba(59,161,253,.95), 0 0 34px rgba(73,6,252,.6);
      transition: width .2s ease, height .2s ease, margin .2s ease, opacity .2s ease, background .2s ease;
    }
    .cursor-light.active { width: 300px; height: 300px; margin: -150px 0 0 -150px; }
    .cursor-core.active { width: 18px; height: 18px; margin: -9px 0 0 -9px; background: rgba(89,97,252,.72); }

    .hero-neural-canvas {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      opacity: .82;
      mix-blend-mode: screen;
    }
    .hero-grid,
    .hero .sector-strip { position: relative; z-index: 2; }
    .hero-product::before {
      position: absolute;
      inset: -60px -45px;
      z-index: -1;
      content: "";
      pointer-events: none;
      opacity: .56;
      border-radius: 42%;
      background:
        radial-gradient(circle at 18% 30%, rgba(103,197,253,.22) 0 2px, transparent 4px),
        radial-gradient(circle at 84% 22%, rgba(59,161,253,.22) 0 2px, transparent 4px),
        radial-gradient(circle at 90% 76%, rgba(73,6,252,.25) 0 3px, transparent 6px);
      filter: drop-shadow(0 0 20px rgba(12,84,253,.28));
    }

    .neural-experience {
      position: relative;
      min-height: 890px;
      overflow: hidden;
      color: #fff;
      background:
        radial-gradient(circle at 50% 48%, rgba(73,6,252,.2), transparent 30%),
        radial-gradient(circle at 18% 74%, rgba(59,161,253,.12), transparent 28%),
        linear-gradient(180deg, #04042f 0%, #050632 48%, #02021f 100%);
      isolation: isolate;
      cursor: crosshair;
    }
    .neural-experience::before {
      position: absolute;
      inset: 0;
      z-index: 0;
      content: "";
      pointer-events: none;
      opacity: .22;
      background-image:
        linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px);
      background-size: 70px 70px;
      mask-image: radial-gradient(circle at center, #000, transparent 78%);
    }
    .neural-experience::after {
      position: absolute;
      inset: 0;
      z-index: 1;
      content: "";
      pointer-events: none;
      background: linear-gradient(180deg, #04042f 0%, transparent 13%, transparent 86%, #04042f 100%);
    }
    .neural-canvas {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      touch-action: pan-y;
    }
    .neural-overlay {
      position: relative;
      z-index: 4;
      min-height: 890px;
      pointer-events: none;
    }
    .neural-heading {
      position: absolute;
      top: 76px;
      left: 0;
      max-width: 650px;
    }
    .neural-heading .section-kicker { color: #b9a5ff; }
    .neural-heading h2 {
      max-width: 650px;
      margin-bottom: 15px;
      font-size: clamp(42px,5vw,69px);
      line-height: .99;
      letter-spacing: -.06em;
    }
    .neural-heading h2 span {
      color: transparent;
      background: linear-gradient(100deg,#67c5fd,#5961fc 55%,#8f5dfb);
      background-clip: text;
      -webkit-background-clip: text;
    }
    .neural-heading p { max-width: 570px; margin: 0; color: #8d8999; font-size: 14px; line-height: 1.7; }
    .neural-hint {
      position: absolute;
      top: 91px;
      right: 0;
      display: flex;
      align-items: center;
      padding: 10px 13px;
      gap: 9px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 999px;
      color: #8c8799;
      background: rgba(255,255,255,.035);
      backdrop-filter: blur(12px);
      font-size: 9px;
      font-weight: 760;
      letter-spacing: .07em;
      text-transform: uppercase;
    }
    .neural-hint i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #3ba1fd;
      box-shadow: 0 0 12px rgba(59,161,253,.86);
      animation: neural-hint-pulse 1.8s ease-in-out infinite;
    }
    @keyframes neural-hint-pulse { 50% { transform: scale(1.8); opacity: .45; } }
    .neural-core-label {
      position: absolute;
      top: 49%;
      left: 50%;
      display: grid;
      width: 134px;
      height: 134px;
      place-items: center;
      pointer-events: none;
      transform: translate(-50%,-50%);
      border: 1px solid rgba(103,197,253,.25);
      border-radius: 46% 54% 52% 48% / 55% 47% 53% 45%;
      background: radial-gradient(circle,rgba(103,197,253,.16),rgba(73,6,252,.08) 46%,transparent 72%);
      box-shadow: inset 0 0 40px rgba(59,161,253,.1), 0 0 48px rgba(73,6,252,.18);
      animation: neural-core-breathe 4.5s ease-in-out infinite;
    }
    .neural-core-label::before,
    .neural-core-label::after {
      position: absolute;
      inset: 14px;
      content: "";
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 54% 46% 45% 55% / 48% 54% 46% 52%;
      animation: neural-core-spin 13s linear infinite;
    }
    .neural-core-label::after { inset: 27px; border-color: rgba(89,97,252,.2); animation-direction: reverse; animation-duration: 9s; }
    .neural-core-label strong { position: relative; z-index: 2; font-size: 18px; letter-spacing: -.03em; }
    .neural-core-label small { position: absolute; top: calc(100% + 12px); width: 180px; color: #777283; font-size: 7px; font-weight: 820; letter-spacing: .17em; text-align: center; text-transform: uppercase; }
    @keyframes neural-core-breathe { 50% { transform: translate(-50%,-50%) scale(1.08) rotate(2deg); filter: brightness(1.18); } }
    @keyframes neural-core-spin { to { transform: rotate(360deg); } }

    .neural-label {
      --label-accent: #8b5cf6;
      position: absolute;
      top: var(--ny);
      left: var(--nx);
      display: flex;
      align-items: center;
      min-width: 135px;
      padding: 10px 12px;
      gap: 9px;
      pointer-events: auto;
      transform: translate(-50%,-50%);
      border: 1px solid rgba(255,255,255,.095);
      border-radius: 12px;
      color: #aaa5b4;
      background: rgba(13,11,22,.72);
      box-shadow: 0 12px 35px rgba(0,0,0,.16);
      backdrop-filter: blur(13px);
      cursor: pointer;
      text-align: left;
      transition: color .25s, border-color .25s, background .25s, box-shadow .25s, transform .25s;
    }
    .neural-label i {
      width: 9px;
      height: 9px;
      flex: 0 0 auto;
      border: 1px solid color-mix(in srgb, var(--label-accent) 78%, white);
      border-radius: 50%;
      background: color-mix(in srgb, var(--label-accent) 45%, transparent);
      box-shadow: 0 0 12px color-mix(in srgb, var(--label-accent) 62%, transparent);
    }
    .neural-label span { display: grid; gap: 1px; }
    .neural-label b { font-size: 9px; letter-spacing: .03em; }
    .neural-label small { color: #64606e; font-size: 6px; }
    .neural-label:hover,
    .neural-label:focus-visible,
    .neural-label.active {
      color: #fff;
      border-color: color-mix(in srgb, var(--label-accent) 35%, transparent);
      background: rgba(24,19,37,.88);
      box-shadow: 0 0 0 1px color-mix(in srgb,var(--label-accent) 10%,transparent), 0 0 35px color-mix(in srgb,var(--label-accent) 18%,transparent);
      transform: translate(-50%,-50%) scale(1.06);
    }
    .neural-label.active i { background: var(--label-accent); box-shadow: 0 0 20px var(--label-accent); }
    .neural-label[data-key="conversa"] { --nx: 14%; --ny: 43%; --label-accent: #3ba1fd; }
    .neural-label[data-key="memoria"] { --nx: 82%; --ny: 34%; --label-accent: #8f5dfb; }
    .neural-label[data-key="vendas"] { --nx: 84%; --ny: 68%; --label-accent: #0c54fd; }
    .neural-label[data-key="crm"] { --nx: 17%; --ny: 72%; --label-accent: #5961fc; }
    .neural-label[data-key="pagamento"] { --nx: 53%; --ny: 85%; --label-accent: #67c5fd; }
    .neural-readout {
      position: absolute;
      right: 0;
      bottom: 55px;
      display: grid;
      width: min(370px,100%);
      min-height: 110px;
      padding: 17px 18px;
      pointer-events: none;
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 16px;
      background: rgba(11,9,18,.7);
      backdrop-filter: blur(15px);
      box-shadow: 0 20px 50px rgba(0,0,0,.22);
    }
    .readout-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; color: #676271; font-size: 7px; font-weight: 830; letter-spacing: .13em; text-transform: uppercase; }
    .readout-signal { display: flex; align-items: center; gap: 5px; color: #72dfb0; }
    .readout-signal::before { width: 5px; height: 5px; content: ""; border-radius: 50%; background: currentColor; box-shadow: 0 0 9px currentColor; }
    .neural-readout strong { margin-bottom: 4px; font-size: 16px; letter-spacing: -.02em; }
    .neural-readout p { margin: 0; color: #777282; font-size: 9px; line-height: 1.55; }
    .neural-depth-note {
      position: absolute;
      bottom: 68px;
      left: 0;
      display: flex;
      align-items: center;
      gap: 9px;
      color: #5c5865;
      font-size: 8px;
      font-weight: 760;
      letter-spacing: .07em;
      text-transform: uppercase;
    }
    .neural-depth-note::before { width: 32px; height: 1px; content: ""; background: linear-gradient(90deg,#3ba1fd,transparent); }

    .neural-reactive {
      --spot-x: 50%;
      --spot-y: 50%;
      --tilt-x: 0deg;
      --tilt-y: 0deg;
      --neural-lift: 0px;
      position: relative;
      transform-style: preserve-3d;
      will-change: transform;
      transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translateY(var(--neural-lift));
      transition: transform .16s ease-out, border-color .3s ease, box-shadow .3s ease !important;
    }
    .neural-reactive::before {
      position: absolute;
      inset: 0;
      z-index: 0;
      content: "";
      pointer-events: none;
      opacity: 0;
      border-radius: inherit;
      background: radial-gradient(360px circle at var(--spot-x) var(--spot-y), rgba(12,84,253,.18), rgba(59,161,253,.055) 35%, transparent 68%);
      transition: opacity .28s ease;
    }
    .neural-reactive:hover { --neural-lift: -5px; }
    .neural-reactive:hover::before { opacity: 1; }
    .segments-section .neural-reactive::before,
    .security-section .neural-reactive::before,
    .tour-section .neural-reactive::before {
      background: radial-gradient(330px circle at var(--spot-x) var(--spot-y), rgba(59,161,253,.13), rgba(73,6,252,.13) 35%, transparent 70%);
    }
    .logo-chip.neural-reactive { border-radius: 0; }
    .logo-chip.neural-reactive:hover { --neural-lift: -2px; }

    @media (pointer: coarse) {
      .cursor-light, .cursor-core { display: none; }
      .neural-experience { cursor: default; }
      .neural-reactive { transform: none !important; }
    }

    @media (max-width: 1100px) {
      .neural-heading { max-width: 540px; }
      .neural-hint { top: 100px; }
      .neural-label[data-key="conversa"] { --nx: 11%; }
      .neural-label[data-key="memoria"] { --nx: 87%; }
      .neural-label[data-key="vendas"] { --nx: 88%; }
      .neural-label[data-key="crm"] { --nx: 12%; }
    }

    @media (max-width: 760px) {
      .neural-experience,
      .neural-overlay { min-height: 790px; }
      .neural-heading { top: 58px; right: 0; }
      .neural-heading h2 { font-size: 43px; }
      .neural-heading p { font-size: 12px; }
      .neural-hint { top: 230px; right: auto; left: 0; }
      .neural-core-label { top: 53%; width: 104px; height: 104px; }
      .neural-label { min-width: 106px; padding: 8px 9px; }
      .neural-label b { font-size: 7px; }
      .neural-label small { display: none; }
      .neural-label[data-key="conversa"] { --nx: 17%; --ny: 44%; }
      .neural-label[data-key="memoria"] { --nx: 81%; --ny: 40%; }
      .neural-label[data-key="vendas"] { --nx: 83%; --ny: 67%; }
      .neural-label[data-key="crm"] { --nx: 18%; --ny: 70%; }
      .neural-label[data-key="pagamento"] { --nx: 50%; --ny: 79%; }
      .neural-readout { right: 0; bottom: 24px; left: 0; width: 100%; min-height: 94px; }
      .neural-depth-note { display: none; }
      .hero-neural-canvas { opacity: .64; }
    }

    @media (max-width: 1100px) {
      .desktop-nav { display: none; }
      .mobile-toggle { display: block; }
      .nav-actions .btn { display: none; }
      .hero { padding-top: 76px; }
      .hero-grid { grid-template-columns: 1fr; gap: 58px; }
      .hero-copy { max-width: 810px; }
      .hero-product { width: min(830px,100%); margin-inline: auto; }
      .sector-strip { grid-template-columns: repeat(3,1fr); }
      .sector-strip p { grid-column: 1/-1; }
      .manifesto-grid { gap: 50px; }
      .cap-card.large, .cap-card.small { grid-column: span 6; }
      .tour-head { align-items: flex-start; flex-direction: column; }
      .tour-panel { grid-template-columns: 1fr; gap: 40px; }
      .tour-stage { min-height: 900px; }
      .flow-grid { grid-template-columns: 1fr; }
      .flow-sticky { position: static; }
      .logo-cloud { grid-template-columns: repeat(4,1fr); }
      .logo-chip { border-bottom: 1px solid var(--dark-line); }
      .logo-chip:nth-child(4) { border-right: 0; }
      .logo-chip:nth-child(n+5) { border-bottom: 0; }
      .segments-grid { grid-template-columns: repeat(3,1fr); }
      .segment-card { border-bottom: 1px solid rgba(255,255,255,.08); }
      .segment-card:nth-child(3) { border-right: 0; }
      .segment-card:nth-child(n+4) { border-bottom: 0; }
      .security-grid { gap: 50px; }
      .pricing-grid { grid-template-columns: repeat(2,1fr); }
    }

    @media (max-width: 760px) {
      .container { width: min(100% - 30px, var(--container)); }
      .top-note { min-height: 29px; font-size: 8px; letter-spacing: .12em; }
      .nav-wrap { min-height: 68px; }
      .brand-copy small { display: none; }
      .mobile-menu { inset: 97px 0 0; }
      .hero { min-height: auto; padding: 63px 0 35px; }
      .hero::after { top: -460px; right: -500px; }
      .hero h1 { font-size: clamp(43px,13.5vw,64px); }
      .hero-copy > p { font-size: 15px; }
      .hero-actions .btn { width: 100%; }
      .app-window { min-height: 475px; transform: none; }
      .app-body { grid-template-columns: 42px 1fr; min-height: 430px; }
      .context-pane { display: none; }
      .conversation { min-height: 322px; padding: 15px 12px 10px; }
      .message { max-width: 88%; }
      .app-sidebar { padding-inline: 5px; }
      .side-icon { width: 28px; height: 28px; }
      .float-chip.one { top: 48px; right: -5px; }
      .float-chip.two { left: -5px; bottom: 38px; }
      .sector-strip { grid-template-columns: repeat(2,1fr); margin-top: 48px; padding: 18px; }
      .section { padding: 82px 0; }
      .section-heading h2 { font-size: clamp(36px,11vw,52px); }
      .section-heading p { font-size: 15px; }
      .manifesto { padding: 84px 0 70px; }
      .manifesto-grid { grid-template-columns: 1fr; gap: 33px; }
      .manifesto h2 { font-size: clamp(41px,12vw,58px); }
      .cap-grid { grid-template-columns: 1fr; }
      .cap-card.large, .cap-card.small { grid-column: 1; min-height: 380px; }
      .cap-visual { right: 14px; bottom: 18px; width: 72%; }
      .tour-tabs { width: 100%; overflow-x: auto; }
      .tour-tab { flex: 1 0 auto; }
      .tour-stage { min-height: 835px; }
      .tour-screen { min-height: 400px; padding: 13px; }
      .support-layout, .store-layout { grid-template-columns: 1fr; }
      .support-brain { display: none; }
      .store-products { grid-template-columns: repeat(2,1fr); }
      .checkout-card { display: none; }
      .crm-layout { grid-template-columns: 1fr; }
      .insight-panel { display: none; }
      .kanban-col { min-height: 270px; }
      .tour-copy h3 { font-size: 38px; }
      .flow-step { grid-template-columns: 52px 1fr; padding: 19px; gap: 16px; }
      .flow-index { width: 52px; height: 52px; border-radius: 16px; }
      .flow-steps::before { left: 26px; }
      .integration-head { align-items: flex-start; flex-direction: column; gap: 15px; }
      .logo-cloud { grid-template-columns: repeat(2,1fr); }
      .logo-chip { min-height: 95px; border-right: 1px solid var(--dark-line) !important; border-bottom: 1px solid var(--dark-line) !important; }
      .logo-chip:nth-child(even) { border-right: 0 !important; }
      .logo-chip:nth-child(n+7) { border-bottom: 0 !important; }
      .integration-summary { grid-template-columns: 1fr; }
      .segments-grid { grid-template-columns: 1fr; }
      .segment-card { min-height: 245px; border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.08) !important; }
      .segment-card:last-child { border-bottom: 0 !important; }
      .segment-card h3 { margin-top: 80px; }
      .segment-orb { top: 45px; }
      .security-grid { grid-template-columns: 1fr; }
      .security-cards { grid-template-columns: 1fr; }
      .security-card { min-height: 180px; }
      .security-card .sec-icon { margin-bottom: 25px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .plan-card { min-height: auto; }
      .faq-grid { grid-template-columns: 1fr; gap: 46px; }
      .faq-grid .section-heading { position: static; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 30px; }
      .footer-brand { grid-column: 1/-1; }
      .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
    }

    @media (max-width: 430px) {
      .brand-mark { width: 35px; height: 35px; }
      .brand-copy strong { font-size: 14px; }
      .hero-signals { display: grid; }
      .app-window { min-height: 450px; }
      .window-top > span { display: none; }
      .sector-strip { grid-template-columns: 1fr 1fr; gap: 15px 10px; }
      .sector-name { font-size: 8px; }
      .cap-card { padding: 23px; }
      .cap-visual { width: 84%; }
      .tour-stage { min-height: 800px; }
      .store-photo { height: 80px; }
      .kanban { gap: 5px; }
      .kanban-col { padding: 6px; }
      .kanban-card { padding: 7px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-brand { grid-column: auto; }
    }

    /* ===== Identidade oficial sem fundos brancos ===== */
    .brand-mark,
    .app-logo,
    .product-img,
    .identity-mark,
    .cta-icon,
    .robot-chest {
      isolation: isolate;
      overflow: hidden;
      border-color: rgba(103,197,253,.34);
      background:
        radial-gradient(circle at 30% 18%,rgba(103,197,253,.2),transparent 42%),
        linear-gradient(145deg,rgba(8,10,58,.98),rgba(4,4,47,.9));
      box-shadow: 0 12px 30px rgba(43,23,250,.22), inset 0 1px 0 rgba(255,255,255,.1);
    }
    .brand-mark::before,
    .app-logo::after,
    .product-img::after,
    .identity-mark::after,
    .cta-icon::after,
    .robot-chest::after { display: none; }
    .brand-mark img[data-brand-symbol],
    .app-logo img[data-brand-symbol],
    .product-img img[data-brand-symbol],
    .identity-mark img[data-brand-symbol],
    .cta-icon img[data-brand-symbol],
    .robot-chest img[data-brand-symbol] {
      position: absolute;
      inset: 9%;
      z-index: 2;
      width: 82%;
      height: 82%;
      max-width: 82%;
      object-fit: contain;
      opacity: 0;
      filter: drop-shadow(0 5px 10px rgba(12,84,253,.28));
      transition: opacity .28s ease, transform .28s ease;
    }
    html.brand-ready img[data-brand-symbol] { opacity: 1; }
    .brand:hover img[data-brand-symbol],
    .cta-icon:hover img[data-brand-symbol] { transform: scale(1.06); }
    .app-logo,
    .product-img,
    .identity-mark {
      background:
        radial-gradient(circle at 28% 20%,rgba(59,161,253,.22),transparent 44%),
        linear-gradient(145deg,#101552,#050535);
    }
    .robot-chest::before { z-index: 3; border-color: rgba(103,197,253,.2); }

    /* ===== Login e cadastro neural ===== */
    body.auth-open { overflow: hidden; }
    .auth-experience[hidden] { display: none !important; }
    .auth-experience {
      --auth-eye-x: 0px;
      --auth-eye-y: 0px;
      --auth-head-x: 0deg;
      --auth-head-y: 0deg;
      position: fixed;
      inset: 0;
      z-index: 600;
      display: grid;
      grid-template-columns: minmax(0,1.08fr) minmax(430px,.92fr);
      min-height: 100dvh;
      overflow: auto;
      color: var(--white);
      background: var(--ink);
      isolation: isolate;
    }
    .auth-neural-side {
      position: relative;
      min-height: 100dvh;
      overflow: hidden;
      background:
        radial-gradient(circle at 18% 20%,rgba(59,161,253,.16),transparent 29%),
        radial-gradient(circle at 82% 70%,rgba(73,6,252,.22),transparent 34%),
        linear-gradient(145deg,#020228 0%,#06063b 52%,#090745 100%);
    }
    .auth-neural-side::before {
      position: absolute;
      inset: 0;
      z-index: 1;
      content: "";
      pointer-events: none;
      background:
        linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(to bottom,rgba(0,0,0,.8),transparent 92%);
    }
    .auth-neural-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
    .auth-side-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      width: min(760px,calc(100% - 64px));
      min-height: 100%;
      margin: 0 auto;
      padding: 38px 0 32px;
    }
    .auth-brand { display: inline-flex; align-items: center; width: fit-content; gap: 13px; }
    .auth-brand .brand-mark { width: 50px; height: 50px; border-radius: 16px; }
    .auth-brand-copy { display: grid; line-height: 1; }
    .auth-brand-copy strong { font-size: 18px; letter-spacing: .055em; }
    .auth-brand-copy small { margin-top: 6px; color: #8095dd; font-size: 8px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; }
    .auth-intro { max-width: 620px; margin-top: clamp(46px,7vh,88px); }
    .auth-intro .eyebrow { margin-bottom: 17px; }
    .auth-intro h2 {
      max-width: 630px;
      margin-bottom: 14px;
      font-size: clamp(35px,4.1vw,62px);
      line-height: 1.01;
      letter-spacing: -.055em;
    }
    .auth-intro h2 span {
      color: transparent;
      background: linear-gradient(90deg,#67c5fd 0%,#3ba1fd 36%,#8f5dfb 72%,#ffffff 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }
    .auth-intro > p { max-width: 530px; color: #aebbea; font-size: 15px; }
    .auth-robot-zone {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      min-height: 360px;
      margin-top: auto;
      gap: clamp(16px,3vw,42px);
    }
    .auth-guide-card {
      position: relative;
      width: min(360px,48%);
      margin-bottom: 78px;
      padding: 22px 23px 20px;
      border: 1px solid rgba(103,197,253,.25);
      border-radius: 24px 24px 7px 24px;
      background: rgba(10,13,67,.76);
      box-shadow: 0 30px 70px rgba(0,0,25,.32),inset 0 1px 0 rgba(255,255,255,.08);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      transition: border-color .25s ease,box-shadow .25s ease,transform .25s ease;
    }
    .auth-guide-card::after {
      position: absolute;
      right: -12px;
      bottom: 25px;
      width: 24px;
      height: 24px;
      content: "";
      transform: rotate(45deg);
      border-top: 1px solid rgba(103,197,253,.2);
      border-right: 1px solid rgba(103,197,253,.2);
      border-radius: 0 6px 0 0;
      background: #0a0d43;
    }
    .auth-experience.speaking .auth-guide-card {
      transform: translateY(-4px);
      border-color: rgba(103,197,253,.5);
      box-shadow: 0 30px 75px rgba(0,0,25,.38),0 0 42px rgba(12,84,253,.14),inset 0 1px 0 rgba(255,255,255,.1);
    }
    .auth-guide-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; color: var(--cyan); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
    .auth-guide-meta span { display: inline-flex; align-items: center; gap: 8px; }
    .auth-guide-meta i { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(59,161,253,.1),0 0 15px rgba(59,161,253,.75); }
    .auth-guide-meta small { color: #8391c6; font-size: 7px; }
    .auth-guide-card h3 { margin-bottom: 8px; font-size: 17px; letter-spacing: -.025em; }
    .auth-guide-card p { min-height: 70px; margin: 0; color: #b9c5ed; font-size: 13px; line-height: 1.6; }
    .auth-guide-action { display: flex; align-items: center; margin-top: 14px; gap: 8px; color: #7184cb; font-size: 8px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
    .auth-guide-action::before { width: 28px; height: 1px; content: ""; background: linear-gradient(90deg,var(--cyan),transparent); }
    .auth-robot {
      position: relative;
      width: 240px;
      height: 340px;
      flex: 0 0 240px;
      transform: scale(1.08);
      transform-origin: center bottom;
    }
    .auth-robot::before {
      position: absolute;
      inset: 34px 10px 18px;
      content: "";
      border-radius: 50%;
      background: radial-gradient(circle,rgba(59,161,253,.15),rgba(73,6,252,.08) 45%,transparent 72%);
      filter: blur(10px);
    }
    .auth-robot .robot-character { position: absolute; right: 12px; bottom: 0; width: 214px; height: 322px; pointer-events: none; }
    .auth-robot .robot-unit { right: 36px; bottom: 42px; transform: scale(1.28); transform-origin: center bottom; animation: auth-robot-float 3.4s ease-in-out infinite; }
    .auth-robot .robot-floor { right: 18px; bottom: 19px; width: 176px; height: 30px; }
    .auth-robot .robot-head { transform: perspective(450px) rotateY(var(--auth-head-x)) rotateX(var(--auth-head-y)); }
    .auth-robot .robot-pupil { transform: translate(var(--auth-eye-x),var(--auth-eye-y)); }
    .auth-robot.engaged .robot-head { filter: brightness(1.06); }
    .auth-experience.speaking .auth-robot .robot-mouth { animation: robot-talk .44s ease-in-out infinite alternate; }
    .auth-experience.presenting .auth-robot .robot-arm-left { animation: robot-present 1.35s cubic-bezier(.2,.75,.2,1) both; }
    @keyframes auth-robot-float {
      0%,100% { transform: scale(1.28) translateY(0) rotate(-.4deg); }
      50% { transform: scale(1.28) translateY(-7px) rotate(.5deg); }
    }

    .auth-form-side {
      position: relative;
      display: grid;
      min-height: 100dvh;
      place-items: center;
      padding: 72px clamp(28px,4vw,72px) 46px;
      color: var(--ink);
      background:
        radial-gradient(circle at 90% 10%,rgba(143,93,251,.11),transparent 25%),
        radial-gradient(circle at 8% 92%,rgba(59,161,253,.12),transparent 28%),
        linear-gradient(155deg,#f9fbff,#edf3ff 58%,#f6f2ff);
    }
    .auth-form-side::before {
      position: absolute;
      inset: 0;
      content: "";
      pointer-events: none;
      background-image: radial-gradient(rgba(12,84,253,.11) .7px,transparent .7px);
      background-size: 20px 20px;
      mask-image: linear-gradient(135deg,rgba(0,0,0,.45),transparent 62%);
    }
    .auth-close {
      position: absolute;
      top: 24px;
      right: 26px;
      z-index: 3;
      display: grid;
      width: 44px;
      height: 44px;
      padding: 0;
      place-items: center;
      border: 1px solid rgba(4,4,47,.1);
      border-radius: 14px;
      color: var(--ink);
      background: rgba(255,255,255,.62);
      box-shadow: 0 9px 25px rgba(4,4,47,.08);
      cursor: pointer;
      backdrop-filter: blur(12px);
    }
    .auth-close:hover { border-color: rgba(12,84,253,.3); background: #fff; }
    .auth-form-shell { position: relative; z-index: 2; width: min(480px,100%); }
    .auth-view[hidden] { display: none !important; }
    .auth-form-heading { margin-bottom: 28px; }
    .auth-form-heading .auth-kicker { display: inline-flex; align-items: center; margin-bottom: 14px; gap: 8px; color: #0c54fd; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
    .auth-kicker::before { width: 21px; height: 2px; content: ""; border-radius: 99px; background: linear-gradient(90deg,var(--cyan),var(--violet)); }
    .auth-form-heading h2 { margin-bottom: 9px; color: var(--ink); font-size: clamp(31px,3vw,43px); line-height: 1.05; letter-spacing: -.05em; }
    .auth-form-heading p { margin: 0; color: #65709a; font-size: 14px; }
    .auth-form { display: grid; gap: 16px; }
    .auth-field { display: grid; gap: 7px; }
    .auth-field > span { display: flex; align-items: center; justify-content: space-between; color: #222856; font-size: 11px; font-weight: 850; letter-spacing: .015em; }
    .auth-field > span small { color: #7e88b3; font-size: 9px; font-weight: 700; }
    .auth-input-wrap { position: relative; }
    .auth-field-icon { position: absolute; top: 50%; left: 15px; z-index: 2; display: grid; width: 24px; height: 24px; place-items: center; transform: translateY(-50%); border-radius: 8px; color: #0c54fd; background: rgba(12,84,253,.075); font-size: 11px; font-weight: 900; }
    .auth-input-wrap input {
      width: 100%;
      height: 56px;
      padding: 0 48px 0 51px;
      border: 1px solid rgba(4,4,47,.12);
      border-radius: 15px;
      outline: 0;
      color: var(--ink);
      background: rgba(255,255,255,.78);
      box-shadow: inset 0 1px 0 #fff,0 8px 24px rgba(4,4,47,.045);
      transition: border-color .2s ease,box-shadow .2s ease,background .2s ease;
    }
    .auth-input-wrap input::placeholder { color: #9ba4c7; }
    .auth-input-wrap input:hover { border-color: rgba(12,84,253,.26); background: #fff; }
    .auth-input-wrap input:focus { border-color: rgba(12,84,253,.58); background: #fff; box-shadow: 0 0 0 4px rgba(12,84,253,.09),0 12px 28px rgba(43,23,250,.08); }
    .auth-password-toggle { position: absolute; top: 50%; right: 12px; display: grid; width: 34px; height: 34px; padding: 0; place-items: center; transform: translateY(-50%); border: 0; border-radius: 10px; color: #5f6a97; background: transparent; cursor: pointer; }
    .auth-password-toggle:hover { color: #0c54fd; background: rgba(12,84,253,.07); }
    .auth-form-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
    .auth-check { display: inline-flex; align-items: flex-start; gap: 9px; color: #5c668f; font-size: 11px; font-weight: 680; cursor: pointer; }
    .auth-check input { width: 17px; height: 17px; margin: 0; accent-color: #0c54fd; }
    .auth-text-link { padding: 0; border: 0; color: #0c54fd; background: transparent; font-size: 11px; font-weight: 820; cursor: pointer; }
    .auth-text-link:hover { color: #4906fc; text-decoration: underline; text-underline-offset: 3px; }
    .auth-submit { position: relative; width: 100%; min-height: 57px; overflow: hidden; border: 0; border-radius: 16px; }
    .auth-submit::before { position: absolute; inset: 0; content: ""; transform: translateX(-110%) skewX(-18deg); background: linear-gradient(90deg,transparent,rgba(255,255,255,.36),transparent); transition: transform .65s ease; }
    .auth-submit:hover::before { transform: translateX(110%) skewX(-18deg); }
    .auth-secure-note { display: flex; align-items: center; justify-content: center; margin-top: -3px; gap: 7px; color: #7882a9; font-size: 9px; font-weight: 720; }
    .auth-secure-note i { width: 7px; height: 7px; border-radius: 50%; background: #3ba1fd; box-shadow: 0 0 0 4px rgba(59,161,253,.1); }
    .auth-divider { display: flex; align-items: center; margin: 22px 0; gap: 13px; color: #99a1c0; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
    .auth-divider::before,.auth-divider::after { height: 1px; flex: 1; content: ""; background: rgba(4,4,47,.1); }
    .auth-switch { display: flex; align-items: center; justify-content: center; min-height: 50px; gap: 5px; border: 1px solid rgba(4,4,47,.1); border-radius: 14px; color: #606a93; background: rgba(255,255,255,.45); font-size: 12px; }
    .auth-switch button { padding: 4px; border: 0; color: #0c54fd; background: transparent; font-weight: 850; cursor: pointer; }
    .auth-status { min-height: 0; overflow: hidden; border-radius: 12px; color: #0d386d; background: rgba(59,161,253,.1); font-size: 11px; font-weight: 720; line-height: 1.5; transition: padding .2s ease,min-height .2s ease; }
    .auth-status.show { min-height: 42px; padding: 12px 14px; }
    .auth-status.error { color: #3a215f; background: rgba(143,93,251,.12); }
    .auth-password-meter { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; }
    .auth-password-meter i { height: 3px; border-radius: 99px; background: rgba(4,4,47,.1); transition: background .2s ease,box-shadow .2s ease; }
    .auth-password-meter[data-level="1"] i:nth-child(-n+1),
    .auth-password-meter[data-level="2"] i:nth-child(-n+2),
    .auth-password-meter[data-level="3"] i:nth-child(-n+3),
    .auth-password-meter[data-level="4"] i:nth-child(-n+4) { background: linear-gradient(90deg,#3ba1fd,#4906fc); box-shadow: 0 0 9px rgba(12,84,253,.24); }
    .auth-terms-card {
      position: absolute;
      inset: 0;
      z-index: 5;
      display: grid;
      padding: 24px;
      place-items: center;
      background: rgba(4,4,47,.36);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .auth-terms-card[hidden] { display: none !important; }
    .auth-terms-inner { width: min(430px,100%); max-height: min(620px,82dvh); overflow: auto; padding: 30px; border: 1px solid rgba(103,197,253,.25); border-radius: 24px; color: var(--ink); background: #fff; box-shadow: 0 35px 90px rgba(4,4,47,.25); }
    .auth-terms-inner h3 { margin-bottom: 10px; font-size: 25px; letter-spacing: -.035em; }
    .auth-terms-inner p,.auth-terms-inner li { color: #626d98; font-size: 12px; line-height: 1.65; }
    .auth-terms-inner ul { padding-left: 18px; }
    .auth-terms-inner .btn { width: 100%; margin-top: 12px; }

    @media (max-width: 1050px) {
      .auth-experience { grid-template-columns: minmax(0,.9fr) minmax(430px,1.1fr); }
      .auth-side-inner { width: calc(100% - 40px); }
      .auth-intro h2 { font-size: 40px; }
      .auth-guide-card { width: 52%; padding: 18px; }
      .auth-robot { transform: scale(.9); margin-left: -28px; }
    }
    @media (max-width: 820px) {
      .auth-experience { display: block; background: #f4f7ff; }
      .auth-neural-side { min-height: 280px; }
      .auth-side-inner { min-height: 280px; padding: 24px 0 10px; }
      .auth-intro { margin-top: 26px; padding-right: 150px; }
      .auth-intro h2 { font-size: 29px; }
      .auth-intro > p { display: none; }
      .auth-robot-zone { position: absolute; right: -25px; bottom: -20px; min-height: 210px; margin: 0; }
      .auth-guide-card { display: none; }
      .auth-robot { transform: scale(.63); }
      .auth-form-side { min-height: auto; padding: 46px 22px 60px; }
      .auth-close { position: fixed; top: 16px; right: 16px; color: #fff; border-color: rgba(255,255,255,.2); background: rgba(4,4,47,.45); }
    }
    @media (max-width: 540px) {
      .auth-neural-side { min-height: 230px; }
      .auth-side-inner { width: calc(100% - 32px); min-height: 230px; }
      .auth-brand .brand-mark { width: 42px; height: 42px; }
      .auth-intro { margin-top: 22px; padding-right: 90px; }
      .auth-intro h2 { font-size: 25px; }
      .auth-robot-zone { right: -74px; bottom: -49px; transform: scale(.75); }
      .auth-form-side { padding-inline: 16px; }
      .auth-form-row { align-items: flex-start; flex-direction: column; gap: 10px; }
      .auth-form-heading h2 { font-size: 31px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
    }
    /* ===== Experiência comercial 2026 — planos e implantação ===== */
    #conteudo > section { display: none !important; }
    .commercial-v2 {
      position: relative;
      color: var(--ink);
      background: #fff;
      overflow: clip;
    }
    .commercial-v2 .commercial-section {
      position: relative;
      padding: 112px 0;
    }
    .commercial-v2 .commercial-section.compact-section { padding: 82px 0; }
    .commercial-v2 .section-heading { max-width: 780px; }
    .commercial-v2 .section-heading.center { margin-inline: auto; text-align: center; }
    .commercial-v2 .section-heading h2 {
      margin: 0;
      color: var(--ink);
      font-size: clamp(38px,5vw,66px);
      line-height: 1.02;
      letter-spacing: -.06em;
    }
    .commercial-v2 .section-heading p {
      max-width: 690px;
      margin-top: 20px;
      color: #68657a;
      font-size: 15px;
      line-height: 1.75;
    }
    .commercial-v2 .section-heading.center p { margin-inline: auto; }
    .commercial-v2 .section-kicker { color: #285ef8; }
    .commercial-v2 .btn-demo {
      color: #fff;
      background: linear-gradient(100deg,#4906fc,#0c54fd 58%,#3ba1fd);
      box-shadow: 0 18px 42px rgba(12,84,253,.28);
    }
    .commercial-v2 .btn-demo:hover { box-shadow: 0 23px 54px rgba(12,84,253,.37); }

    .commercial-hero {
      position: relative;
      min-height: 830px;
      display: flex;
      align-items: center;
      padding: 108px 0 86px;
      color: #fff;
      background:
        radial-gradient(circle at 78% 22%,rgba(59,161,253,.17),transparent 28%),
        radial-gradient(circle at 18% 80%,rgba(143,93,251,.13),transparent 34%),
        linear-gradient(145deg,#030329 0%,#06083a 54%,#0c0c50 100%);
      overflow: hidden;
      isolation: isolate;
    }
    .commercial-hero::before {
      position: absolute;
      inset: 0;
      z-index: -1;
      content: "";
      background-image:
        linear-gradient(rgba(255,255,255,.027) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.027) 1px,transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(to right,black,transparent 74%);
    }
    .commercial-neural-canvas { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; }
    .commercial-hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; }
    .commercial-hero-copy { position: relative; z-index: 2; max-width: 750px; }
    .commercial-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      padding: 8px 12px;
      border: 1px solid rgba(103,197,253,.2);
      border-radius: 999px;
      color: #a9dfff;
      background: rgba(59,161,253,.075);
      font-size: 9px;
      font-weight: 850;
      letter-spacing: .15em;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
    }
    .commercial-eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: #67e4ff; box-shadow: 0 0 15px #3ba1fd; }
    .commercial-hero h1 {
      max-width: 800px;
      margin: 0;
      font-size: clamp(48px,6.1vw,82px);
      line-height: .98;
      letter-spacing: -.068em;
    }
    .commercial-hero h1 span { color: transparent; background: linear-gradient(90deg,#fff 0%,#92d9ff 42%,#9f73ff 100%); -webkit-background-clip: text; background-clip: text; }
    .commercial-hero-lead { max-width: 680px; margin: 25px 0 0; color: #abb5dd; font-size: 17px; line-height: 1.72; }
    .commercial-hero-lead strong { color: #fff; }
    .commercial-hero-promise {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      max-width: 650px;
      margin: 22px 0 0;
      padding: 15px 17px;
      border-left: 2px solid #3ba1fd;
      border-radius: 0 13px 13px 0;
      color: #dce7ff;
      background: linear-gradient(90deg,rgba(59,161,253,.11),transparent);
      font-size: 13px;
      font-weight: 760;
    }
    .commercial-hero-actions { display: flex; align-items: center; gap: 11px; margin-top: 29px; flex-wrap: wrap; }
    .commercial-hero .btn-ghost { border-color: rgba(255,255,255,.17); color: #fff; background: rgba(255,255,255,.055); }
    .commercial-proof { display: flex; align-items: center; gap: 18px; margin-top: 28px; flex-wrap: wrap; }
    .commercial-proof span { display: inline-flex; align-items: center; gap: 7px; color: #8792bd; font-size: 9px; font-weight: 760; letter-spacing: .03em; }
    .commercial-proof i { display: grid; place-items: center; width: 18px; height: 18px; border: 1px solid rgba(101,220,167,.25); border-radius: 50%; color: #65dca7; background: rgba(101,220,167,.08); font-style: normal; font-size: 9px; }

    .operation-orbit {
      position: relative;
      min-height: 560px;
      border: 1px solid rgba(255,255,255,.105);
      border-radius: 36px;
      background: linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.018));
      box-shadow: inset 0 1px rgba(255,255,255,.08),0 40px 100px rgba(0,0,30,.42);
      backdrop-filter: blur(20px);
      overflow: hidden;
    }
    .operation-orbit::before,.operation-orbit::after {
      position: absolute;
      top: 50%;
      left: 50%;
      border: 1px solid rgba(59,161,253,.16);
      border-radius: 50%;
      content: "";
      transform: translate(-50%,-50%);
    }
    .operation-orbit::before { width: 360px; height: 360px; box-shadow: 0 0 0 52px rgba(143,93,251,.025); animation: commercial-spin 28s linear infinite; }
    .operation-orbit::after { width: 235px; height: 235px; border-style: dashed; animation: commercial-spin 18s linear infinite reverse; }
    @keyframes commercial-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
    .operation-core {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 3;
      display: grid;
      place-items: center;
      width: 146px;
      height: 146px;
      transform: translate(-50%,-50%);
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 50%;
      color: #fff;
      background: radial-gradient(circle at 38% 31%,#6fd8ff,#2354f4 32%,#3704c8 65%,#0b0b45 66%);
      box-shadow: 0 0 25px rgba(59,161,253,.38),0 0 90px rgba(73,6,252,.34),inset 0 0 30px rgba(255,255,255,.16);
      text-align: center;
      animation: core-breathe 4s ease-in-out infinite;
    }
    @keyframes core-breathe { 50% { transform: translate(-50%,-50%) scale(1.06); filter: brightness(1.12); } }
    .operation-core strong { display: block; font-size: 17px; letter-spacing: -.04em; }
    .operation-core small { display: block; max-width: 92px; margin-top: 4px; color: #c4d5ff; font-size: 7px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
    .operation-node {
      position: absolute;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 9px;
      min-width: 150px;
      padding: 11px 13px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 13px;
      color: #fff;
      background: rgba(7,9,54,.84);
      box-shadow: 0 15px 35px rgba(0,0,25,.26);
      backdrop-filter: blur(13px);
      animation: node-float 5s ease-in-out infinite;
    }
    .operation-node:nth-of-type(2) { top: 56px; left: 42px; }
    .operation-node:nth-of-type(3) { top: 74px; right: 30px; animation-delay: -.8s; }
    .operation-node:nth-of-type(4) { top: 238px; right: 22px; animation-delay: -1.7s; }
    .operation-node:nth-of-type(5) { right: 52px; bottom: 54px; animation-delay: -2.4s; }
    .operation-node:nth-of-type(6) { bottom: 65px; left: 37px; animation-delay: -3.1s; }
    .operation-node:nth-of-type(7) { top: 250px; left: 18px; animation-delay: -3.8s; }
    @keyframes node-float { 50% { transform: translateY(-7px); } }
    .operation-node i { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 10px; color: #79d9ff; background: linear-gradient(135deg,rgba(59,161,253,.16),rgba(143,93,251,.14)); font-style: normal; font-size: 9px; font-weight: 900; }
    .operation-node b { display: block; font-size: 9px; letter-spacing: .02em; }
    .operation-node small { display: block; margin-top: 2px; color: #727ca9; font-size: 7px; }
    .operation-status { position: absolute; right: 17px; bottom: 16px; z-index: 5; display: flex; align-items: center; gap: 6px; color: #65dca7; font-size: 7px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
    .operation-status i { width: 6px; height: 6px; border-radius: 50%; background: #65dca7; box-shadow: 0 0 11px #65dca7; }

    .problem-section { background: #f8faff; }
    .problem-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 86px; }
    .problem-sticky { position: sticky; top: 125px; }
    .problem-sticky h2 { margin: 0; color: var(--ink); font-size: clamp(40px,5vw,64px); line-height: 1.02; letter-spacing: -.06em; }
    .problem-sticky p { margin: 19px 0 0; color: #716d7d; font-size: 15px; line-height: 1.75; }
    .problem-truth { margin-top: 24px; padding: 16px 18px; border: 1px solid rgba(12,84,253,.12); border-radius: 16px; color: #41405b; background: #fff; box-shadow: 0 16px 35px rgba(4,4,47,.06); font-size: 11px; line-height: 1.65; }
    .problem-truth strong { color: #0c54fd; }
    .problem-stack { display: grid; gap: 12px; }
    .problem-card {
      position: relative;
      display: grid;
      grid-template-columns: 48px 1fr auto;
      align-items: center;
      gap: 16px;
      min-height: 104px;
      padding: 18px;
      border: 1px solid rgba(4,4,47,.09);
      border-radius: 19px;
      background: rgba(255,255,255,.86);
      box-shadow: 0 13px 34px rgba(4,4,47,.055);
      overflow: hidden;
    }
    .problem-card::after { position: absolute; top: 0; bottom: 0; left: 0; width: 3px; content: ""; background: linear-gradient(#3ba1fd,#4906fc); transform: scaleY(0); transition: transform .25s; }
    .problem-card:hover::after { transform: scaleY(1); }
    .problem-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; color: #0c54fd; background: linear-gradient(145deg,#e9f3ff,#eee8ff); font-size: 11px; font-weight: 900; }
    .problem-card h3 { margin: 0 0 4px; color: #101039; font-size: 14px; }
    .problem-card p { margin: 0; color: #777386; font-size: 11px; line-height: 1.55; }
    .problem-card span:last-child { color: #bbb8c6; font-size: 18px; }

    .benefits-section { color: #fff; background: linear-gradient(145deg,#05052f,#090b43 62%,#100750); }
    .benefits-section .section-heading h2 { color: #fff; }
    .benefits-section .section-heading p { color: #929cc7; }
    .benefits-section .section-kicker { color: #8bd8ff; }
    .benefit-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 13px; margin-top: 49px; }
    .benefit-card {
      position: relative;
      min-height: 210px;
      padding: 22px;
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 20px;
      background: linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.02));
      overflow: hidden;
    }
    .benefit-card::after { position: absolute; right: -45px; bottom: -65px; width: 150px; height: 150px; border-radius: 50%; content: ""; background: radial-gradient(circle,rgba(59,161,253,.15),transparent 68%); }
    .benefit-icon { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(59,161,253,.18); border-radius: 13px; color: #85d8ff; background: rgba(59,161,253,.08); font-size: 9px; font-weight: 900; }
    .benefit-card h3 { margin: 20px 0 7px; font-size: 14px; }
    .benefit-card p { margin: 0; color: #8993bc; font-size: 10px; line-height: 1.65; }
    .benefits-disclaimer { display: flex; align-items: flex-start; gap: 11px; margin-top: 24px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; color: #8993b9; background: rgba(255,255,255,.035); font-size: 10px; line-height: 1.6; }
    .benefits-disclaimer b { color: #fff; }

    .new-pricing-section { background: linear-gradient(180deg,#fff,#f6f8fe); }
    .pricing-decision {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      width: fit-content;
      margin: 24px auto 0;
      padding: 10px 14px;
      border: 1px solid rgba(12,84,253,.14);
      border-radius: 999px;
      color: #394368;
      background: #f2f6ff;
      font-size: 9px;
      font-weight: 800;
    }
    .pricing-decision i { width: 7px; height: 7px; border-radius: 50%; background: #32d59d; box-shadow: 0 0 11px rgba(50,213,157,.6); }
    .commercial-plans { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 14px; margin-top: 45px; align-items: stretch; }
    .commercial-plan {
      position: relative;
      display: flex;
      min-height: 565px;
      padding: 24px;
      flex-direction: column;
      grid-column: span 2;
      border: 1px solid rgba(4,4,47,.1);
      border-radius: 23px;
      background: rgba(255,255,255,.92);
      box-shadow: 0 16px 42px rgba(4,4,47,.07);
      overflow: hidden;
      transition: transform .28s,box-shadow .28s,border-color .28s;
    }
    .commercial-plan:nth-child(4) { grid-column: 2 / span 2; }
    .commercial-plan:nth-child(5) { grid-column: 4 / span 2; }
    .commercial-plan:hover { transform: translateY(-7px); border-color: rgba(12,84,253,.28); box-shadow: 0 27px 65px rgba(4,4,47,.12); }
    .commercial-plan.featured {
      color: #fff;
      border-color: rgba(59,161,253,.55);
      background: radial-gradient(circle at 85% 0%,rgba(59,161,253,.2),transparent 28%),linear-gradient(155deg,#07083a,#0e1153 62%,#240579);
      box-shadow: 0 27px 70px rgba(12,24,120,.24);
    }
    .commercial-plan.featured::before { position: absolute; top: -90px; right: -80px; width: 240px; height: 240px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; content: ""; box-shadow: 0 0 0 30px rgba(59,161,253,.025); }
    .plan-topline { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; min-height: 28px; gap: 8px; }
    .plan-tier { color: #6c7597; font-size: 8px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
    .featured .plan-tier { color: #86d5ff; }
    .plan-popular { padding: 5px 8px; border-radius: 999px; color: #fff; background: linear-gradient(100deg,#8f5dfb,#0c54fd); box-shadow: 0 7px 18px rgba(12,84,253,.28); font-size: 7px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
    .commercial-plan h3 { position: relative; z-index: 2; margin: 15px 0 4px; color: #11113a; font-size: 22px; letter-spacing: -.04em; }
    .commercial-plan.featured h3 { color: #fff; }
    .plan-positioning { position: relative; z-index: 2; min-height: 42px; margin: 0; color: #78758a; font-size: 10px; line-height: 1.55; }
    .featured .plan-positioning { color: #9da9d2; }
    .monthly-price { position: relative; z-index: 2; display: flex; align-items: flex-start; margin: 18px 0 3px; color: #080833; }
    .featured .monthly-price { color: #fff; }
    .monthly-price sup { margin-top: 8px; font-size: 10px; font-weight: 850; }
    .monthly-price strong { font-size: 38px; line-height: 1; letter-spacing: -.06em; }
    .monthly-price span { align-self: flex-end; margin: 0 0 4px 5px; color: #8a8798; font-size: 9px; }
    .featured .monthly-price span { color: #8491bd; }
    .allowance { position: relative; z-index: 2; margin: 0 0 15px; color: #565d7a; font-size: 9px; font-weight: 720; }
    .featured .allowance { color: #b0badd; }
    .commercial-plan-list { position: relative; z-index: 2; display: grid; gap: 9px; margin: 0 0 18px; padding: 0; list-style: none; }
    .commercial-plan-list li { display: flex; align-items: flex-start; gap: 8px; color: #595d75; font-size: 9px; line-height: 1.45; }
    .featured .commercial-plan-list li { color: #b8c1df; }
    .commercial-plan-list i { display: grid; place-items: center; width: 17px; height: 17px; flex: 0 0 auto; border-radius: 50%; color: #157e61; background: rgba(50,213,157,.12); font-style: normal; font-size: 8px; font-weight: 900; }
    .featured .commercial-plan-list i { color: #69e8bf; background: rgba(50,213,157,.1); }
    .setup-price {
      position: relative;
      z-index: 2;
      margin-top: auto;
      padding: 13px;
      border: 1px solid rgba(12,84,253,.12);
      border-radius: 13px;
      background: #f5f8ff;
    }
    .featured .setup-price { border-color: rgba(59,161,253,.18); background: rgba(59,161,253,.07); }
    .setup-price span { display: block; color: #77809d; font-size: 7px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
    .featured .setup-price span { color: #8491bc; }
    .setup-price strong { display: block; margin-top: 3px; color: #10103a; font-size: 15px; }
    .featured .setup-price strong { color: #fff; }
    .setup-price small { display: block; margin-top: 3px; color: #8d91a3; font-size: 7px; }
    .featured .setup-price small { color: #7785b2; }
    .commercial-plan .btn { position: relative; z-index: 2; width: 100%; margin-top: 11px; }
    .commercial-plan.featured .btn-ghost { color: #fff; border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.06); }
    .plan-conditions { display: flex; justify-content: center; gap: 18px; margin-top: 23px; color: #7a7890; font-size: 8px; font-weight: 750; flex-wrap: wrap; }
    .plan-conditions span { display: flex; align-items: center; gap: 6px; }
    .plan-conditions i { width: 5px; height: 5px; border-radius: 50%; background: #0c54fd; box-shadow: 0 0 8px rgba(12,84,253,.5); }
    .comparison-shell { margin-top: 35px; border: 1px solid rgba(4,4,47,.1); border-radius: 22px; background: #fff; box-shadow: 0 18px 48px rgba(4,4,47,.065); overflow: hidden; }
    .comparison-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 19px 22px; border-bottom: 1px solid rgba(4,4,47,.08); }
    .comparison-head h3 { margin: 0; font-size: 16px; letter-spacing: -.03em; }
    .comparison-head p { margin: 3px 0 0; color: #7a7789; font-size: 9px; }
    .comparison-toggle { border: 1px solid rgba(12,84,253,.16); color: #0c54fd; background: #f3f7ff; cursor: pointer; }
    .comparison-table-wrap { overflow: auto; }
    .comparison-table { width: 100%; border-collapse: collapse; min-width: 970px; }
    .comparison-table th,.comparison-table td { padding: 15px 17px; border-bottom: 1px solid #eceef6; text-align: left; font-size: 9px; }
    .comparison-table th { color: #777c96; background: #fafbff; font-size: 7px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
    .comparison-table td:first-child { color: #14143e; font-weight: 850; }
    .comparison-table tr:last-child td { border-bottom: 0; }
    .comparison-table .recommended-cell { color: #0c54fd; background: rgba(12,84,253,.035); font-weight: 850; }
    .comparison-note { padding: 14px 22px; border-top: 1px solid #eceef6; color: #858294; background: #fafbfe; font-size: 8px; line-height: 1.6; }

    .implementation-section { color: #fff; background: radial-gradient(circle at 85% 16%,rgba(59,161,253,.13),transparent 26%),linear-gradient(145deg,#030329,#07093c 60%,#120652); overflow: hidden; }
    .implementation-section .section-heading h2 { color: #fff; }
    .implementation-section .section-heading p { color: #98a3cc; }
    .implementation-section .section-kicker { color: #8cd9ff; }
    .implementation-intro { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 35px; }
    .diagnostic-seal { display: flex; align-items: center; gap: 12px; max-width: 340px; padding: 14px 16px; border: 1px solid rgba(101,220,167,.18); border-radius: 15px; color: #b7c3e4; background: rgba(101,220,167,.055); font-size: 9px; line-height: 1.55; }
    .diagnostic-seal i { display: grid; place-items: center; width: 36px; height: 36px; flex: 0 0 auto; border-radius: 12px; color: #65dca7; background: rgba(101,220,167,.1); font-style: normal; font-weight: 900; }
    .diagnostic-seal strong { display: block; color: #fff; font-size: 10px; }
    .setup-experience { display: grid; grid-template-columns: .78fr 1.22fr; gap: 16px; margin-top: 42px; }
    .setup-nav { display: grid; gap: 8px; padding: 13px; border: 1px solid rgba(255,255,255,.09); border-radius: 21px; background: rgba(255,255,255,.035); }
    .setup-step {
      display: grid;
      grid-template-columns: 39px 1fr auto;
      align-items: center;
      gap: 11px;
      width: 100%;
      min-height: 69px;
      padding: 9px 11px;
      border: 1px solid transparent;
      border-radius: 14px;
      color: #9aa5cb;
      background: transparent;
      cursor: pointer;
      text-align: left;
      transition: .22s;
    }
    .setup-step:hover,.setup-step.active { color: #fff; border-color: rgba(59,161,253,.2); background: linear-gradient(90deg,rgba(12,84,253,.15),rgba(73,6,252,.08)); transform: translateX(3px); }
    .setup-step-index { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 12px; color: #73ccff; background: rgba(59,161,253,.09); font-size: 9px; font-weight: 900; }
    .setup-step.active .setup-step-index { color: #fff; background: linear-gradient(135deg,#3ba1fd,#4906fc); box-shadow: 0 8px 20px rgba(12,84,253,.25); }
    .setup-step strong { display: block; font-size: 10px; }
    .setup-step small { display: block; margin-top: 2px; color: #65709e; font-size: 7px; }
    .setup-step-arrow { color: #58638e; font-size: 13px; }
    .setup-detail {
      position: relative;
      min-height: 505px;
      padding: 32px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 23px;
      background: linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
      box-shadow: inset 0 1px rgba(255,255,255,.07);
      overflow: hidden;
    }
    .setup-detail::before { position: absolute; top: -120px; right: -100px; width: 320px; height: 320px; border: 1px solid rgba(59,161,253,.14); border-radius: 50%; content: ""; box-shadow: 0 0 0 45px rgba(59,161,253,.02); }
    .setup-detail-content { position: relative; z-index: 2; }
    .setup-detail-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .setup-detail-badge { padding: 6px 9px; border: 1px solid rgba(59,161,253,.18); border-radius: 999px; color: #8bd8ff; background: rgba(59,161,253,.07); font-size: 7px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
    .setup-detail-counter { color: #5f6a98; font-size: 8px; font-weight: 850; }
    .setup-detail h3 { margin: 24px 0 8px; font-size: 29px; letter-spacing: -.045em; }
    .setup-detail-text { max-width: 670px; margin: 0; color: #a5afd2; font-size: 12px; line-height: 1.7; }
    .setup-deliverables { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; margin-top: 23px; }
    .setup-deliverable { display: flex; align-items: center; gap: 9px; min-height: 48px; padding: 10px 11px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; color: #c0c8e3; background: rgba(255,255,255,.035); font-size: 8px; }
    .setup-deliverable i { display: grid; place-items: center; width: 21px; height: 21px; flex: 0 0 auto; border-radius: 50%; color: #64e2b9; background: rgba(50,213,157,.1); font-style: normal; font-size: 8px; font-weight: 900; }
    .payment-logic { position: relative; z-index: 2; margin-top: 25px; padding: 17px; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: rgba(3,4,37,.38); }
    .payment-logic-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
    .payment-logic-head strong { font-size: 10px; }
    .payment-logic-head span { color: #72e5bd; font-size: 7px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
    .payment-timeline { position: relative; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
    .payment-timeline::before { position: absolute; top: 11px; right: 14%; left: 14%; height: 1px; content: ""; background: linear-gradient(90deg,#8f5dfb,#3ba1fd,#32d59d); }
    .payment-event { position: relative; z-index: 2; text-align: center; }
    .payment-event i { display: grid; place-items: center; width: 23px; height: 23px; margin: 0 auto 7px; border: 3px solid #0a0b43; border-radius: 50%; color: #fff; background: #5961fc; box-shadow: 0 0 12px rgba(89,97,252,.5); font-style: normal; font-size: 6px; font-weight: 900; }
    .payment-event:nth-child(2) i { background: #3ba1fd; }.payment-event:nth-child(3) i { background: #32d59d; }
    .payment-event b { display: block; font-size: 8px; }
    .payment-event small { display: block; margin-top: 2px; color: #69749e; font-size: 6px; line-height: 1.4; }

    .method-section { background: #fff; }
    .method-track { position: relative; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin-top: 45px; }
    .method-track::before { position: absolute; top: 50%; right: 8%; left: 8%; height: 1px; content: ""; background: linear-gradient(90deg,transparent,rgba(12,84,253,.2),transparent); }
    .method-card { position: relative; z-index: 2; min-height: 225px; padding: 22px; border: 1px solid rgba(4,4,47,.09); border-radius: 20px; background: #fff; box-shadow: 0 15px 40px rgba(4,4,47,.055); overflow: hidden; }
    .method-number { display: flex; align-items: center; justify-content: space-between; }
    .method-number strong { color: transparent; background: linear-gradient(90deg,#0c54fd,#8f5dfb); -webkit-background-clip: text; background-clip: text; font-size: 28px; letter-spacing: -.05em; }
    .method-number i { width: 31px; height: 1px; background: linear-gradient(90deg,#3ba1fd,transparent); }
    .method-card h3 { margin: 29px 0 7px; color: #101039; font-size: 15px; }
    .method-card p { margin: 0; color: #777486; font-size: 10px; line-height: 1.7; }
    .method-card small { display: inline-flex; margin-top: 16px; color: #0c54fd; font-size: 7px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

    .calculator-section { color: #fff; background: radial-gradient(circle at 12% 10%,rgba(143,93,251,.13),transparent 28%),linear-gradient(145deg,#05052f,#090b43); }
    .calculator-section .section-heading h2 { color: #fff; }
    .calculator-section .section-heading p { color: #9ba5cc; }
    .calculator-section .section-kicker { color: #8bd8ff; }
    .calculator-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 16px; margin-top: 42px; }
    .calculator-form,.calculator-result { padding: 27px; border: 1px solid rgba(255,255,255,.09); border-radius: 23px; background: rgba(255,255,255,.045); box-shadow: inset 0 1px rgba(255,255,255,.055); }
    .calculator-form h3,.calculator-result h3 { margin: 0 0 5px; font-size: 16px; }
    .calculator-form > p,.calculator-result > p { margin: 0 0 20px; color: #7e89b2; font-size: 9px; }
    .calc-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
    .calc-field { display: grid; gap: 6px; }
    .calc-field label { color: #aeb8d7; font-size: 8px; font-weight: 820; }
    .calc-input-wrap { display: flex; align-items: center; height: 48px; padding: 0 13px; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; background: rgba(255,255,255,.045); transition: .2s; }
    .calc-input-wrap:focus-within { border-color: rgba(59,161,253,.55); box-shadow: 0 0 0 4px rgba(59,161,253,.07); }
    .calc-input-wrap span { color: #65719c; font-size: 9px; font-weight: 800; }
    .calc-input-wrap input { width: 100%; border: 0; outline: 0; color: #fff; background: transparent; font-size: 13px; font-weight: 820; }
    .calc-input-wrap input[type=number]::-webkit-inner-spin-button { opacity: .35; }
    .calc-note { margin-top: 14px; color: #616d97; font-size: 7px; line-height: 1.55; }
    .calculator-result { position: relative; background: radial-gradient(circle at 85% 15%,rgba(59,161,253,.17),transparent 30%),linear-gradient(145deg,rgba(12,84,253,.11),rgba(73,6,252,.07)); overflow: hidden; }
    .calc-main-value { margin-top: 25px; color: #fff; font-size: clamp(40px,5vw,65px); font-weight: 900; line-height: 1; letter-spacing: -.06em; }
    .calc-main-label { margin-top: 7px; color: #a8b2d4; font-size: 9px; line-height: 1.5; }
    .calc-mini-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; margin-top: 24px; }
    .calc-mini { padding: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.035); }
    .calc-mini strong { display: block; font-size: 17px; }.calc-mini span { display: block; margin-top: 3px; color: #6f7aa5; font-size: 7px; }
    .calc-disclaimer { margin-top: 17px; padding: 12px; border-left: 2px solid #3ba1fd; color: #7985ae; background: rgba(59,161,253,.045); font-size: 7px; line-height: 1.55; }

    .commercial-faq { background: #fbfcff; }
    .commercial-faq .faq-grid { grid-template-columns: .72fr 1.28fr; }
    .commercial-faq .faq-question { min-height: 76px; font-size: 14px; }
    .commercial-faq .faq-answer p { font-size: 11px; }
    .final-commercial-cta {
      position: relative;
      padding: 120px 0;
      color: #fff;
      background: radial-gradient(circle at 50% 0%,rgba(59,161,253,.17),transparent 35%),linear-gradient(145deg,#030329,#090b43);
      text-align: center;
      overflow: hidden;
    }
    .final-commercial-cta::before { position: absolute; top: 50%; left: 50%; width: 780px; height: 780px; border: 1px solid rgba(59,161,253,.08); border-radius: 50%; content: ""; transform: translate(-50%,-50%); box-shadow: 0 0 0 80px rgba(143,93,251,.018); }
    .final-commercial-cta .cta-inner { position: relative; z-index: 2; max-width: 910px; }
    .final-commercial-cta h2 { margin: 0; font-size: clamp(44px,6vw,76px); line-height: 1; letter-spacing: -.06em; }
    .final-commercial-cta p { max-width: 690px; margin: 22px auto 0; color: #a3aed1; font-size: 15px; line-height: 1.7; }
    .final-commercial-cta .hero-actions { justify-content: center; margin-top: 29px; }
    .final-commercial-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.17); background: rgba(255,255,255,.05); }
    .cta-assurance { display: flex; justify-content: center; gap: 20px; margin-top: 23px; color: #66729d; font-size: 8px; font-weight: 760; flex-wrap: wrap; }
    .cta-assurance span { display: flex; align-items: center; gap: 6px; }
    .cta-assurance i { width: 5px; height: 5px; border-radius: 50%; background: #65dca7; }
    .robot-guide.commercial-compact.visible { right: -4px; transform: translate3d(0,0,0) scale(.8); }

    @media (max-width: 1120px) {
      .commercial-hero-grid { grid-template-columns: 1fr; }
      .commercial-hero-copy { max-width: 880px; }
      .operation-orbit { min-height: 500px; }
      .problem-layout { grid-template-columns: 1fr; gap: 45px; }
      .problem-sticky { position: static; }
      .benefit-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
      .commercial-plans { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .commercial-plan,.commercial-plan:nth-child(4),.commercial-plan:nth-child(5) { grid-column: auto; }
      .commercial-plan:last-child { grid-column: 1 / -1; width: calc(50% - 7px); justify-self: center; }
      .implementation-intro { grid-template-columns: 1fr; }
      .setup-experience { grid-template-columns: 1fr; }
      .setup-nav { grid-template-columns: repeat(3,minmax(0,1fr)); }
      .setup-step { grid-template-columns: 34px 1fr; }.setup-step-arrow { display: none; }
    }
    @media (max-width: 820px) {
      .commercial-v2 .commercial-section { padding: 86px 0; }
      .commercial-hero { min-height: auto; padding: 82px 0 70px; }
      .commercial-hero-grid { gap: 45px; }
      .operation-orbit { min-height: 490px; }
      .benefit-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .setup-nav { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .method-track { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .calculator-layout { grid-template-columns: 1fr; }
      .commercial-faq .faq-grid { grid-template-columns: 1fr; }
      .commercial-faq .faq-grid .section-heading { position: static; }
    }
    @media (max-width: 620px) {
      .commercial-hero h1 { font-size: 47px; }
      .commercial-hero-lead { font-size: 14px; }
      .commercial-hero-actions .btn { width: 100%; }
      .commercial-proof { display: grid; gap: 9px; }
      .operation-orbit { min-height: 570px; }
      .operation-core { width: 120px; height: 120px; }
      .operation-node { min-width: 123px; padding: 9px; }
      .operation-node:nth-of-type(2) { top: 42px; left: 10px; }
      .operation-node:nth-of-type(3) { top: 65px; right: 8px; }
      .operation-node:nth-of-type(4) { top: 225px; right: 7px; }
      .operation-node:nth-of-type(5) { right: 11px; bottom: 60px; }
      .operation-node:nth-of-type(6) { bottom: 56px; left: 9px; }
      .operation-node:nth-of-type(7) { top: 236px; left: 6px; }
      .problem-card { grid-template-columns: 42px 1fr; }.problem-card span:last-child { display: none; }
      .benefit-grid,.commercial-plans,.method-track,.calc-grid { grid-template-columns: 1fr; }
      .commercial-plan:last-child { grid-column: auto; width: auto; }
      .commercial-plan { min-height: auto; }
      .setup-nav { grid-template-columns: 1fr; }
      .setup-detail { padding: 22px; }
      .setup-deliverables { grid-template-columns: 1fr; }
      .payment-event small { font-size: 5px; }
      .comparison-head { align-items: flex-start; flex-direction: column; }
      .calc-mini-grid { grid-template-columns: 1fr; }
      .final-commercial-cta { padding: 92px 0; }
    }

    /* ===== Evolução neural 2026: núcleo demonstrativo e superfícies vivas ===== */
    .commercial-hero { min-height: 930px; }
    .commercial-hero-grid { grid-template-columns: .88fr 1.12fr; gap: 38px; }
    .commercial-hero h1 { font-size: clamp(48px,5.55vw,76px); }
    .operation-orbit {
      min-height: 690px;
      border-color: rgba(103,197,253,.16);
      background:
        radial-gradient(circle at 50% 33%,rgba(47,111,255,.14),transparent 31%),
        linear-gradient(145deg,rgba(255,255,255,.068),rgba(255,255,255,.014));
      box-shadow: inset 0 1px rgba(255,255,255,.11),0 42px 110px rgba(0,0,30,.48),0 0 80px rgba(73,6,252,.08);
    }
    .operation-orbit::before,.operation-orbit::after { top: 34%; z-index: 1; pointer-events: none; }
    .operation-orbit::before { width: 390px; height: 390px; box-shadow: 0 0 0 54px rgba(143,93,251,.023),0 0 80px rgba(59,161,253,.055); }
    .operation-orbit::after { width: 255px; height: 255px; }
    .orbit-neural-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; }
    .orbit-instruction {
      position: absolute;
      top: 17px;
      left: 50%;
      z-index: 8;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 10px;
      transform: translateX(-50%);
      border: 1px solid rgba(103,197,253,.18);
      border-radius: 999px;
      color: #95a4d4;
      background: rgba(5,6,43,.72);
      backdrop-filter: blur(14px);
      font-size: 6px;
      font-weight: 850;
      letter-spacing: .12em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .orbit-instruction i { width: 6px; height: 6px; border-radius: 50%; background: #52cfff; box-shadow: 0 0 12px #3ba1fd; }
    .operation-core {
      top: 34%;
      width: 152px;
      height: 152px;
      padding: 0;
      border: 1px solid rgba(255,255,255,.2);
      font: inherit;
      cursor: pointer;
      appearance: none;
    }
    .operation-core::before {
      position: absolute;
      inset: -22px;
      content: "";
      border: 1px solid rgba(91,174,255,.13);
      border-radius: 50%;
      animation: neural-core-wave 2.8s ease-out infinite;
    }
    .operation-core:focus-visible { outline: 3px solid rgba(103,228,255,.8); outline-offset: 7px; }
    @keyframes neural-core-wave { 0% { opacity:.75; transform:scale(.78); } 75%,100% { opacity:0; transform:scale(1.26); } }
    .operation-node {
      z-index: 7;
      top: auto;
      right: auto;
      bottom: auto;
      left: auto;
      min-width: 143px;
      padding: 10px 12px;
      border: 1px solid rgba(255,255,255,.11);
      color: #fff;
      font: inherit;
      text-align: left;
      cursor: pointer;
      appearance: none;
      animation: none;
      transition: border-color .24s ease,background .24s ease,box-shadow .24s ease,transform .24s ease,filter .24s ease;
    }
    .operation-node:hover,.operation-node:focus-visible,.operation-node.active {
      border-color: rgba(103,210,255,.48);
      background: linear-gradient(115deg,rgba(12,84,253,.38),rgba(73,6,252,.3));
      box-shadow: 0 0 0 4px rgba(59,161,253,.055),0 15px 45px rgba(12,84,253,.3),inset 0 1px rgba(255,255,255,.13);
      filter: brightness(1.12);
      transform: translateY(-3px);
    }
    .operation-node:focus-visible { outline: 2px solid #75d8ff; outline-offset: 3px; }
    .operation-node i { animation: neural-node-icon 3.2s ease-in-out infinite; }
    .operation-node.active i { color: #fff; background: linear-gradient(135deg,#36c6ff,#4b16ff); box-shadow: 0 0 18px rgba(59,161,253,.48); }
    @keyframes neural-node-icon { 50% { filter:brightness(1.24);box-shadow:0 0 15px rgba(59,161,253,.23); } }
    .operation-node[data-experience="whatsapp"] { top: 64px; left: 24px; }
    .operation-node[data-experience="ai"] { top: 65px; right: 25px; animation-delay: -.8s; }
    .operation-node[data-experience="crm"] { top: 207px; right: 5px; animation-delay: -1.7s; }
    .operation-node[data-experience="store"] { top: 354px; right: 30px; bottom: auto; animation-delay: -2.4s; }
    .operation-node[data-experience="payment"] { top: 365px; bottom: auto; left: 39px; animation-delay: -3.1s; }
    .operation-node[data-experience="agenda"] { top: 214px; left: 3px; animation-delay: -3.8s; }
    .hero-simulation {
      position: absolute;
      right: 17px;
      bottom: 18px;
      left: 17px;
      z-index: 9;
      min-height: 193px;
      border: 1px solid rgba(103,197,253,.16);
      border-radius: 19px;
      color: #fff;
      background: linear-gradient(145deg,rgba(5,6,44,.96),rgba(10,12,67,.93));
      box-shadow: 0 26px 60px rgba(0,0,30,.36),inset 0 1px rgba(255,255,255,.07);
      backdrop-filter: blur(19px);
      overflow: hidden;
    }
    .hero-simulation::before { position: absolute; top: -70px; right: -35px; width: 210px; height: 210px; content: ""; border-radius: 50%; background: radial-gradient(circle,rgba(59,161,253,.13),transparent 66%); pointer-events: none; }
    .hero-simulation.switching .simulation-content { animation: simulation-switch .34s ease both; }
    @keyframes simulation-switch { 0% { opacity:.15; transform:translateY(8px) scale(.985); } 100% { opacity:1; transform:none; } }
    .simulation-window-bar { position: relative; z-index: 2; display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 9px; min-height: 39px; padding: 0 13px; border-bottom: 1px solid rgba(255,255,255,.075); background: rgba(255,255,255,.025); }
    .simulation-window-bar > span { display: flex; gap: 4px; }.simulation-window-bar > span i { width: 5px; height: 5px; border-radius: 50%; background: #ff6c83; }.simulation-window-bar > span i:nth-child(2) { background:#ffd56a; }.simulation-window-bar > span i:nth-child(3) { background:#62ddb0; }
    .simulation-window-bar strong { color: #9ba8d0; font-size: 7px; font-weight: 820; letter-spacing: .03em; }
    .simulation-window-bar small { display:flex;align-items:center;gap:5px;color:#68e0b5;font-size:6px;font-weight:850;letter-spacing:.08em;text-transform:uppercase; }.simulation-window-bar small i { width:5px;height:5px;border-radius:50%;background:#68e0b5;box-shadow:0 0 9px #68e0b5; }
    .simulation-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.45fr .72fr; gap: 10px; padding: 11px; }
    .sim-chat,.sim-insight,.sim-dashboard,.sim-module-card { border: 1px solid rgba(255,255,255,.065); border-radius: 12px; background: rgba(255,255,255,.027); }
    .sim-chat { padding: 9px; }
    .sim-contact { display: grid; grid-template-columns: 27px 1fr auto; align-items:center;gap:7px;margin-bottom:7px; }
    .sim-contact > span { display:grid;place-items:center;width:27px;height:27px;border-radius:9px;color:#fff;background:linear-gradient(135deg,#3ba1fd,#4906fc);font-size:7px;font-weight:900; }
    .sim-contact b { display:block;font-size:7px; }.sim-contact small { display:block;margin-top:1px;color:#69749c;font-size:5px; }.sim-contact > i { padding:4px 6px;border-radius:999px;color:#62e3b5;background:rgba(50,213,157,.08);font-style:normal;font-size:5px;font-weight:850;text-transform:uppercase; }
    .sim-message { max-width: 91%; margin-top: 6px; padding: 7px 8px; border-radius: 9px; font-size: 6px; line-height: 1.45; }
    .sim-message.customer { color:#b9c2df;background:rgba(255,255,255,.055); }.sim-message.customer em { display:block;margin-top:4px;color:#8390b6;font-style:normal; }
    .sim-message.ai { margin-left:auto;color:#e8f1ff;background:linear-gradient(135deg,rgba(12,84,253,.53),rgba(73,6,252,.42)); }
    .sim-audio { display:flex;align-items:center;gap:6px; }.sim-audio > i { display:grid;place-items:center;width:18px;height:18px;border-radius:50%;color:#fff;background:#6d3cff;font-style:normal;font-size:7px; }.sim-audio b { height:8px;flex:1;background:repeating-linear-gradient(90deg,#a4acc8 0 2px,transparent 2px 5px);mask-image:linear-gradient(180deg,transparent,#000 35%,#000 65%,transparent); }.sim-audio small { color:#6b759c;font-size:5px; }
    .sim-insight { padding:10px; }.sim-insight > span { display:block;color:#77dcff;font-size:5px;font-weight:850;text-transform:uppercase; }.sim-insight > strong { display:block;margin:7px 0 8px;color:#fff;font-size:25px;letter-spacing:-.05em; }.sim-insight > div { display:flex;justify-content:space-between;gap:8px;padding:6px 0;border-top:1px solid rgba(255,255,255,.06);font-size:5px; }.sim-insight small { color:#69749c; }.sim-insight b { color:#dce7ff; }
    .sim-dashboard { grid-column:1/-1;padding:10px; }.sim-metrics { display:grid;grid-template-columns:repeat(3,1fr);gap:7px; }.sim-metric {padding:8px;border:1px solid rgba(255,255,255,.055);border-radius:9px;background:rgba(255,255,255,.025);}.sim-metric span{display:block;color:#66729d;font-size:5px;text-transform:uppercase;}.sim-metric strong{display:block;margin-top:3px;font-size:14px;}.sim-funnel{display:grid;grid-template-columns:1.5fr 1fr .65fr;gap:5px;margin-top:9px;}.sim-funnel span{padding:6px;border-radius:7px;color:#dce8ff;background:rgba(59,161,253,.13);font-size:5px;text-align:center;}.sim-funnel span:nth-child(2){background:rgba(89,97,252,.16)}.sim-funnel span:nth-child(3){background:rgba(50,213,157,.14)}
    .sim-module-grid { grid-column:1/-1;display:grid;grid-template-columns:1.12fr .88fr;gap:9px; }.sim-module-card{padding:10px;}.sim-module-card h4{margin:0 0 7px;font-size:8px;}.sim-module-card p{margin:0;color:#7682aa;font-size:6px;line-height:1.45;}.sim-row{display:flex;align-items:center;justify-content:space-between;gap:8px;padding:6px 0;border-top:1px solid rgba(255,255,255,.055);font-size:5px;}.sim-row:first-of-type{margin-top:7px}.sim-row span{color:#6f7ba4}.sim-row b{color:#dce8ff}.sim-ok{color:#65dfb2!important}.sim-wave{height:34px;margin:8px 0;border-radius:8px;background:linear-gradient(90deg,rgba(73,6,252,.18),rgba(59,161,253,.14)),repeating-linear-gradient(90deg,transparent 0 5px,rgba(124,212,255,.72) 5px 7px,transparent 7px 11px);mask-image:linear-gradient(180deg,transparent 5%,#000 40%,#000 60%,transparent 95%);animation:wave-shift 1.5s linear infinite}@keyframes wave-shift{to{background-position:0,44px 0}}
    .sim-calendar{display:grid;grid-template-columns:repeat(5,1fr);gap:5px;margin-top:8px}.sim-calendar span{display:grid;place-items:center;min-height:27px;border:1px solid rgba(255,255,255,.055);border-radius:7px;color:#7783aa;font-size:6px}.sim-calendar span.active{color:#fff;background:linear-gradient(135deg,#3ba1fd,#4906fc);box-shadow:0 0 14px rgba(59,161,253,.25)}
    .operation-status { right: 22px; bottom: 218px; z-index: 10; }.operation-status b { color:#dce8ff;font-weight:850; }

    .neural-dark-surface { position: relative; isolation: isolate; overflow: hidden; }
    .section-neural-canvas { position:absolute;inset:0;z-index:0;width:100%;height:100%;pointer-events:none;opacity:.92; }
    .neural-dark-surface > .container { position:relative;z-index:2; }
    .final-commercial-cta.neural-dark-surface::before { z-index:1; }
    .site-footer.neural-dark-surface .footer-grid,.site-footer.neural-dark-surface .footer-bottom { position:relative;z-index:2; }

    .robot-character { text-decoration:none; }
    .robot-chest.whatsapp-chest { border-radius:50%;border-color:rgba(255,255,255,.55);background:linear-gradient(145deg,#5eef94,#18b95d 58%,#079343)!important;box-shadow:0 7px 21px rgba(20,191,92,.44),inset 0 1px rgba(255,255,255,.43); }
    .robot-chest.whatsapp-chest::before { display:none; }
    .whatsapp-logo { position:relative;display:grid;place-items:center;width:28px;height:28px;border:2px solid #fff;border-radius:50%;color:#fff;box-shadow:inset 0 0 0 1px rgba(255,255,255,.12); }
    .whatsapp-logo::after { position:absolute;bottom:-3px;left:1px;width:7px;height:7px;content:"";border-left:2px solid #fff;transform:rotate(-28deg); }
    .whatsapp-logo i { position:relative;width:15px;height:8px;transform:rotate(-42deg);border:3px solid #fff;border-top:0;border-radius:0 0 12px 12px;font-size:0;line-height:0; }
    .whatsapp-logo i::before,.whatsapp-logo i::after { position:absolute;top:-3px;width:6px;height:7px;content:"";border-radius:3px;background:#fff; }
    .whatsapp-logo i::before { left:-5px;transform:rotate(13deg); }.whatsapp-logo i::after { right:-5px;transform:rotate(-13deg); }
    .robot-character:hover .whatsapp-chest,.robot-character:focus-visible .whatsapp-chest { filter:brightness(1.13);box-shadow:0 0 0 6px rgba(37,211,102,.11),0 8px 27px rgba(20,191,92,.55); }

    @media (max-width: 1120px) {
      .commercial-hero { min-height:auto; }
      .commercial-hero-grid { grid-template-columns:1fr;gap:52px; }
      .commercial-hero-copy { max-width:850px; }
      .operation-orbit { min-height:690px; }
    }
    @media (max-width: 820px) {
      .commercial-hero { padding-top:82px; }
      .operation-orbit { min-height:690px; }
      .operation-status { bottom:218px; }
    }
    @media (max-width: 620px) {
      .commercial-hero h1 { font-size:46px; }
      .operation-orbit { min-height:820px;border-radius:25px; }
      .operation-orbit::before { top:27%;width:225px;height:225px; }.operation-orbit::after { top:27%;width:150px;height:150px; }
      .operation-core { top:27%;width:108px;height:108px; }.operation-core strong{font-size:13px}.operation-core small{font-size:5px}
      .orbit-instruction { top:13px;font-size:5px; }
      .operation-node { width:112px;min-width:112px;padding:7px;gap:6px;animation:none; }.operation-node i{width:25px;height:25px;font-size:7px}.operation-node b{font-size:7px}.operation-node small{font-size:5px}
      .operation-node[data-experience="whatsapp"] { top:55px;left:8px; }
      .operation-node[data-experience="ai"] { top:55px;right:8px; }
      .operation-node[data-experience="agenda"] { top:150px;left:5px; }
      .operation-node[data-experience="crm"] { top:150px;right:5px; }
      .operation-node[data-experience="payment"] { top:275px;left:9px; }
      .operation-node[data-experience="store"] { top:275px;right:9px; }
      .hero-simulation { top:355px;right:10px;bottom:10px;left:10px;min-height:0; }
      .simulation-window-bar { grid-template-columns:32px 1fr auto;padding:0 9px; }.simulation-window-bar strong{font-size:6px}.simulation-window-bar small{font-size:5px}
      .simulation-content { grid-template-columns:1fr;padding:9px; }.sim-insight{display:grid;grid-template-columns:1fr auto;align-items:center;column-gap:8px}.sim-insight>strong{margin:2px 0}.sim-insight>div{grid-column:1/-1}.sim-module-grid{grid-template-columns:1fr}.sim-metrics{grid-template-columns:1fr 1fr}.sim-metric:last-child{grid-column:1/-1}
      .operation-status { right:auto;bottom:473px;left:50%;transform:translateX(-50%);font-size:5px;white-space:nowrap; }
    }
  