
    @font-face {
      font-family: "Manrope";
      font-style: normal;
      font-weight: 400 800;
      font-display: swap;
      src: url("./fonts/manrope-latin.woff2") format("woff2");
    }

    :root {
      color-scheme: light;
      --white: #ffffff;
      --ink: #061326;
      --navy: #063b8d;
      --blue: #007bff;
      --cyan: #00d0fa;
      --muted: #667085;
      --line: #d2d3d5;
      --wash: #f5faff;
      --shell: min(1440px, calc(100% - 72px));
      --shadow: 0 24px 80px rgba(0, 123, 255, 0.12);
      --header-h: 68px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--header-h);
      overflow-x: clip;
    }

    body {
      margin: 0;
      width: 100%;
      overflow-x: clip;
      font-family: Manrope, Arial, sans-serif;
      color: var(--ink);
      background: var(--white);
      font-size: 15px;
      line-height: 1.65;
      letter-spacing: 0;
    }

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

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

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    .focusable:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible,
    summary:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 4px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(221, 229, 242, 0.8);
    }

    .nav {
      position: relative;
      width: var(--shell);
      margin: 0 auto;
      min-height: 68px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 20px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      font-weight: 700;
      color: var(--navy);
    }

    .brand-logo {
      width: 118px;
      height: auto;
    }

    .nav-links {
      position: absolute;
      left: 35%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 22px;
      color: #566276;
      font-size: 0.76rem;
      font-weight: 600;
    }

    .nav-links a:hover {
      color: var(--blue);
    }

    .nav-toggle {
      display: none;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-left: auto;
    }

    .panel-login {
      min-height: 38px;
      padding: 0 15px;
      border: 1px solid var(--line);
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--navy);
      background: var(--wash);
      font-size: 0.76rem;
      font-weight: 700;
      white-space: nowrap;
      transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
    }

    .panel-login svg {
      width: 17px;
      height: 17px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .panel-login:hover {
      color: var(--blue);
      border-color: rgba(0, 123, 255, 0.32);
      background: #ffffff;
      transform: translateY(-1px);
    }

    .button {
      border: 0;
      border-radius: 999px;
      min-height: 38px;
      padding: 0 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      font-size: 0.78rem;
      font-weight: 750;
      white-space: nowrap;
    }

    .button-primary {
      color: #ffffff;
      background: var(--blue);
      box-shadow: 0 14px 34px rgba(0, 123, 255, 0.18);
    }

    .button-secondary {
      color: var(--navy);
      background: var(--wash);
      border: 1px solid var(--line);
    }

    .icon {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .shell,
    .hero-inner,
    .footer-grid {
      width: var(--shell);
      margin-left: auto;
      margin-right: auto;
    }

    .hero {
      min-height: calc(100vh - var(--header-h));
      min-height: calc(100svh - var(--header-h));
      padding: clamp(44px, 6.5vh, 76px) 0;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
      gap: clamp(36px, 5vw, 80px);
      align-items: center;
    }

    .hero-copy {
      max-width: 720px;
      align-self: center;
    }

    .eyebrow,
    .label {
      margin: 0 0 14px;
      color: var(--blue);
      font-size: 0.7rem;
      line-height: 1.2;
      font-weight: 800;
      text-transform: uppercase;
    }

    .eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--cyan);
      display: inline-block;
      margin-right: 9px;
      vertical-align: 1px;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 760px;
      margin-bottom: 16px;
      color: var(--ink);
      font-size: clamp(2.15rem, 5vw, 4.45rem);
      line-height: 0.98;
      letter-spacing: 0;
      font-weight: 800;
    }

    .hero-title-emphasis {
      color: var(--blue);
      font-weight: 800;
    }

    .hero-title-plain {
      color: #fff;
      font-weight: 800;
    }

    .hero-title-emphasis.hero-title-action {
      color: var(--ink);
      background: linear-gradient(90deg, rgba(0, 208, 250, 0.5), rgba(0, 123, 255, 0.24)) 0 88% / 100% 0.18em no-repeat;
    }

    .hero-title-emphasis.hero-title-channel {
      color: transparent;
      background: linear-gradient(90deg, var(--blue), #064fb2 48%, var(--cyan));
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero-mobile-break {
      display: none;
    }

    .hero-subtitle {
      max-width: 620px;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.62;
      margin-bottom: 18px;
    }

    .trust-list {
      max-width: 650px;
      margin-top: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .trust-list span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      padding: 6px 10px;
      background: rgba(255, 255, 255, 0.58);
      border: 1px solid rgba(0, 123, 255, 0.16);
      color: #17406f;
      font-size: 0.68rem;
      line-height: 1.15;
      font-weight: 700;
      box-shadow: none;
    }

    .trust-list span::before {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 999px;
      background: var(--cyan);
      opacity: 0.9;
    }

    .hero-media {
      position: relative;
      width: 100%;
      min-height: clamp(420px, 58vh, 640px);
      border-radius: 20px;
      overflow: hidden;
      background: radial-gradient(circle at 22% 0%, rgba(0, 208, 250, 0.18), transparent 32%), linear-gradient(135deg, #063b8d 0%, #05080d 58%, #007bff 130%);
      box-shadow: var(--shadow);
    }

    .hero-media-grid {
      position: absolute;
      inset: 0;
      opacity: 0.24;
      background-image: linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
      background-size: 42px 42px;
    }

    .hero-video-bar {
      position: absolute;
      left: 34px;
      right: 34px;
      top: 30px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .hero-video-bar span {
      min-height: 78px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.84);
      display: grid;
      place-items: center;
      padding: 12px;
      text-align: center;
      font-size: 0.72rem;
      font-weight: 800;
      line-height: 1.3;
    }

    .prompt-overlay {
      position: absolute;
      left: 50%;
      top: 50%;
      width: min(680px, calc(100% - 42px));
      transform: translate(-50%, -38%);
      border-radius: 22px;
      padding: 12px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
    }

    .prompt-box {
      min-height: 70px;
      border: 1px solid var(--line);
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      color: var(--navy);
    }

    .prompt-icon {
      width: 34px;
      height: 34px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--blue);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 800;
    }

    .prompt-box strong {
      display: block;
      font-size: 0.88rem;
      line-height: 1.35;
    }

    .prompt-box small {
      display: block;
      color: var(--muted);
      font-size: 0.7rem;
      margin-top: 3px;
    }

    .media-caption {
      position: absolute;
      left: 34px;
      bottom: 30px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.76rem;
    }

    main {
      background-color: var(--white);
      background-image: radial-gradient(circle at 82% 18%, rgba(0, 208, 250, 0.12), transparent 28%), radial-gradient(circle at 14% 72%, rgba(0, 123, 255, 0.07), transparent 30%), linear-gradient(rgba(0, 123, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 208, 250, 0.04) 1px, transparent 1px);
      background-size: 100% 100%, 100% 100%, 72px 72px, 72px 72px;
    }

    main>section {
      position: relative;
      background: transparent;
    }

    .section {
      padding: clamp(64px, 9vh, 108px) 0;
      background: transparent;
    }

    .section.compact {
      padding-top: clamp(48px, 7vh, 76px);
    }

    .section h2,
    .cta h2 {
      max-width: 820px;
      color: var(--ink);
      font-size: clamp(1.7rem, 3.2vw, 2.75rem);
      line-height: 1.08;
      letter-spacing: 0;
      margin-bottom: 14px;
    }

    .lead {
      max-width: 720px;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.75;
      margin-bottom: 36px;
    }

    .two-col {
      display: grid;
      grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
      gap: clamp(36px, 5vw, 88px);
      align-items: start;
    }

    .two-col.reverse {
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    }

    .bullet-list {
      display: grid;
      gap: 20px;
      padding-top: 22px;
    }

    .bullet-item {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 14px;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .bullet-dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 1px solid rgba(0, 123, 255, 0.18);
      display: grid;
      place-items: center;
      color: var(--blue);
      font-weight: 900;
      font-size: 0.7rem;
    }

    .bullet-item strong {
      display: block;
      color: var(--navy);
      font-size: 0.98rem;
      margin-bottom: 4px;
    }

    .dark-mock,
    .wide-mock,
    .mini-mock {
      border-radius: 18px;
      background: #05080d;
      color: #ffffff;
      border: 1px solid rgba(8, 27, 73, 0.12);
      box-shadow: var(--shadow);
    }

    .dark-mock {
      padding: 18px;
      min-height: 470px;
    }

    .mock-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 0.72rem;
    }

    .mock-dots {
      display: flex;
      gap: 6px;
    }

    .mock-dots i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan);
      opacity: 0.75;
    }

    .mock-chat {
      display: grid;
      gap: 12px;
    }

    .mock-bubble {
      max-width: 86%;
      border-radius: 15px;
      padding: 12px 14px;
      background: rgba(255, 255, 255, 0.09);
      color: rgba(255, 255, 255, 0.86);
      font-size: 0.8rem;
    }

    .mock-bubble.user {
      margin-left: auto;
      background: var(--blue);
      color: #ffffff;
    }

    .mock-card {
      margin-top: 20px;
      border-radius: 16px;
      padding: 16px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mock-card small {
      color: var(--cyan);
      text-transform: uppercase;
      font-size: 0.66rem;
      font-weight: 800;
    }

    .mock-card strong {
      display: block;
      margin: 8px 0 10px;
      font-size: 1rem;
    }

    .mock-lines {
      display: grid;
      gap: 8px;
    }

    .mock-lines i {
      display: block;
      height: 8px;
      border-radius: 99px;
      background: rgba(255, 255, 255, 0.18);
    }

    .ai-first-demo {
      position: sticky;
      top: calc(var(--header-h) + 24px);
      min-height: 520px;
      padding: 14px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.96)),
        radial-gradient(circle at 12% 10%, rgba(0, 208, 250, 0.14), transparent 26rem);
      color: var(--ink);
      border: 1px solid #dce8f5;
      box-shadow: 0 28px 80px rgba(8, 27, 73, 0.12);
    }

    .ai-first-demo::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(0, 208, 250, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 208, 250, 0.045) 1px, transparent 1px);
      background-size: 44px 44px;
      opacity: 0.55;
      animation: panel-grid-drift 18s linear infinite;
      pointer-events: none;
    }

    .ai-first-demo>* {
      position: relative;
      z-index: 1;
    }

    .ai-first-demo .mock-top {
      margin-bottom: 12px;
      color: #667085;
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .ai-first-demo .mock-dots i {
      background: #cbd8e8;
    }

    .ai-dashboard {
      height: 100%;
      min-height: 470px;
      display: grid;
      grid-template-columns: 112px 1fr;
      border-radius: 16px;
      overflow: hidden;
      background: #ffffff;
      border: 1px solid #dde5f2;
      box-shadow: 0 18px 52px rgba(8, 27, 73, 0.1);
      transform-origin: center;
      transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
    }

    .ai-first-demo:hover .ai-dashboard {
      transform: translateY(-4px);
      border-color: rgba(0, 208, 250, 0.34);
      box-shadow: 0 26px 66px rgba(8, 27, 73, 0.14);
    }

    .ai-sidebar {
      padding: 14px 12px;
      background: #fbfdff;
      border-right: 1px solid #dde5f2;
    }

    .ai-sidebar-brand {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 18px;
      color: var(--navy);
      font-size: 0.74rem;
      font-weight: 800;
    }

    .ai-sidebar-logo {
      width: 86px;
      height: auto;
    }

    .ai-sidebar nav {
      display: grid;
      gap: 8px;
    }

    .ai-sidebar span {
      display: flex;
      align-items: center;
      min-height: 30px;
      border-radius: 9px;
      padding: 0 9px;
      color: #667085;
      font-size: 0.64rem;
      font-weight: 800;
    }

    .ai-sidebar span.is-active {
      color: var(--blue);
      background: #e5fbff;
      box-shadow: inset 3px 0 0 var(--cyan);
    }

    .ai-panel-main {
      min-width: 0;
      padding: 14px;
    }

    .ai-panel-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .ai-panel-title small,
    .ai-widget small,
    .ai-approval small,
    .ai-log small {
      display: block;
      color: var(--blue);
      font-size: 0.64rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .ai-panel-title strong {
      display: block;
      color: var(--ink);
      font-size: 1.02rem;
      line-height: 1.25;
    }

    .ai-live-pill {
      border-radius: 999px;
      padding: 6px 10px;
      background: rgba(18, 185, 129, 0.12);
      color: #07865a;
      font-size: 0.66rem;
      font-weight: 800;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }

    .ai-live-pill::before {
      content: "";
      width: 6px;
      height: 6px;
      margin-right: 5px;
      border-radius: 50%;
      display: inline-block;
      background: #12b981;
      box-shadow: 0 0 0 rgba(18, 185, 129, 0.32);
      animation: status-pulse 1.8s ease-out infinite;
    }

    .ai-kpis {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 9px;
      margin-bottom: 10px;
    }

    .ai-kpi,
    .ai-widget,
    .ai-approval,
    .ai-log {
      border-radius: 13px;
      background: #fbfdff;
      border: 1px solid #dde5f2;
    }

    .ai-kpi {
      min-height: 74px;
      padding: 11px;
      color: #667085;
      font-size: 0.65rem;
      line-height: 1.35;
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .ai-kpi:hover,
    .ai-widget:hover,
    .ai-approval:hover,
    .ai-log:hover {
      transform: translateY(-2px);
      border-color: rgba(0, 208, 250, 0.28);
      box-shadow: 0 14px 32px rgba(8, 27, 73, 0.08);
    }

    .ai-kpi strong {
      display: block;
      color: var(--navy);
      font-size: 1.08rem;
      line-height: 1.1;
      margin-bottom: 7px;
    }

    .ai-panel-grid {
      display: grid;
      grid-template-columns: 1fr 0.82fr;
      gap: 10px;
    }

    .ai-widget,
    .ai-approval,
    .ai-log {
      padding: 12px;
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .ai-widget {
      min-height: 180px;
    }

    .ai-system-row {
      display: grid;
      grid-template-columns: 70px 1fr auto;
      gap: 10px;
      align-items: center;
      min-height: 34px;
      margin-top: 9px;
      color: #667085;
      font-size: 0.68rem;
    }

    .ai-system-row b {
      color: var(--navy);
    }

    .ai-meter {
      height: 7px;
      overflow: hidden;
      border-radius: 999px;
      background: #eaf6ff;
    }

    .ai-meter i {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--blue), var(--cyan));
      transform-origin: left;
      animation: meter-breathe 3.6s ease-in-out infinite;
    }

    .ai-system-row:nth-of-type(2) .ai-meter i {
      animation-delay: 0.35s;
    }

    .ai-system-row:nth-of-type(3) .ai-meter i {
      animation-delay: 0.7s;
    }

    .ai-system-row>span:not(.ai-meter),
    .ai-rule-status {
      border-radius: 999px;
      padding: 4px 7px;
      background: #e5fbff;
      color: var(--blue);
      font-size: 0.56rem;
      font-weight: 800;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .ai-approval {
      min-height: 180px;
    }

    .ai-rule {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      align-items: center;
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid #dde5f2;
      color: #667085;
      font-size: 0.7rem;
      line-height: 1.35;
    }

    .ai-rule strong {
      display: block;
      color: var(--navy);
      font-size: 0.76rem;
    }

    .ai-log {
      grid-column: 1 / -1;
    }

    .ai-log-row {
      display: grid;
      grid-template-columns: 74px 1fr 70px;
      gap: 10px;
      align-items: center;
      padding: 9px 0;
      border-top: 1px solid #dde5f2;
      color: #667085;
      font-size: 0.68rem;
    }

    .ai-log-row:first-of-type {
      margin-top: 8px;
    }

    .ai-log-row b {
      color: var(--navy);
    }

    .wide-mock {
      min-height: 430px;
      padding: 22px;
      background: linear-gradient(140deg, #063b8d, #05080d 68%);
    }

    .wide-board {
      height: 100%;
      min-height: 380px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 18px;
      display: grid;
      grid-template-columns: 0.75fr 1.25fr;
      gap: 16px;
    }

    .wide-sidebar,
    .wide-main {
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.08);
      padding: 14px;
    }

    .wide-line {
      height: 10px;
      border-radius: 99px;
      background: rgba(255, 255, 255, 0.18);
      margin-bottom: 12px;
    }

    .wide-card {
      border-radius: 14px;
      padding: 16px;
      margin-top: 16px;
      background: rgba(0, 208, 250, 0.12);
      border: 1px solid rgba(0, 208, 250, 0.18);
    }

    .pricing-block {
      display: grid;
      grid-template-columns: minmax(300px, 0.55fr) 1fr;
      gap: clamp(36px, 5vw, 88px);
      align-items: center;
      padding: 52px 0 30px;
    }

    .mini-mock {
      min-height: 265px;
      padding: 18px;
    }

    .mini-mock .mock-card {
      margin-top: 12px;
    }

    .related-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-top: 28px;
    }

    .related-card {
      min-height: 250px;
      border-radius: 18px;
      background: #05080d;
      color: #fff;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
    }

    .related-card::after {
      content: "";
      position: absolute;
      inset: auto -30px -60px auto;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(0, 208, 250, 0.16);
    }

    .related-card strong {
      font-size: 1.25rem;
      line-height: 1.2;
      position: relative;
      z-index: 1;
    }

    .related-card p {
      color: rgba(255, 255, 255, 0.68);
      font-size: 0.84rem;
      max-width: 420px;
      position: relative;
      z-index: 1;
    }

    .product-demo {
      padding-top: 0;
    }

    .adapt-highlight {
      min-height: min(clamp(520px, 68svh, 760px), 100svh);
      max-height: 100svh;
      padding: clamp(58px, 9svh, 104px) 0;
      overflow: hidden;
      color: #ffffff;
      background: #061326;
      display: flex;
      align-items: center;
    }

    .adapt-highlight::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("./adaptive-systems-bg-1600.jpg") center 45% / cover no-repeat;
      filter: saturate(0.92) contrast(1.04);
      transform: scale(1.02);
      pointer-events: none;
    }

    .adapt-highlight::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(6, 19, 38, 0.58), rgba(6, 19, 38, 0.7)),
        linear-gradient(90deg, rgba(6, 19, 38, 0.74), rgba(6, 19, 38, 0.46) 50%, rgba(6, 19, 38, 0.74));
      pointer-events: none;
    }

    .adapt-highlight-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: center;
    }

    .adapt-highlight .label {
      align-self: center;
      width: fit-content;
      margin: 0 0 clamp(26px, 4svh, 44px);
      color: rgba(255, 255, 255, 0.76);
      font-size: clamp(0.64rem, 0.8vw, 0.72rem);
      letter-spacing: 0.18em;
      line-height: 1.2;
    }

    .adapt-highlight h2 {
      width: 100%;
      max-width: 1160px;
      margin: 0 auto;
      color: #ffffff;
      font-size: clamp(2.15rem, 4.45vw, 4.15rem);
      line-height: 1.06;
      font-weight: 400;
      letter-spacing: 0;
      text-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
      display: grid;
      gap: clamp(18px, 4svh, 46px);
    }

    .adapt-highlight-line {
      display: block;
      max-width: 700px;
      opacity: 0;
      transform: translate3d(var(--adapt-enter-x, 0), 22px, 0);
      text-wrap: balance;
    }

    .adapt-highlight-line-start {
      justify-self: start;
      color: #ffffff;
      text-align: left;
      --adapt-enter-x: -28px;
    }

    .adapt-highlight-line-end {
      justify-self: end;
      color: #54e6ff;
      text-align: right;
      font-weight: 750;
      --adapt-enter-x: 28px;
      max-width: 760px;
      text-shadow: 0 22px 54px rgba(0, 0, 0, 0.42), 0 0 28px rgba(0, 208, 250, 0.24);
    }

    .adapt-highlight h2.is-visible .adapt-highlight-line-start {
      animation: adapt-line-in 720ms cubic-bezier(0.2, 0.9, 0.2, 1) 90ms both;
    }

    .adapt-highlight h2.is-visible .adapt-highlight-line-end {
      animation: adapt-line-in 720ms cubic-bezier(0.2, 0.9, 0.2, 1) 540ms both;
    }

    .adapt-highlight-copy {
      max-width: 760px;
      margin: clamp(28px, 5svh, 52px) auto 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: clamp(0.95rem, 1.2vw, 1.08rem);
      line-height: 1.6;
      text-wrap: balance;
      text-align: center;
    }

    .adapt-highlight-actions {
      margin-top: clamp(26px, 5svh, 42px);
      text-align: center;
    }

    .adapt-highlight .button-primary {
      min-width: 236px;
      min-height: 50px;
      background: var(--cyan);
      color: #063b8d;
      box-shadow: 0 18px 40px rgba(0, 208, 250, 0.24);
      text-transform: uppercase;
      font-size: 0.72rem;
      letter-spacing: 0.04em;
    }

    .adapt-highlight-credit {
      position: absolute;
      right: 18px;
      bottom: 12px;
      z-index: 2;
      color: rgba(255, 255, 255, 0.62);
      font-size: 0.64rem;
      line-height: 1.4;
    }

    .intent-highlight {
      min-height: min(clamp(540px, 72svh, 780px), 100svh);
      max-height: 100svh;
      padding: clamp(58px, 9svh, 104px) 0;
      overflow: hidden;
      color: #ffffff;
      background: #061326;
      display: flex;
      align-items: center;
    }

    .intent-highlight::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("./intent-era-bg-1600.jpg") center 45% / cover no-repeat;
      filter: saturate(0.92) contrast(1.05);
      transform: scale(1.02);
      pointer-events: none;
    }

    .intent-highlight::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(6, 19, 38, 0.54), rgba(6, 19, 38, 0.76)),
        linear-gradient(90deg, rgba(6, 19, 38, 0.82), rgba(6, 19, 38, 0.5) 54%, rgba(6, 19, 38, 0.8));
      pointer-events: none;
    }

    .intent-highlight-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: center;
    }

    .intent-highlight .label {
      align-self: center;
      width: fit-content;
      margin: 0 0 clamp(26px, 4svh, 44px);
      color: rgba(255, 255, 255, 0.76);
      font-size: clamp(0.64rem, 0.8vw, 0.72rem);
      letter-spacing: 0.18em;
      line-height: 1.2;
    }

    .intent-highlight h2 {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      color: #ffffff;
      font-size: clamp(2.05rem, 4.35vw, 4.05rem);
      line-height: 1.06;
      font-weight: 400;
      letter-spacing: 0;
      text-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
      display: grid;
      gap: clamp(18px, 4svh, 46px);
    }

    .intent-highlight-line {
      display: block;
      max-width: 760px;
      opacity: 0;
      transform: translate3d(var(--intent-enter-x, 0), 22px, 0);
      text-wrap: balance;
    }

    .intent-highlight-line-start {
      justify-self: start;
      color: #ffffff;
      text-align: left;
      --intent-enter-x: -28px;
    }

    .intent-highlight-line-end {
      justify-self: end;
      color: #54e6ff;
      text-align: right;
      font-weight: 760;
      --intent-enter-x: 28px;
      max-width: 760px;
      text-shadow: 0 22px 54px rgba(0, 0, 0, 0.42), 0 0 28px rgba(0, 208, 250, 0.24);
    }

    .intent-highlight h2.is-visible .intent-highlight-line-start {
      animation: intent-line-in 720ms cubic-bezier(0.2, 0.9, 0.2, 1) 90ms both;
    }

    .intent-highlight h2.is-visible .intent-highlight-line-end {
      animation: intent-line-in 720ms cubic-bezier(0.2, 0.9, 0.2, 1) 540ms both;
    }

    .intent-highlight-credit {
      position: absolute;
      right: 18px;
      bottom: 12px;
      z-index: 2;
      color: rgba(255, 255, 255, 0.62);
      font-size: 0.64rem;
      line-height: 1.4;
    }

    @keyframes adapt-line-in {
      from {
        opacity: 0;
        transform: translate3d(var(--adapt-enter-x, 0), 22px, 0);
      }

      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
    }

    @keyframes intent-line-in {
      from {
        opacity: 0;
        transform: translate3d(var(--intent-enter-x, 0), 22px, 0);
      }

      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
    }

    @keyframes panel-grid-drift {
      to {
        background-position: 44px 44px, 44px 44px;
      }
    }

    @keyframes status-pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(18, 185, 129, 0.34);
      }

      72% {
        box-shadow: 0 0 0 8px rgba(18, 185, 129, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(18, 185, 129, 0);
      }
    }

    @keyframes meter-breathe {

      0%,
      100% {
        filter: saturate(1);
        transform: scaleX(1);
      }

      50% {
        filter: saturate(1.28);
        transform: scaleX(0.94);
      }
    }

    @keyframes step-number-pulse {

      0%,
      100% {
        box-shadow: 0 14px 34px rgba(0, 124, 255, 0.22);
      }

      50% {
        box-shadow: 0 14px 34px rgba(0, 208, 250, 0.34);
      }
    }

    @keyframes row-slide-in {
      from {
        opacity: 0;
        transform: translateX(-8px);
      }

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

    @keyframes channel-float {

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

      50% {
        transform: translateY(-4px);
      }
    }

    @keyframes chart-grow {
      from {
        transform: scaleY(0.18);
      }

      to {
        transform: scaleY(1);
      }
    }

    @keyframes usage-fill {
      from {
        transform: scaleX(0.16);
      }

      to {
        transform: scaleX(1);
      }
    }

    @keyframes partnership-glow {

      0%,
      100% {
        background-position: center, 80% 20%;
      }

      50% {
        background-position: center, 40% 60%;
      }
    }

    @keyframes media-sheen {

      0%,
      45% {
        transform: translateX(-120%);
      }

      68%,
      100% {
        transform: translateX(120%);
      }
    }

    .integration-steps {
      background:
        radial-gradient(circle at 18% 12%, rgba(0, 208, 250, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .integration-header {
      max-width: 780px;
      margin: 0 auto clamp(38px, 5vw, 64px);
      text-align: center;
    }

    .integration-header .lead {
      margin-left: auto;
      margin-right: auto;
    }

    .integration-flow {
      display: grid;
      gap: clamp(22px, 3vw, 30px);
      position: relative;
    }

    .integration-flow::before {
      display: none;
    }

    .integration-step {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 0.98fr) minmax(330px, 0.78fr);
      gap: clamp(28px, 4.4vw, 58px);
      align-items: center;
      padding: clamp(24px, 3vw, 38px);
      border: 1px solid rgba(0, 124, 255, 0.13);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 24px 70px rgba(8, 24, 49, 0.08);
      overflow: hidden;
      transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
    }

    .integration-step:hover {
      transform: translateY(-5px);
      border-color: rgba(0, 208, 250, 0.34);
      box-shadow: 0 30px 78px rgba(8, 24, 49, 0.11);
    }

    .integration-step::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0, 208, 250, 0.08), transparent 28%);
      pointer-events: none;
      transform: translateX(-18%);
      opacity: 0;
      transition: opacity 420ms ease, transform 700ms ease;
    }

    .integration-step.is-visible::after,
    .integration-step:hover::after {
      opacity: 1;
      transform: translateX(0);
    }

    .integration-step-index,
    .integration-step-copy,
    .integration-visual {
      position: relative;
      z-index: 1;
    }

    .integration-step-head {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 18px;
      align-items: center;
      margin-bottom: 16px;
    }

    .integration-step-index {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 6px;
      border-radius: 999px;
      background: #eefaff;
      border: 1px solid rgba(0, 208, 250, 0.24);
    }

    .integration-step-index>span:first-child {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--blue);
      color: #ffffff;
      font-size: 0.78rem;
      font-weight: 900;
      box-shadow: 0 10px 24px rgba(0, 124, 255, 0.2);
      animation: step-number-pulse 3.8s ease-in-out infinite;
    }

    .integration-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #e6fbff;
      color: var(--cyan);
      border: 1px solid rgba(0, 208, 250, 0.22);
      transition: transform 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
    }

    .integration-step:hover .integration-icon {
      transform: rotate(-4deg) scale(1.06);
      background: #d9f8ff;
      box-shadow: 0 12px 28px rgba(0, 208, 250, 0.18);
    }

    .integration-icon svg {
      width: 19px;
      height: 19px;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .integration-step-copy {
      align-self: center;
      max-width: 680px;
    }

    .integration-step-copy h3 {
      margin: 0;
      color: var(--navy);
      font-size: clamp(1.34rem, 2.1vw, 2.05rem);
      line-height: 1.1;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .integration-step-copy p {
      margin: 0;
      color: var(--muted);
      font-size: clamp(0.92rem, 1vw, 1rem);
      line-height: 1.72;
    }

    .integration-visual {
      display: grid;
      min-height: 238px;
      border-radius: 18px;
      border: 1px solid rgba(0, 124, 255, 0.12);
      background: #f7fbff;
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .integration-visual>* {
      min-height: 100%;
      width: 100%;
    }

    .integration-photo-card {
      padding: 22px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: #ffffff;
      background:
        linear-gradient(180deg, rgba(6, 19, 38, 0.18), rgba(6, 19, 38, 0.82)),
        url("./adaptive-systems-bg-1600.jpg") center / cover no-repeat;
      transition: background-position 700ms ease, transform 700ms ease;
    }

    .integration-step:hover .integration-photo-card {
      background-position: center 44%;
      transform: scale(1.015);
    }

    .integration-photo-card span,
    .integration-partnership span {
      width: fit-content;
      margin-bottom: 10px;
      padding: 6px 9px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      color: rgba(255, 255, 255, 0.84);
      font-size: 0.62rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .integration-photo-card strong {
      max-width: 360px;
      font-size: 1.1rem;
      line-height: 1.22;
    }

    .integration-panel-list {
      display: grid;
      gap: 12px;
      padding: 20px;
      align-content: stretch;
    }

    .integration-panel-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 15px 16px;
      border-radius: 14px;
      background: #ffffff;
      border: 1px solid #dfe8f4;
      color: var(--navy);
      font-size: 0.8rem;
      font-weight: 800;
      transform: translateX(-8px);
      opacity: 0;
    }

    .integration-panel-list .integration-panel-row {
      min-height: 0;
    }

    .integration-step.is-visible .integration-panel-row {
      animation: row-slide-in 520ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
    }

    .integration-step.is-visible .integration-panel-row:nth-child(2) {
      animation-delay: 110ms;
    }

    .integration-step.is-visible .integration-panel-row:nth-child(3) {
      animation-delay: 220ms;
    }

    .integration-panel-row small {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 0.68rem;
      font-weight: 700;
    }

    .integration-toggle {
      width: 38px;
      height: 22px;
      border-radius: 99px;
      background: #dff8ff;
      border: 1px solid rgba(0, 208, 250, 0.28);
      position: relative;
    }

    .integration-toggle::after {
      content: "";
      position: absolute;
      right: 3px;
      top: 3px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 5px 14px rgba(0, 208, 250, 0.35);
    }

    .integration-channels {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
      padding: 16px;
      align-items: stretch;
    }

    .integration-channel {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 0;
      border-radius: 16px;
      background: #ffffff;
      border: 1px solid #dfe8f4;
      color: var(--blue);
      font-size: 0.72rem;
      font-weight: 900;
      text-align: center;
      animation: channel-float 4.6s ease-in-out infinite;
      transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    .integration-channel:nth-child(2) {
      animation-delay: 0.35s;
    }

    .integration-channel:nth-child(3) {
      animation-delay: 0.7s;
    }

    .integration-channel:hover {
      transform: translateY(-5px);
      border-color: rgba(0, 208, 250, 0.34);
      box-shadow: 0 16px 32px rgba(8, 27, 73, 0.08);
    }

    .integration-channel svg {
      width: 26px;
      height: 26px;
      stroke: var(--cyan);
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .integration-chart {
      padding: 20px;
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 14px;
      color: var(--navy);
    }

    .integration-chart-top {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      font-size: 0.72rem;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--blue);
    }

    .integration-chart-bars {
      display: flex;
      align-items: end;
      gap: 10px;
      min-height: 130px;
      padding: 14px;
      border-radius: 14px;
      background: #ffffff;
      border: 1px solid #dfe8f4;
    }

    .integration-chart-bars i {
      flex: 1;
      min-width: 22px;
      border-radius: 8px 8px 3px 3px;
      background: linear-gradient(180deg, var(--cyan), var(--blue));
      box-shadow: 0 10px 24px rgba(0, 124, 255, 0.14);
      transform-origin: bottom;
      transform: scaleY(0.18);
    }

    .integration-step.is-visible .integration-chart-bars i {
      animation: chart-grow 760ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
    }

    .integration-step.is-visible .integration-chart-bars i:nth-child(2) {
      animation-delay: 80ms;
    }

    .integration-step.is-visible .integration-chart-bars i:nth-child(3) {
      animation-delay: 160ms;
    }

    .integration-step.is-visible .integration-chart-bars i:nth-child(4) {
      animation-delay: 240ms;
    }

    .integration-step.is-visible .integration-chart-bars i:nth-child(5) {
      animation-delay: 320ms;
    }

    .integration-chart small {
      color: var(--muted);
      font-weight: 700;
      line-height: 1.45;
    }

    .integration-partnership {
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(135deg, rgba(0, 124, 255, 0.92), rgba(0, 208, 250, 0.82)),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.45), transparent 36%);
      color: #ffffff;
      background-size: 100% 100%, 170% 170%;
      animation: partnership-glow 8s ease-in-out infinite;
    }

    .integration-partnership img {
      width: min(176px, 70%);
      height: auto;
      filter: brightness(0) invert(1);
    }

    .integration-partnership strong {
      display: block;
      max-width: 360px;
      margin-top: 28px;
      font-size: 1.2rem;
      line-height: 1.24;
    }

    .usage-billing {
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 16px;
      padding: 22px;
      color: var(--navy);
      background:
        radial-gradient(circle at 82% 18%, rgba(0, 208, 250, 0.2), transparent 34%),
        linear-gradient(180deg, #ffffff, #f5fbff);
    }

    .usage-billing-top {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: start;
    }

    .usage-billing-top small {
      display: block;
      margin-bottom: 6px;
      color: var(--blue);
      font-size: 0.62rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .usage-billing-top strong {
      display: block;
      font-size: clamp(1.05rem, 1.4vw, 1.3rem);
      line-height: 1.08;
    }

    .usage-billing-price {
      min-width: 84px;
      text-align: right;
      color: var(--blue);
      font-size: 1.6rem;
      line-height: 1;
      font-weight: 900;
    }

    .usage-billing-price span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 0.58rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .usage-meter {
      display: grid;
      gap: 12px;
      align-content: center;
      padding: 16px;
      border-radius: 16px;
      background: #ffffff;
      border: 1px solid #dfe8f4;
    }

    .usage-meter-track {
      height: 18px;
      overflow: hidden;
      border-radius: 999px;
      background: #eaf6ff;
      box-shadow: inset 0 1px 2px rgba(8, 27, 73, 0.08);
    }

    .usage-meter-track i {
      display: block;
      width: 64%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--blue), var(--cyan));
      transform-origin: left;
    }

    .integration-step.is-visible .usage-meter-track i {
      animation: usage-fill 900ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
    }

    .usage-meter-labels,
    .usage-billing-tags {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      color: var(--muted);
      font-size: 0.66rem;
      font-weight: 800;
    }

    .usage-infinity {
      color: var(--blue);
      font-size: 1.08rem;
      line-height: 0.7;
      font-weight: 900;
    }

    .usage-billing-tags {
      justify-content: flex-start;
      flex-wrap: wrap;
    }

    .usage-billing-tags span {
      padding: 7px 9px;
      border-radius: 999px;
      background: #e5fbff;
      color: var(--blue);
      white-space: nowrap;
    }

    .use-examples {
      background:
        linear-gradient(rgba(0, 208, 250, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 208, 250, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #f5fbff, #ffffff);
      background-size: 48px 48px, 48px 48px, auto;
      border-bottom: 1px solid var(--line);
    }

    .use-examples-head {
      max-width: 760px;
      margin-bottom: clamp(28px, 4vw, 46px);
    }

    .use-case-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .use-case-card {
      position: relative;
      min-height: 250px;
      padding: 24px;
      border-radius: 20px;
      border: 1px solid rgba(0, 124, 255, 0.13);
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 22px 64px rgba(8, 24, 49, 0.08);
      overflow: hidden;
      display: grid;
      grid-template-rows: auto 1fr;
      gap: 20px;
      transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
    }

    .use-case-card:hover {
      transform: translateY(-4px);
      border-color: rgba(0, 208, 250, 0.34);
      box-shadow: 0 30px 76px rgba(8, 24, 49, 0.11);
    }

    .use-case-card::after {
      content: "";
      position: absolute;
      inset: auto -72px -96px auto;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(0, 208, 250, 0.13);
      pointer-events: none;
    }

    .use-case-top {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      align-items: start;
    }

    .use-case-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: #e5fbff;
      color: var(--cyan);
      border: 1px solid rgba(0, 208, 250, 0.24);
    }

    .use-case-icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .use-case-card h3 {
      margin: 0 0 8px;
      color: var(--navy);
      font-size: clamp(1.18rem, 1.6vw, 1.52rem);
      line-height: 1.12;
      letter-spacing: 0;
    }

    .use-case-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.58;
    }

    .use-case-flow {
      position: relative;
      z-index: 1;
      align-self: end;
      display: grid;
      gap: 12px;
    }

    .use-case-command,
    .use-case-result {
      border-radius: 16px;
      border: 1px solid #dfe8f4;
      padding: 14px 16px;
      background: #ffffff;
    }

    .use-case-command small,
    .use-case-result small {
      display: block;
      margin-bottom: 7px;
      color: var(--blue);
      font-size: 0.62rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .use-case-command strong,
    .use-case-result strong {
      display: block;
      color: var(--navy);
      font-size: 0.88rem;
      line-height: 1.35;
    }

    .use-case-result {
      background: linear-gradient(135deg, #063b8d, #007bff);
      border-color: rgba(0, 124, 255, 0.18);
      color: #ffffff;
    }

    .use-case-result small {
      color: rgba(255, 255, 255, 0.72);
    }

    .use-case-result strong {
      color: #ffffff;
    }

    .hero-panel {
      border-radius: 18px;
      background: var(--wash);
      border: 1px solid var(--line);
      padding: clamp(20px, 3vw, 36px);
    }

    .hero-panel .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.18) 42%, transparent 66%);
      transform: translateX(-120%);
      animation: media-sheen 6.5s ease-in-out infinite;
      pointer-events: none;
    }

    .hero-panel .hero-media-grid {
      animation: panel-grid-drift 20s linear infinite;
    }

    .demo {
      display: grid;
      grid-template-columns: minmax(280px, 0.55fr) 1fr;
      gap: clamp(26px, 4vw, 64px);
      align-items: center;
    }

    .mobile-preview {
      display: grid;
      place-items: center;
      min-height: 520px;
    }

    .phone-frame {
      width: 340px;
      height: 670px;
      border-radius: 42px;
      padding: 11px;
      background: #05080d;
      box-shadow: 0 30px 70px rgba(8, 27, 73, 0.16);
    }

    .phone-screen {
      height: 100%;
      border-radius: 32px;
      overflow: hidden;
      background: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .phone-status {
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 18px;
      color: #063b8d;
      font-size: 0.68rem;
      font-weight: 800;
    }

    .phone-pill {
      width: 54px;
      height: 16px;
      border-radius: 99px;
      background: #05080d;
    }

    .phone-app {
      padding: 16px;
      display: grid;
      gap: 13px;
    }

    .phone-header {
      display: flex;
      align-items: center;
      gap: 9px;
      color: #063b8d;
      font-size: 0.85rem;
      background: #fbfdff;
      border: 1px solid #eaf6ff;
      border-radius: 18px;
      padding: 9px 12px;
      margin: -4px 0 0;
      min-width: 0;
    }

    .phone-logo {
      width: 58px;
      height: auto;
      display: block;
    }

    .phone-menu {
      margin-left: auto;
      width: 30px;
      height: 28px;
      padding: 0;
      border: 0;
      background: transparent;
      color: #007bff;
      display: grid;
      place-content: center;
      gap: 4px;
    }

    .phone-menu span {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    .phone-card,
    .phone-message {
      opacity: 0;
      transform: translate3d(-10px, 16px, 0) scale(0.96);
    }

    .phone-card {
      border-radius: 18px;
      padding: 15px;
      background: #063b8d;
      color: #ffffff;
    }

    .phone-card small,
    .phone-message small {
      display: block;
      color: #00d0fa;
      font-size: 0.63rem;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .phone-card strong {
      display: block;
      font-size: 0.92rem;
      line-height: 1.45;
    }

    .phone-message {
      border-radius: 16px;
      padding: 13px;
      background: #f6f8fc;
      border: 1px solid #dde5f2;
      color: #063b8d;
    }

    .phone-message p {
      margin: 0;
      font-size: 0.78rem;
      line-height: 1.5;
    }

    .phone-input {
      margin-top: 8px;
      min-height: 46px;
      border-radius: 999px;
      background: #f6f8fc;
      border: 1px solid #dde5f2;
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 6px 7px;
      color: #063b8d;
      font-size: 0.75rem;
      min-width: 0;
      max-width: 100%;
      overflow: hidden;
    }

    .phone-input .composer-logo {
      width: 30px;
      height: 30px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: transparent;
      display: grid;
      place-items: center;
      box-shadow: none;
      overflow: visible;
    }

    .phone-input .composer-logo img {
      width: 24px;
      height: 24px;
      object-fit: contain;
      display: block;
    }

    .phone-input .composer-text {
      min-width: 0;
      flex: 1 1 auto;
      height: 32px;
      display: flex;
      align-items: center;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid #dde5f2;
      padding: 0 10px;
      color: #7b89a3;
      font: inherit;
      font-weight: 800;
      outline: 0;
      box-shadow: inset 0 1px 0 rgba(6, 59, 141, 0.03);
    }

    .phone-input .composer-text::placeholder {
      color: #7b89a3;
      opacity: 1;
    }

    .phone-input .composer-voice,
    .phone-input .composer-send {
      width: 28px;
      height: 28px;
      flex: 0 0 auto;
      border-radius: 50%;
      display: grid;
      place-items: center;
    }

    .phone-input .composer-voice {
      background: #e5fbff;
      color: #00bce8;
      border: 1px solid rgba(0, 188, 232, 0.24);
    }

    .phone-input .composer-send {
      background: #063b8d;
      color: #ffffff;
    }

    .phone-input .composer-voice svg,
    .phone-input .composer-send svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      stroke-width: 2.4;
      fill: none;
    }

    .mobile-preview.is-playing .phone-card,
    .mobile-preview.is-playing .phone-message {
      animation: phone-chat-bubble-in 0.62s cubic-bezier(0.2, 0.9, 0.2, 1) both;
    }

    .mobile-preview.is-playing .phone-card {
      animation-delay: 0.08s;
    }

    .mobile-preview.is-playing .phone-message:nth-child(3) {
      animation-delay: 0.72s;
    }

    .mobile-preview.is-playing .phone-message:nth-child(4) {
      animation-delay: 1.36s;
    }

    .demo-copy {
      color: #063b8d;
    }

    .command {
      border-radius: 16px;
      padding: 18px;
      background: #ffffff;
      border: 1px solid #dde5f2;
      margin-bottom: 16px;
    }

    .command small,
    .proof small {
      color: #5f6a80;
      font-size: 0.7rem;
      text-transform: uppercase;
      font-weight: 900;
    }

    .command strong {
      display: block;
      font-size: 1.3rem;
      line-height: 1.25;
      margin-top: 6px;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .proof {
      border-radius: 14px;
      padding: 14px;
      background: #ffffff;
      border: 1px solid #dde5f2;
    }

    .proof b {
      display: block;
      margin-top: 4px;
    }

    .hero .mobile-preview {
      justify-self: center;
      align-self: center;
      width: 100%;
    }

    .hero .phone-frame {
      width: min(402px, calc(46.13svh - 83px), 100%);
      height: auto;
      aspect-ratio: 393 / 852;
      padding: 7px;
    }

    .hero .phone-screen {
      display: flex;
      flex-direction: column;
    }

    .hero .phone-app {
      flex: 1;
      padding: 24px;
      gap: 20px;
    }

    .hero .phone-status {
      height: 46px;
      padding: 0 24px;
      font-size: 0.86rem;
    }

    .hero .phone-logo {
      width: 76px;
    }

    .hero .phone-menu {
      width: 36px;
      height: 34px;
      gap: 5px;
    }

    .hero .phone-menu span {
      width: 22px;
      height: 2.4px;
    }

    .hero .phone-card {
      padding: 22px;
      border-radius: 20px;
    }

    .hero .phone-message {
      padding: 20px;
      border-radius: 20px;
    }

    .hero .phone-card small,
    .hero .phone-message small {
      font-size: 0.82rem;
      margin-bottom: 10px;
    }

    .hero .phone-card strong {
      font-size: 1.24rem;
      line-height: 1.35;
    }

    .hero .phone-message p {
      font-size: 1rem;
      line-height: 1.55;
    }

    .hero .phone-input {
      margin-top: auto;
      min-height: 58px;
      padding: 7px 8px;
      gap: 7px;
      font-size: 0.82rem;
    }

    .hero .phone-input .composer-logo {
      width: 30px;
      height: 30px;
    }

    .hero .phone-input .composer-logo img {
      width: 24px;
      height: 24px;
    }

    .hero .phone-input .composer-text {
      height: 36px;
      font-size: 0.78rem;
      padding: 0 11px;
    }

    .hero .phone-input .composer-voice,
    .hero .phone-input .composer-send {
      width: 32px;
      height: 32px;
    }

    .phone-network {
      position: relative;
      min-height: 250px;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid #d7e6fb;
      background: radial-gradient(circle at 50% 46%, rgba(0, 208, 250, 0.18), transparent 34%), linear-gradient(160deg, #f7fbff, #eef7ff);
    }

    .phone-network svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .phone-network path {
      fill: none;
      stroke: rgba(0, 123, 255, 0.32);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-dasharray: 8 10;
      animation: network-flow 2.8s linear infinite;
    }

    .network-core,
    .network-node {
      position: absolute;
      border-radius: 999px;
      display: grid;
      place-items: center;
      text-align: center;
      font-weight: 900;
      color: #063b8d;
      box-shadow: 0 12px 30px rgba(0, 123, 255, 0.13);
    }

    .network-core {
      left: 50%;
      top: 50%;
      width: 76px;
      height: 76px;
      transform: translate(-50%, -50%);
      background: #007bff;
      color: #ffffff;
      font-size: 1.1rem;
    }

    .network-node {
      width: 70px;
      height: 70px;
      background: #ffffff;
      border: 1px solid #d7e6fb;
      font-size: 0.62rem;
      line-height: 1.1;
      text-transform: uppercase;
    }

    .network-node::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #00d0fa;
      box-shadow: 0 0 0 6px rgba(0, 208, 250, 0.12);
      margin-bottom: 3px;
    }

    .network-node.api {
      left: 16px;
      top: 18px;
    }

    .network-node.docs {
      right: 16px;
      top: 18px;
    }

    .network-node.legacy {
      left: 14px;
      bottom: 20px;
    }

    .network-node.process {
      right: 14px;
      bottom: 20px;
    }

    .network-node.gov {
      left: 50%;
      top: 12px;
      transform: translateX(-50%);
    }

    .network-status {
      border-radius: 18px;
      padding: 16px;
      background: #063b8d;
      color: #ffffff;
    }

    .network-status small {
      display: block;
      color: #00d0fa;
      font-size: 0.78rem;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 7px;
    }

    .network-status strong {
      display: block;
      font-size: 1rem;
      line-height: 1.35;
    }

    @keyframes network-flow {
      to {
        stroke-dashoffset: -72;
      }
    }

    .hero .mobile-preview {
      position: relative;
      max-width: 680px;
      min-height: min(780px, calc(100svh - var(--header-h)));
    }

    .hero .phone-frame {
      position: relative;
      z-index: 2;
    }

    .phone-external-map {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .phone-external-map path {
      fill: none;
      stroke: var(--node-color);
      stroke-width: 2.6;
      stroke-linecap: round;
      stroke-dasharray: 7 13;
      opacity: 0.86;
      filter: drop-shadow(0 0 8px color-mix(in srgb, var(--node-color) 35%, transparent));
      animation: network-flow 2.8s linear infinite;
    }

    .phone-external-map .anchor {
      fill: #ffffff;
      stroke: var(--node-color);
      stroke-width: 2.4;
      opacity: 0.92;
      filter: drop-shadow(0 0 9px color-mix(in srgb, var(--node-color) 32%, transparent));
    }

    .phone-external-map .packet {
      fill: var(--node-color);
      stroke: none;
      opacity: 0.92;
      filter: drop-shadow(0 0 7px color-mix(in srgb, var(--node-color) 45%, transparent));
    }

    .external-node {
      position: absolute;
      z-index: 3;
      right: -12px;
      width: 92px;
      height: 92px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-align: center;
      background: #ffffff;
      border: 1px solid #d7e6fb;
      color: #063b8d;
      font-size: 0.67rem;
      line-height: 1;
      font-weight: 900;
      text-transform: uppercase;
      box-shadow: 0 18px 42px rgba(8, 27, 73, 0.12);
      isolation: isolate;
      animation: external-node-pulse 3.4s ease-in-out infinite;
    }

    .external-node::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      border-radius: inherit;
      background: transparent;
      border: 1px solid color-mix(in srgb, var(--node-color) 42%, transparent);
      opacity: 0;
      transform: scale(1);
      animation: external-node-wave 2.4s ease-out infinite;
      animation-delay: inherit;
    }

    .external-node svg {
      width: 24px;
      height: 24px;
      flex: 0 0 auto;
      color: var(--node-color);
      stroke-width: 2.4;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .external-node.api {
      --node-color: #007bff;
      top: 4%;
      animation-delay: 0.1s;
    }

    .external-node.docs {
      --node-color: #00d0fa;
      top: 22.25%;
      animation-delay: 0.35s;
    }

    .external-node.legacy {
      --node-color: #6f5cff;
      top: 40.5%;
      animation-delay: 0.6s;
    }

    .external-node.process {
      --node-color: #12b981;
      top: 58.75%;
      animation-delay: 0.85s;
    }

    .external-node.gov {
      --node-color: #f59e0b;
      top: 77%;
      font-size: 0.57rem;
      animation-delay: 1.1s;
    }

    .phone-external-map .api {
      --node-color: #007bff;
    }

    .phone-external-map .docs {
      --node-color: #00d0fa;
    }

    .phone-external-map .legacy {
      --node-color: #6f5cff;
    }

    .phone-external-map .process {
      --node-color: #12b981;
    }

    .phone-external-map .gov {
      --node-color: #f59e0b;
    }

    @keyframes external-node-pulse {

      0%,
      100% {
        box-shadow: 0 18px 42px rgba(8, 27, 73, 0.12);
      }

      50% {
        box-shadow: 0 18px 42px rgba(8, 27, 73, 0.16);
      }
    }

    @keyframes external-node-wave {
      0% {
        opacity: 0.58;
        transform: scale(1);
      }

      68% {
        opacity: 0.15;
      }

      100% {
        opacity: 0;
        transform: scale(1.42);
      }
    }

    .chat-meta {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 7px;
      margin-bottom: 8px;
      color: #00d0fa;
      font-size: 0.62rem;
      line-height: 1;
      font-weight: 900;
      text-transform: uppercase;
    }

    .chat-meta b {
      min-width: 0;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
    }

    .chat-meta b::before {
      width: 24px;
      height: 24px;
      flex: 0 0 auto;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 0.52rem;
      line-height: 1;
    }

    .user-bubble .chat-meta b::before {
      content: "";
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: inline-block;
      background: url("./logo-uiless-icon-96.png") center/cover no-repeat;
      color: transparent;
    }

    .agent-bubble .chat-meta b::before {
      content: "";
      width: 24px;
      height: 24px;
      background: url("./logo-uiless-icon-96.png") center/contain no-repeat;
      color: transparent;
    }

    .chat-meta span {
      justify-self: end;
      color: rgba(255, 255, 255, 0.64);
      font-size: 0.54rem;
      white-space: nowrap;
    }

    .phone-message .chat-meta span {
      color: #667085;
    }

    .hero .phone-card.user-bubble {
      position: relative;
      justify-self: end;
      width: min(94%, 390px);
      max-width: calc(100% - 16px);
      --message-tail-color: #063b8d;
      --message-tail-size: clamp(6px, 1.3cqw, 8px);
      --message-tail-offset: clamp(10px, 2.4cqw, 14px);
      border-top-right-radius: 8px;
      padding: 16px 18px;
    }

    .hero .phone-card.user-bubble::after {
      content: "";
      position: absolute;
      right: calc(-1 * var(--message-tail-size));
      top: var(--message-tail-offset);
      border: var(--message-tail-size) solid transparent;
      border-left-color: var(--message-tail-color);
      border-right: 0;
      transform: translateX(1px);
    }

    .hero .phone-message.agent-bubble {
      position: relative;
      justify-self: start;
      width: min(94%, 390px);
      max-width: calc(100% - 16px);
      --message-tail-color: #f6f8fc;
      --message-tail-size: clamp(6px, 1.3cqw, 8px);
      --message-tail-offset: clamp(10px, 2.4cqw, 14px);
      border-top-left-radius: 8px;
      padding: 15px 18px;
    }

    .hero .phone-message.agent-bubble::after {
      content: "";
      position: absolute;
      left: calc(-1 * var(--message-tail-size));
      top: var(--message-tail-offset);
      border: var(--message-tail-size) solid transparent;
      border-right-color: var(--message-tail-color);
      border-left: 0;
      transform: translateX(-1px);
    }

    .hero .phone-app {
      gap: 14px;
    }

    .hero .phone-card strong {
      font-size: 1.08rem;
      line-height: 1.34;
    }

    .hero .phone-message p {
      font-size: 0.9rem;
      line-height: 1.45;
    }

    .hero .phone-input {
      min-height: 52px;
    }

    .faq-grid {
      display: grid;
      gap: 10px;
    }

    .faq-item {
      border-top: 1px solid var(--line);
      padding: 18px 0;
    }

    .faq-item summary {
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item h3 {
      display: inline;
      font-size: 0.94rem;
      color: var(--navy);
    }

    .faq-item p {
      max-width: 680px;
      color: var(--muted);
      font-size: 0.86rem;
      margin: 10px 0 0;
    }

    .cta {
      padding: 92px 0;
      background: transparent;
    }

    .contact-form {
      margin-top: 28px;
      display: grid;
      gap: 16px;
      width: min(100%, 1040px);
      border-radius: 18px;
      background: #ffffff;
      border: 1px solid var(--line);
      padding: 22px;
    }

    .contact-hidden {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .field-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 7px;
      min-width: 0;
    }

    .field label {
      color: var(--navy);
      font-size: 0.72rem;
      font-weight: 850;
    }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      min-width: 0;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #ffffff;
      color: var(--ink);
      padding: 12px 13px;
      outline: 0;
    }

    .field textarea {
      min-height: 120px;
      resize: vertical;
    }

    .contact-status {
      border-radius: 12px;
      padding: 12px 14px;
      font-size: 0.84rem;
    }

    .contact-status.success {
      background: rgba(0, 208, 250, 0.12);
      color: #063b8d;
    }

    .contact-status.error {
      background: rgba(0, 123, 255, 0.1);
      color: #063b8d;
    }

    .cta-actions {
      display: flex;
      justify-content: flex-start;
    }

    .footer {
      padding: 48px 0;
      border-top: 1px solid var(--line);
      background: #ffffff;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr 0.8fr;
      gap: 36px;
      color: var(--muted);
      font-size: 0.82rem;
    }

    .footer h2 {
      color: var(--navy);
      font-size: 0.78rem;
      margin: 0 0 12px;
      text-transform: uppercase;
    }

    .footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 7px;
    }

    .footer p {
      margin-bottom: 0;
    }

    .footer-company {
      display: grid;
      gap: 3px;
      margin-top: 18px;
      font-style: normal;
    }

    .footer-company p {
      margin: 0;
    }

    .footer a {
      text-decoration: underline;
      text-decoration-color: transparent;
      text-underline-offset: 3px;
      transition: color 180ms ease, text-decoration-color 180ms ease;
    }

    .footer a:hover {
      color: var(--navy);
      text-decoration-color: currentColor;
    }

    .contact-privacy {
      max-width: 760px;
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 0.78rem;
      line-height: 1.55;
    }

    .contact-privacy a {
      color: var(--navy);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .whatsapp {
      position: fixed;
      right: 1.5vh;
      bottom: 10px;
      z-index: 9999;
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 100%;
      background-color: #13d25e;
      color: #ffffff;
      font-size: 20px;
      cursor: pointer;
      box-shadow: 0 12px 26px rgba(8, 27, 73, 0.14);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .whatsapp.envelope {
      bottom: 58px;
      background-color: var(--cyan);
    }

    .whatsapp:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(8, 27, 73, 0.18);
    }

    .whatsapp svg {
      width: 21px;
      height: 21px;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .fade-in {
      transition: opacity 650ms ease, transform 650ms ease;
      transition-delay: var(--reveal-delay, 0ms);
    }

    .reveal-ready .fade-in {
      opacity: 0;
      transform: translateY(18px);
    }

    .fade-in.is-visible {
      opacity: 1;
      transform: none;
    }

    .motion-item.is-visible {
      animation: element-settle 720ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
      animation-delay: var(--reveal-delay, 0ms);
    }

    .button,
    .related-card,
    .use-case-card,
    .faq-item,
    .proof,
    .command,
    .mock-bubble,
    .mock-card,
    .field input,
    .field textarea,
    .field select {
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
    }

    .button:hover,
    .related-card:hover,
    .use-case-card:hover,
    .faq-item:hover,
    .proof:hover,
    .command:hover {
      transform: translateY(-2px);
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 4px rgba(0, 208, 250, 0.12);
    }

    @keyframes element-settle {
      0% {
        transform: translate3d(0, 14px, 0) scale(0.985);
      }

      70% {
        transform: translate3d(0, -2px, 0) scale(1.006);
      }

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

    @keyframes phone-chat-bubble-in {
      0% {
        opacity: 0;
        transform: translate3d(var(--chat-enter-x, -10px), 16px, 0) scale(0.96);
      }

      70% {
        opacity: 1;
        transform: translate3d(0, -2px, 0) scale(1.012);
      }

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

    .agent-bubble .chat-meta b::before {
      background-image: url("./rounder-mini-logo-96.png");
    }

    .phone-input .composer-logo {
      background: url("./rounder-mini-logo-96.png") center/contain no-repeat;
    }

    .phone-input .composer-logo img {
      opacity: 0;
    }

    @media (max-width: 1020px) {
      .integration-step {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .integration-step-copy {
        max-width: 780px;
      }

      .integration-visual {
        min-height: 220px;
      }
    }

    @media (max-width: 820px) {
      :root {
        --shell: calc(100% - 28px);
        --header-h: 62px;
      }

      .site-header {
        backdrop-filter: none;
        transition: min-height 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
      }

      .nav {
        width: calc(100% - 28px);
        min-height: 62px;
        justify-content: space-between;
        gap: 12px;
        transition: min-height 180ms ease;
      }

      .brand {
        flex: 0 0 auto;
        position: relative;
        z-index: 28;
      }

      .brand-logo {
        width: 112px;
        transition: width 180ms ease;
      }

      .nav-actions {
        gap: 8px;
        margin-left: auto;
      }

      .nav-actions .button-primary {
        display: none;
      }

      .panel-login {
        width: auto;
        min-height: 40px;
        padding: 0 11px;
        justify-content: center;
        gap: 7px;
        border-color: rgba(0, 123, 255, 0.28);
        background: linear-gradient(135deg, rgba(0, 123, 255, 0.07), rgba(0, 208, 250, 0.1));
        color: var(--blue);
        font-size: 0.7rem;
        box-shadow: 0 6px 16px rgba(0, 123, 255, 0.08);
      }

      .panel-login span {
        display: inline;
      }

      .panel-login svg {
        width: 16px;
        height: 16px;
        color: var(--cyan);
      }

      .nav-links {
        position: fixed;
        top: calc(var(--mobile-header-current-h, var(--header-h)) + 8px);
        left: 14px;
        right: 14px;
        z-index: 27;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        max-height: calc(100svh - var(--mobile-header-current-h, var(--header-h)) - 24px);
        padding: 10px;
        overflow-y: auto;
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96)),
          radial-gradient(circle at 84% 0%, rgba(0, 208, 250, 0.12), transparent 44%);
        border: 1px solid rgba(0, 123, 255, 0.14);
        border-radius: 18px;
        box-shadow: 0 22px 62px rgba(8, 27, 73, 0.16);
        backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transform: translateY(-8px) scale(0.985);
        transform-origin: top center;
        transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1), visibility 0s linear 220ms;
      }

      .nav-links::-webkit-scrollbar {
        display: none;
      }

      .nav-links a {
        min-height: 44px;
        padding: 0 12px;
        border: 1px solid #dfe8f4;
        border-radius: 999px;
        background: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        font-size: 0.78rem;
        box-shadow: 0 8px 22px rgba(8, 27, 73, 0.08);
        transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
      }

      .nav-links a:active {
        transform: scale(0.985);
      }

      .nav-toggle {
        position: relative;
        z-index: 28;
        flex: 0 0 auto;
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 999px;
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        padding: 0;
        overflow: hidden;
        background: transparent;
        color: var(--navy);
        box-shadow: none;
        transition: width 180ms ease, height 180ms ease, color 180ms ease, transform 180ms ease, background-color 180ms ease;
      }

      .nav-toggle:active {
        transform: scale(0.96);
      }

      .nav-toggle span {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        width: 15px;
        height: 1.8px;
        border-radius: 999px;
        background: currentColor;
        margin-left: -7.5px;
        transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 160ms ease, width 180ms ease;
      }

      .nav-toggle span:nth-child(1) {
        transform: translateY(-5.5px);
      }

      .nav-toggle span:nth-child(2) {
        transform: translateY(0);
      }

      .nav-toggle span:nth-child(3) {
        transform: translateY(5.5px);
      }

      .nav-toggle {
        display: flex;
      }

      .site-header.is-compact {
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 10px 30px rgba(8, 27, 73, 0.08);
      }

      .site-header.is-compact .nav {
        min-height: 50px;
      }

      .site-header.is-compact .brand-logo {
        width: 96px;
      }

      .site-header.is-compact .nav-toggle {
        width: 34px;
        height: 34px;
        box-shadow: none;
      }

      .site-header.is-menu-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: translateY(0) scale(1);
        transition-delay: 0s;
      }

      .site-header.is-menu-open .nav-links a {
        animation: mobile-menu-item-in 260ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
      }

      .site-header.is-menu-open .nav-links a:nth-child(2) {
        animation-delay: 28ms;
      }

      .site-header.is-menu-open .nav-links a:nth-child(3) {
        animation-delay: 56ms;
      }

      .site-header.is-menu-open .nav-links a:nth-child(4) {
        animation-delay: 84ms;
      }

      .site-header.is-menu-open .nav-links a:nth-child(5) {
        animation-delay: 112ms;
      }

      .site-header.is-menu-open .nav-links a:nth-child(6) {
        animation-delay: 140ms;
      }

      .site-header.is-menu-open .nav-toggle {
        color: var(--blue);
        background: transparent;
        box-shadow: none;
      }

      .site-header.is-menu-open .nav-toggle span:nth-child(1) {
        transform: translateY(0) rotate(45deg);
      }

      .site-header.is-menu-open .nav-toggle span:nth-child(2) {
        opacity: 0;
      }

      .site-header.is-menu-open .nav-toggle span:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
      }

      @keyframes mobile-menu-item-in {
        from {
          opacity: 0;
          transform: translateY(-4px);
        }

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

      .whatsapp {
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
        display: grid;
        width: 44px;
        height: 44px;
        font-size: 20px;
        box-shadow: 0 12px 28px rgba(8, 27, 73, 0.16);
      }

      .whatsapp.envelope {
        bottom: calc(64px + env(safe-area-inset-bottom, 0px));
        display: grid;
      }

      .hero {
        min-height: auto;
        padding: 34px 0 42px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: center;
      }

      h1 {
        max-width: min(100%, 224px);
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(1.62rem, 7.1vw, 1.96rem);
        line-height: 1.03;
      }

      .hero-mobile-break {
        display: block;
      }

      .hero-copy {
        width: 100%;
        min-width: 0;
        max-width: 680px;
        text-align: center;
        justify-self: center;
      }

      .hero-copy .eyebrow {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-subtitle {
        max-width: min(100%, 224px);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
        font-size: 0.88rem;
        line-height: 1.56;
      }

      .hero-copy>.button {
        min-height: 42px;
      }

      .trust-list {
        justify-content: center;
        max-width: 560px;
        margin: 14px auto 0;
        gap: 7px;
      }

      .trust-list span {
        padding: 5px 9px;
        font-size: 0.64rem;
      }

      .hero-media {
        min-height: 360px;
        border-radius: 16px;
      }

      .hero-video-bar {
        left: 16px;
        right: 16px;
        top: 16px;
        gap: 8px;
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-video-bar span {
        min-height: 58px;
        border-radius: 12px;
      }

      .media-caption {
        left: 18px;
        bottom: 18px;
        right: 18px;
      }

      .section,
      .cta {
        padding: 58px 0;
      }

      .section .fade-in,
      .cta .fade-in {
        opacity: 1;
        transform: none;
      }

      .section h2,
      .cta h2 {
        font-size: clamp(1.58rem, 7.4vw, 2.35rem);
        line-height: 1.12;
      }

      .cta h2 {
        font-size: clamp(1.46rem, 6.3vw, 2.05rem);
      }

      .lead {
        margin-bottom: 28px;
        font-size: 0.9rem;
        line-height: 1.64;
      }

      .two-col,
      .two-col.reverse,
      .pricing-block,
      .adapt-highlight-inner,
      .demo,
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .adapt-highlight {
        min-height: min(620px, 100svh);
        max-height: 100svh;
        padding: clamp(44px, 7svh, 64px) 0 clamp(56px, 8svh, 72px);
      }

      .intent-highlight {
        min-height: min(620px, 100svh);
        max-height: 100svh;
        padding: clamp(44px, 7svh, 64px) 0 clamp(56px, 8svh, 72px);
      }

      .adapt-highlight::before {
        background-position: 42% center;
      }

      .intent-highlight::before {
        background-position: 48% center;
      }

      .adapt-highlight::after {
        background:
          linear-gradient(180deg, rgba(6, 19, 38, 0.72), rgba(6, 19, 38, 0.76)),
          linear-gradient(90deg, rgba(6, 19, 38, 0.68), rgba(6, 19, 38, 0.5));
      }

      .intent-highlight::after {
        background:
          linear-gradient(180deg, rgba(6, 19, 38, 0.7), rgba(6, 19, 38, 0.78)),
          linear-gradient(90deg, rgba(6, 19, 38, 0.68), rgba(6, 19, 38, 0.5));
      }

      .adapt-highlight h2,
      .intent-highlight h2 {
        font-size: clamp(1.72rem, 8vw, 2.75rem);
        line-height: 1.08;
        gap: clamp(16px, 3svh, 28px);
      }

      .adapt-highlight-line,
      .intent-highlight-line {
        max-width: 100%;
        justify-self: center;
        text-align: center;
        opacity: 1;
        transform: none;
        --adapt-enter-x: 0;
        --intent-enter-x: 0;
      }

      .adapt-highlight .fade-in,
      .intent-highlight .fade-in {
        opacity: 1;
        transform: none;
      }

      .adapt-highlight .button-primary {
        width: min(100%, 300px);
      }

      .adapt-highlight-credit,
      .intent-highlight-credit {
        left: 14px;
        right: 14px;
        text-align: center;
      }

      .related-grid,
      .use-case-grid,
      .field-grid,
      .proof-grid {
        grid-template-columns: 1fr;
      }

      .dark-mock,
      .wide-mock {
        min-height: auto;
      }

      .ai-first-demo {
        position: relative;
        top: auto;
        padding: 14px;
      }

      .ai-dashboard {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .ai-sidebar {
        border-right: 0;
        border-bottom: 1px solid #dde5f2;
      }

      .ai-sidebar nav {
        grid-template-columns: repeat(2, 1fr);
      }

      .ai-sidebar-logo {
        width: 104px;
      }

      .ai-kpis,
      .ai-panel-grid {
        grid-template-columns: 1fr;
      }

      .ai-widget,
      .ai-approval {
        min-height: auto;
      }

      .ai-log {
        grid-column: auto;
      }

      .ai-log-row {
        grid-template-columns: 56px 1fr;
      }

      .ai-log-row b:last-child {
        display: none;
      }

      .integration-flow {
        gap: 16px;
      }

      .integration-flow::before {
        display: none;
      }

      .integration-step {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
        border-radius: 16px;
      }

      .integration-step::after {
        background: linear-gradient(180deg, rgba(0, 208, 250, 0.08), transparent 34%);
      }

      .integration-step-index {
        padding: 5px;
        gap: 6px;
      }

      .integration-step-index>span:first-child {
        width: 36px;
        height: 36px;
      }

      .integration-icon {
        width: 34px;
        height: 34px;
      }

      .integration-step-head {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 14px;
      }

      .integration-step-copy h3 {
        font-size: clamp(1.22rem, 6vw, 1.7rem);
      }

      .integration-step-copy p {
        font-size: 0.9rem;
        line-height: 1.58;
      }

      .integration-visual {
        min-height: 190px;
      }

      .usage-billing {
        padding: 18px;
      }

      .usage-billing-top {
        align-items: start;
      }

      .usage-billing-price {
        min-width: 70px;
        font-size: 1.3rem;
      }

      .usage-billing-tags span {
        flex: 1 1 100%;
        text-align: center;
      }

      .wide-board {
        grid-template-columns: 1fr;
        min-height: 330px;
      }

      .mobile-preview {
        min-height: auto;
      }

      .phone-frame {
        width: min(252px, 100%);
        height: 500px;
      }

      .hero .phone-frame {
        width: min(270px, 74vw);
        height: auto;
        aspect-ratio: 393 / 852;
      }

      .contact-form {
        padding: 18px;
      }
    }

    @media (max-width: 820px) {
      .hero {
        min-height: auto;
        padding: 26px 0 34px;
        align-items: center;
      }

      .hero-inner {
        gap: 18px;
      }

      .hero .mobile-preview {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        min-width: 0;
        max-width: 390px;
        margin-left: auto;
        margin-right: auto;
        min-height: auto;
        margin-top: 4px;
      }

      .hero .phone-external-map {
        display: none;
        visibility: hidden;
        opacity: 0;
      }

      .hero .external-node {
        display: flex;
        visibility: visible;
        opacity: 1;
        right: clamp(28px, 8vw, 42px);
        width: clamp(60px, 17vw, 70px);
        height: clamp(60px, 17vw, 70px);
        gap: 6px;
        font-size: clamp(0.46rem, 1.45vw, 0.58rem);
        box-shadow: 0 14px 32px rgba(8, 27, 73, 0.14);
      }

      .hero .external-node::before {
        animation: none;
        opacity: 0.2;
        transform: scale(1.05);
      }

      .hero .external-node svg {
        width: clamp(19px, 5.5vw, 24px);
        height: clamp(19px, 5.5vw, 24px);
      }

      .hero .external-node.api {
        top: 5%;
      }

      .hero .external-node.docs {
        top: 23%;
      }

      .hero .external-node.legacy {
        top: 41%;
      }

      .hero .external-node.process {
        top: 59%;
      }

      .hero .external-node.gov {
        top: 77%;
        font-size: clamp(0.39rem, 1.22vw, 0.48rem);
      }

      .hero .phone-status {
        height: 34px;
        padding: 0 18px;
        font-size: 0.74rem;
      }

      .hero .phone-app {
        padding: 12px 14px 14px;
        gap: 9px;
      }

      .hero .phone-card {
        padding: 13px 14px;
      }

      .hero .phone-message {
        padding: 12px 14px;
      }

      .hero .phone-card small,
      .hero .phone-message small {
        margin-bottom: 6px;
      }

      .hero .phone-input {
        min-height: 46px;
        padding: 6px 7px;
      }

      .hero .phone-card strong {
        font-size: 0.9rem;
        line-height: 1.32;
      }

      .hero .phone-message p {
        font-size: 0.76rem;
        line-height: 1.42;
      }

      .chat-meta {
        gap: 5px;
        font-size: 0.54rem;
      }

      .chat-meta b::before,
      .agent-bubble .chat-meta b::before {
        width: 20px;
        height: 20px;
      }

      .user-bubble .chat-meta b::before {
        width: 22px;
        height: 22px;
      }

      .integration-header {
        text-align: left;
      }

      .integration-header .lead {
        margin-left: 0;
      }

      .integration-channels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .integration-channel {
        min-height: 76px;
        flex-direction: column;
      }

      .integration-channel:last-child {
        grid-column: 1 / -1;
      }

      .usage-billing-top {
        display: grid;
        gap: 10px;
      }

      .usage-billing-price {
        text-align: left;
      }

      .use-case-card,
      .contact-form {
        border-radius: 16px;
      }

      .use-case-card {
        padding: 18px;
        gap: 16px;
      }

      .use-case-top {
        grid-template-columns: 42px 1fr;
        gap: 12px;
      }

      .use-case-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
      }

      .cta-actions,
      .cta-actions .button {
        width: 100%;
      }

      .cta-actions .button {
        min-height: 46px;
      }

      .fade-in {
        transition: opacity 520ms ease, transform 620ms cubic-bezier(0.22, 0.72, 0.18, 1);
      }

      .reveal-ready .fade-in,
      .section .fade-in,
      .cta .fade-in,
      .adapt-highlight .fade-in,
      .intent-highlight .fade-in {
        opacity: 0;
        transform: translate3d(0, 12px, 0);
      }

      .fade-in.is-visible,
      .section .fade-in.is-visible,
      .cta .fade-in.is-visible,
      .adapt-highlight .fade-in.is-visible,
      .intent-highlight .fade-in.is-visible {
        opacity: 1;
        transform: none;
      }

      .motion-item.is-visible {
        animation: mobile-reveal-in 620ms cubic-bezier(0.22, 0.72, 0.18, 1) both;
        animation-delay: var(--reveal-delay, 0ms);
      }

      .nav-links {
        transform: translate3d(0, -6px, 0);
        transition: opacity 180ms ease, transform 220ms ease, visibility 0s linear 220ms;
      }

      .site-header.is-menu-open .nav-links {
        transform: translate3d(0, 0, 0);
      }

      .site-header.is-menu-open .nav-links a {
        animation: mobile-menu-link-in 220ms ease both;
      }

      .mobile-preview {
        transition: opacity 560ms ease, transform 680ms cubic-bezier(0.22, 0.72, 0.18, 1);
      }

      .reveal-ready .mobile-preview {
        opacity: 0;
        transform: translate3d(0, 16px, 0);
      }

      .mobile-preview.is-visible {
        opacity: 1;
        transform: none;
      }

      .hero .phone-card,
      .hero .phone-message {
        opacity: 0;
        transform: translate3d(0, 10px, 0);
      }

      .mobile-preview.is-playing .phone-card,
      .mobile-preview.is-playing .phone-message {
        animation: mobile-chat-in 560ms ease-out both;
      }

      .mobile-preview.is-playing .phone-card {
        animation-delay: 120ms;
      }

      .mobile-preview.is-playing .phone-message:nth-child(3) {
        animation-delay: 420ms;
      }

      .mobile-preview.is-playing .phone-message:nth-child(4) {
        animation-delay: 720ms;
      }

      .hero .external-node {
        transform: translate3d(0, 8px, 0);
        animation: mobile-node-in 560ms ease-out both, mobile-node-float 5.2s ease-in-out 1100ms infinite;
      }

      .hero .external-node.api {
        animation-delay: 220ms, 1100ms;
      }

      .hero .external-node.docs {
        animation-delay: 320ms, 1300ms;
      }

      .hero .external-node.legacy {
        animation-delay: 420ms, 1500ms;
      }

      .hero .external-node.process {
        animation-delay: 520ms, 1700ms;
      }

      .hero .external-node.gov {
        animation-delay: 620ms, 1900ms;
      }

      .hero .external-node::before {
        animation: none;
        opacity: 0.16;
        transform: scale(1.08);
      }

      .integration-step.is-visible .integration-panel-row,
      .integration-step.is-visible .integration-chart-bars i,
      .integration-step.is-visible .usage-meter-track i {
        animation-duration: 520ms;
        animation-timing-function: ease-out;
      }

      .integration-channel {
        animation: none;
      }

      .whatsapp {
        transition: transform 180ms ease, box-shadow 180ms ease, opacity 220ms ease;
      }

      .whatsapp:active {
        transform: scale(0.96);
      }

      @keyframes mobile-reveal-in {
        from {
          opacity: 0;
          transform: translate3d(0, 12px, 0);
        }

        to {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes mobile-menu-link-in {
        from {
          opacity: 0;
          transform: translate3d(0, 6px, 0);
        }

        to {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes mobile-chat-in {
        from {
          opacity: 0;
          transform: translate3d(0, 10px, 0);
        }

        to {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes mobile-node-in {
        from {
          opacity: 0;
          transform: translate3d(0, 8px, 0);
        }

        to {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes mobile-node-float {

        0%,
        100% {
          transform: translate3d(0, 0, 0);
        }

        50% {
          transform: translate3d(0, -4px, 0);
        }
      }
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }

      .fade-in,
      .phone-card,
      .phone-message,
      .adapt-highlight-line,
      .intent-highlight-line {
        opacity: 1 !important;
        transform: none !important;
      }
    }


    :root {
      color-scheme: dark;
      --white: #f7fbff;
      --ink: #f7fbff;
      --navy: #07152f;
      --blue: #1689ff;
      --cyan: #00d8ff;
      --muted: #91a3bd;
      --line: rgba(129, 171, 225, .18);
      --wash: #0b1427;
      --shell: min(1280px, calc(100% - 80px));
      --shadow: 0 30px 90px rgba(0, 0, 0, .36);
      --header-h: 82px;
      --surface: rgba(16, 29, 53, .82);
      --surface-strong: #101d35;
      --deep: #070d19;
    }

    body {
      color: var(--white);
      background:
        radial-gradient(circle at 78% 4%, rgba(0, 216, 255, .09), transparent 24rem),
        #070d19;
    }

    body::before {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      content: "";
      opacity: .32;
      background-image:
        linear-gradient(rgba(88, 129, 184, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 129, 184, .07) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
    }

    .reveal-ready .fade-in,
    .reveal-ready .mobile-preview,
    .fade-in,
    .fade-in.is-visible,
    .mobile-preview.is-visible {
      opacity: 1;
      transform: none;
    }

    .hero-copy {
      animation: reference-enter .72s cubic-bezier(.2, .7, .2, 1) both;
    }

    .hero .mobile-preview {
      animation: reference-enter .9s .12s cubic-bezier(.2, .7, .2, 1) both;
    }

    ::selection {
      color: #03101d;
      background: var(--cyan);
    }

    .site-header {
      position: fixed;
      right: 0;
      left: 0;
      top: 0;
      border-bottom: 1px solid rgba(115, 161, 219, .15);
      background: rgba(5, 11, 23, .68);
      box-shadow: 0 14px 44px rgba(0, 0, 0, .22);
      backdrop-filter: blur(22px) saturate(140%);
    }

    .nav {
      width: var(--shell);
      min-height: var(--header-h);
      padding: 0;
    }

    .brand-logo {
      width: 126px;
      height: auto;
      filter: drop-shadow(0 0 18px rgba(0, 216, 255, .18));
    }

    .nav-links {
      gap: 30px;
    }

    .nav-links a,
    .panel-login {
      color: #9bacc4;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .02em;
    }

    .nav-links a:hover,
    .panel-login:hover {
      color: var(--cyan);
    }

    .panel-login svg {
      stroke: var(--cyan);
    }

    .button {
      min-height: 48px;
      padding: 0 22px;
      border-radius: 4px;
      letter-spacing: .01em;
    }

    .button-primary {
      color: #03101d;
      border: 1px solid rgba(129, 239, 255, .74);
      background: linear-gradient(135deg, var(--cyan), #3d9bff);
      box-shadow: 0 14px 34px rgba(0, 180, 255, .18), inset 0 1px rgba(255, 255, 255, .34);
    }

    .button-primary:hover {
      color: #03101d;
      border-color: #fff;
      box-shadow: 0 18px 44px rgba(0, 216, 255, .3);
    }

    .button .icon {
      stroke: currentColor;
    }

    .hero {
      position: relative;
      min-height: max(760px, 100svh);
      padding: calc(var(--header-h) + 72px) 0 90px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(5, 8, 13, .94) 0%, rgba(7, 10, 15, .84) 42%, rgba(9, 13, 18, .46) 100%),
        radial-gradient(circle at 82% 42%, rgba(112, 194, 210, .04), transparent 28rem),
        #090d12;
    }

    .hero-operation-background {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      pointer-events: none;
    }

    .hero.has-running-video .hero-operation-background {
      visibility: hidden;
      opacity: 0;
    }

    .hero-video-stage {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      background: #080e16;
      transition: opacity 700ms ease;
    }

    .hero-video-stage.is-ready {
      opacity: 1;
    }

    .hero-background-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 520ms ease;
    }

    .hero-background-video.is-active {
      opacity: 1;
    }

    .hero::before,
    .hero::after {
      position: absolute;
      pointer-events: none;
      content: "";
    }

    .hero::before {
      inset: 0;
      z-index: 1;
      opacity: 1;
      background:
        linear-gradient(90deg, rgba(5, 8, 13, .94) 0%, rgba(7, 10, 15, .82) 43%, rgba(9, 13, 18, .4) 100%),
        radial-gradient(circle at 82% 42%, rgba(112, 194, 210, .04), transparent 28rem),
        linear-gradient(rgba(190, 202, 214, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 202, 214, .045) 1px, transparent 1px);
      background-size: cover, cover, 70px 70px, 70px 70px;
    }

    .hero::after {
      z-index: 1;
      top: 22%;
      right: -150px;
      width: 720px;
      height: 720px;
      border: 1px solid rgba(0, 216, 255, .1);
      border-radius: 50%;
      box-shadow:
        0 0 0 110px rgba(0, 216, 255, .025),
        0 0 0 220px rgba(0, 216, 255, .018);
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      grid-template-columns: minmax(0, .96fr) minmax(500px, 1.04fr);
      gap: 58px;
      width: var(--shell);
      min-height: 590px;
      align-items: center;
    }

    .hero-copy {
      max-width: 660px;
    }

    .eyebrow,
    .label {
      color: var(--cyan);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .eyebrow {
      width: fit-content;
      margin-bottom: 26px;
      padding: 9px 13px;
      border: 1px solid rgba(0, 216, 255, .28);
      border-radius: 2px;
      background: rgba(0, 216, 255, .06);
    }

    .eyebrow-dot {
      background: var(--cyan);
      box-shadow: 0 0 0 5px rgba(0, 216, 255, .1), 0 0 18px var(--cyan);
    }

    .hero h1 {
      max-width: 690px;
      margin: 0;
      color: #f7fbff;
      font-size: clamp(48px, 5.35vw, 80px);
      line-height: .98;
      letter-spacing: -.058em;
    }

    .hero-title-emphasis,
    .hero-title-emphasis.hero-title-action,
    .hero-title-emphasis.hero-title-channel {
      color: transparent;
      background: linear-gradient(90deg, #f7fbff 0%, #76eaff 45%, #178cff 100%);
      background-clip: text;
      -webkit-background-clip: text;
    }

    .hero-subtitle {
      max-width: 620px;
      margin: 30px 0 34px;
      color: #9bacc4;
      font-size: 17px;
      line-height: 1.75;
    }

    .mobile-preview {
      filter: drop-shadow(0 40px 70px rgba(0, 0, 0, .56));
    }

    .hero .phone-frame {
      border: 1px solid rgba(120, 202, 255, .36);
      background: #050b16;
      box-shadow:
        0 0 0 7px rgba(14, 28, 51, .9),
        0 28px 80px rgba(0, 0, 0, .55),
        0 0 46px rgba(0, 216, 255, .12);
    }

    .hero .phone-screen,
    .hero .phone-app {
      background: linear-gradient(180deg, #0d1a31, #07101f);
    }

    .hero .phone-header,
    .hero .phone-status {
      color: #b8c8dc;
      border-color: rgba(129, 171, 225, .14);
      background: rgba(5, 12, 25, .76);
    }

    .hero .phone-card.user-bubble {
      color: #03101d;
      border-color: rgba(132, 239, 255, .48);
      background: linear-gradient(135deg, #5ce9ff, #3199ff);
    }

    .hero .phone-message.agent-bubble,
    .hero .phone-input {
      color: #c9d6e7;
      border-color: rgba(129, 171, 225, .18);
      background: rgba(18, 34, 61, .96);
    }

    .hero .external-node {
      color: #bcd0e8;
      border-color: rgba(0, 216, 255, .26);
      border-radius: 3px;
      background: rgba(9, 22, 43, .95);
      box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
    }

    .hero .external-node svg,
    .phone-external-map path,
    .phone-external-map circle {
      stroke: var(--cyan);
    }

    .section {
      position: relative;
      padding: 126px 0;
      border-top: 1px solid rgba(129, 171, 225, .1);
      background: rgba(7, 13, 25, .7);
    }

    .section.compact {
      padding: 126px 0;
    }

    .section::before {
      position: absolute;
      top: 0;
      left: max(28px, calc((100% - 1280px) / 2));
      width: min(160px, 18vw);
      height: 1px;
      content: "";
      background: var(--cyan);
      box-shadow: 0 0 18px rgba(0, 216, 255, .65);
    }

    .section h2,
    .cta h2 {
      max-width: 980px;
      margin: 14px 0 24px;
      color: #f7fbff;
      font-size: clamp(40px, 4.5vw, 68px);
      line-height: 1.04;
      letter-spacing: -.048em;
    }

    .lead {
      max-width: 760px;
      color: #91a3bd;
      font-size: 17px;
      line-height: 1.75;
    }

    .adapt-highlight,
    .intent-highlight {
      min-height: 720px;
      isolation: isolate;
      border: 0;
      background-position: center;
      background-size: cover;
    }

    .adapt-highlight {
      background-image:
        linear-gradient(90deg, rgba(2, 7, 15, .98) 0%, rgba(4, 13, 28, .91) 48%, rgba(4, 13, 28, .42) 100%),
        url("./adaptive-systems-bg-1600.jpg");
    }

    .intent-highlight {
      background-image:
        linear-gradient(90deg, rgba(2, 7, 15, .98) 0%, rgba(4, 13, 28, .86) 58%, rgba(4, 13, 28, .42) 100%),
        url("./intent-era-bg-1600.jpg");
    }

    .adapt-highlight::before,
    .intent-highlight::before {
      z-index: -1;
      opacity: .62;
      background:
        linear-gradient(rgba(78, 130, 197, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 130, 197, .12) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(90deg, #000, transparent 75%);
    }

    .adapt-highlight::after,
    .intent-highlight::after {
      z-index: -1;
      background: linear-gradient(180deg, rgba(7, 13, 25, .06), #070d19 110%);
    }

    .adapt-highlight-inner,
    .intent-highlight-inner {
      width: var(--shell);
      min-height: 720px;
      padding: 110px 0;
      justify-content: center;
      align-items: flex-start;
      text-align: left;
    }

    .adapt-highlight h2,
    .intent-highlight h2 {
      max-width: 940px;
      margin: 18px 0 28px;
      color: #f7fbff;
      font-size: clamp(46px, 5.4vw, 82px);
      line-height: 1.02;
      letter-spacing: -.055em;
    }

    .adapt-highlight-line,
    .intent-highlight-line {
      color: inherit;
      text-shadow: 0 16px 50px rgba(0, 0, 0, .35);
    }

    .adapt-highlight-line-end,
    .intent-highlight-line-end {
      color: var(--cyan);
    }

    .adapt-highlight-copy {
      max-width: 690px;
      margin: 0;
      color: #b3c2d5;
      font-size: 17px;
    }

    .adapt-highlight-actions {
      justify-content: flex-start;
      margin-top: 34px;
    }

    .adapt-highlight-credit,
    .intent-highlight-credit {
      color: rgba(202, 216, 235, .54);
    }

    .two-col {
      gap: 34px;
      margin-top: 56px;
      align-items: stretch;
    }

    .bullet-list {
      gap: 12px;
    }

    .bullet-item {
      position: relative;
      padding: 22px 22px 22px 70px;
      overflow: hidden;
      color: #9eafc5;
      border: 1px solid rgba(129, 171, 225, .14);
      border-radius: 4px;
      background: linear-gradient(135deg, rgba(17, 32, 58, .9), rgba(10, 21, 41, .86));
      box-shadow: 0 18px 46px rgba(0, 0, 0, .12);
    }

    .bullet-item::after {
      position: absolute;
      top: 0;
      right: 0;
      width: 70px;
      height: 70px;
      content: "";
      border-top: 1px solid rgba(0, 216, 255, .18);
      border-right: 1px solid rgba(0, 216, 255, .18);
      transform: translate(34px, -34px) rotate(45deg);
    }

    .bullet-dot {
      position: absolute;
      top: 21px;
      left: 20px;
      color: #04101d;
      border-radius: 2px;
      background: var(--cyan);
      box-shadow: 0 0 22px rgba(0, 216, 255, .22);
    }

    .bullet-item strong {
      color: #f3f8ff;
    }

    .dark-mock,
    .integration-visual>div,
    .use-case-card,
    .faq-item,
    .contact-form {
      border: 1px solid rgba(129, 171, 225, .16);
      border-radius: 5px;
      background: linear-gradient(145deg, rgba(18, 34, 61, .94), rgba(9, 19, 38, .96));
      box-shadow: var(--shadow);
    }

    .dark-mock {
      overflow: hidden;
    }

    .mock-top,
    .ai-panel-topbar,
    .ai-sidebar,
    .ai-widget,
    .ai-approval,
    .ai-log,
    .ai-kpi {
      color: #a8bad0;
      border-color: rgba(129, 171, 225, .13);
      background: rgba(8, 18, 36, .72);
    }

    .ai-panel-main,
    .ai-dashboard {
      background: #0b162a;
    }

    .ai-sidebar nav span,
    .ai-system-row,
    .ai-rule,
    .ai-log-row {
      color: #93a7c0;
      border-color: rgba(129, 171, 225, .1);
    }

    .ai-sidebar nav span.is-active,
    .ai-live-pill,
    .ai-rule-status {
      color: var(--cyan);
      background: rgba(0, 216, 255, .1);
    }

    .integration-steps {
      background:
        radial-gradient(circle at 12% 22%, rgba(0, 216, 255, .06), transparent 26rem),
        #091224;
    }

    .integration-header {
      margin-bottom: 64px;
    }

    .integration-flow {
      gap: 18px;
    }

    .integration-step {
      grid-template-columns: minmax(0, 1fr) minmax(340px, .7fr);
      min-height: 300px;
      padding: 34px;
      border: 1px solid rgba(129, 171, 225, .15);
      border-radius: 5px;
      background: linear-gradient(120deg, rgba(16, 31, 57, .96), rgba(9, 20, 40, .94));
      box-shadow: 0 18px 54px rgba(0, 0, 0, .16);
    }

    .integration-step:hover {
      border-color: rgba(0, 216, 255, .42);
      background: linear-gradient(120deg, rgba(19, 39, 70, .98), rgba(9, 22, 43, .98));
      box-shadow: 0 24px 70px rgba(0, 0, 0, .26), 0 0 0 1px rgba(0, 216, 255, .05);
    }

    .integration-step::after {
      background: linear-gradient(90deg, var(--cyan), #288dff);
    }

    .integration-step-index>span:first-child {
      color: rgba(131, 166, 210, .44);
      font-size: 54px;
    }

    .integration-icon,
    .use-case-icon {
      color: var(--cyan);
      border-color: rgba(0, 216, 255, .22);
      border-radius: 3px;
      background: rgba(0, 216, 255, .07);
    }

    .integration-step-copy h3,
    .use-case-card h3,
    .faq-item h3 {
      color: #f7fbff;
    }

    .integration-step-copy p,
    .integration-photo-card strong,
    .integration-panel-row,
    .integration-chart,
    .integration-partnership,
    .usage-billing {
      color: #91a3bd;
    }

    .integration-visual>div {
      background: rgba(7, 16, 32, .72);
      box-shadow: none;
    }

    .integration-panel-row,
    .integration-channel,
    .usage-billing-tags span {
      color: #a7b8cc;
      border-color: rgba(129, 171, 225, .13);
      background: rgba(17, 32, 57, .86);
    }

    .integration-toggle,
    .integration-chart-bars i,
    .usage-meter-track i,
    .ai-meter i {
      background: linear-gradient(180deg, var(--cyan), #278dff);
      box-shadow: 0 0 18px rgba(0, 216, 255, .18);
    }

    .use-examples {
      background: #070d19;
    }

    .use-case-grid {
      gap: 18px;
      margin-top: 56px;
    }

    .use-case-card {
      position: relative;
      min-height: 310px;
      padding: 28px;
      overflow: hidden;
    }

    .use-case-card::before {
      position: absolute;
      top: 0;
      right: 0;
      width: 110px;
      height: 110px;
      content: "";
      background:
        linear-gradient(rgba(0, 216, 255, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 216, 255, .12) 1px, transparent 1px);
      background-size: 18px 18px;
      mask-image: linear-gradient(225deg, #000, transparent);
    }

    .use-case-card:hover {
      border-color: rgba(0, 216, 255, .45);
      transform: translateY(-5px);
      box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
    }

    .use-case-command,
    .use-case-result {
      color: #a5b5c9;
      border-color: rgba(129, 171, 225, .14);
      border-radius: 3px;
      background: rgba(7, 16, 32, .72);
    }

    .use-case-command small,
    .use-case-result small {
      color: var(--cyan);
    }

    .use-case-command strong,
    .use-case-result strong {
      color: #dce7f5;
    }

    #faq {
      background:
        radial-gradient(circle at 90% 10%, rgba(0, 136, 255, .08), transparent 28rem),
        #091224;
    }

    .faq-grid {
      gap: 12px;
      margin-top: 48px;
    }

    .faq-item {
      padding: 0 24px;
      box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
    }

    .faq-item:hover,
    .faq-item[open] {
      border-color: rgba(0, 216, 255, .38);
    }

    .faq-item summary {
      min-height: 86px;
    }

    .faq-item summary::after {
      color: var(--cyan);
      border-color: rgba(0, 216, 255, .2);
      background: rgba(0, 216, 255, .06);
    }

    .faq-item p {
      color: #91a3bd;
      border-color: rgba(129, 171, 225, .12);
    }

    .cta {
      position: relative;
      padding: 126px 0;
      overflow: hidden;
      border-top: 1px solid rgba(0, 216, 255, .18);
      background:
        radial-gradient(circle at 82% 18%, rgba(0, 216, 255, .14), transparent 28rem),
        linear-gradient(135deg, #071224, #0b1830);
    }

    .cta::before {
      position: absolute;
      inset: 0;
      pointer-events: none;
      content: "";
      opacity: .42;
      background-image:
        linear-gradient(rgba(83, 137, 202, .1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(83, 137, 202, .1) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(90deg, transparent, #000);
    }

    .cta .shell {
      position: relative;
    }

    .contact-form {
      max-width: 100%;
      margin-top: 54px;
      padding: 34px;
    }

    .field label {
      color: #c5d2e2;
      font-size: 12px;
      letter-spacing: .07em;
      text-transform: uppercase;
    }

    .field input,
    .field textarea {
      color: #f7fbff;
      border: 1px solid rgba(129, 171, 225, .2);
      border-radius: 3px;
      background: rgba(6, 15, 30, .78);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
    }

    .field input:focus,
    .field textarea:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 3px rgba(0, 216, 255, .1);
    }

    .contact-privacy {
      color: #7f92ac;
    }

    .contact-privacy a {
      color: var(--cyan);
    }

    .footer {
      color: #8497b0;
      border-top: 1px solid rgba(129, 171, 225, .12);
      background: #040913;
    }

    .footer-grid {
      width: var(--shell);
      padding: 70px 0;
    }

    .footer h2,
    .footer a:hover {
      color: #f7fbff;
    }

    .whatsapp {
      color: #03101d;
      border: 1px solid rgba(255, 255, 255, .44);
      border-radius: 4px;
      background: linear-gradient(135deg, var(--cyan), #1689ff);
      box-shadow: 0 14px 36px rgba(0, 167, 255, .26);
    }

    .whatsapp.envelope {
      background: #12233f;
      color: var(--cyan);
      border-color: rgba(0, 216, 255, .28);
    }

    @keyframes reference-enter {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

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

    @media (max-width: 1100px) {
      :root {
        --shell: min(100% - 48px, 960px);
      }

      .nav-links {
        gap: 18px;
      }

      .hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(410px, .85fr);
        gap: 24px;
      }

      .integration-step {
        grid-template-columns: 1fr minmax(300px, .7fr);
      }
    }

    @media (max-width: 860px) {
      :root {
        --shell: calc(100% - 36px);
        --header-h: 70px;
      }

      .site-header {
        background: rgba(5, 11, 23, .94);
      }

      .nav {
        width: var(--shell);
        min-height: var(--header-h);
      }

      .nav-links {
        top: var(--header-h);
        right: 0;
        left: 0;
        width: 100%;
        padding: 18px;
        border-bottom: 1px solid rgba(0, 216, 255, .18);
        background: rgba(5, 11, 23, .98);
        box-shadow: 0 24px 46px rgba(0, 0, 0, .34);
      }

      .nav-links a {
        color: #c3d0e0;
        border-color: rgba(129, 171, 225, .12);
      }

      .nav-toggle {
        border-color: rgba(0, 216, 255, .25);
        border-radius: 3px;
        background: rgba(0, 216, 255, .06);
      }

      .nav-toggle span {
        background: var(--cyan);
      }

      .hero {
        min-height: auto;
        padding: calc(var(--header-h) + 64px) 0 90px;
      }

      .hero-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 64px;
        min-height: 0;
      }

      .hero-copy {
        max-width: 720px;
      }

      .hero h1 {
        font-size: clamp(48px, 10.6vw, 72px);
      }

      .mobile-preview {
        width: min(100%, 610px);
        margin-inline: auto;
      }

      .section,
      .section.compact,
      .cta {
        padding: 94px 0;
      }

      .two-col,
      .integration-step {
        grid-template-columns: 1fr;
      }

      .integration-step {
        padding: 28px;
      }

      .adapt-highlight,
      .intent-highlight,
      .adapt-highlight-inner,
      .intent-highlight-inner {
        min-height: 640px;
      }

      .adapt-highlight-inner,
      .intent-highlight-inner {
        padding: 90px 0;
      }
    }

    @media (max-width: 620px) {
      :root {
        --shell: calc(100% - 28px);
      }

      .brand-logo {
        width: 108px;
      }

      .panel-login span,
      .nav-actions>.button-primary {
        display: none;
      }

      .hero {
        padding-top: calc(var(--header-h) + 48px);
      }

      .hero h1 {
        font-size: clamp(42px, 13vw, 60px);
        line-height: .99;
      }

      .hero-subtitle {
        margin-top: 24px;
        font-size: 16px;
      }

      .hero-copy>.button {
        width: 100%;
      }

      .mobile-preview {
        transform: scale(.94);
        transform-origin: top center;
      }

      .section h2,
      .cta h2 {
        font-size: clamp(36px, 11vw, 52px);
      }

      .adapt-highlight h2,
      .intent-highlight h2 {
        font-size: clamp(40px, 12vw, 58px);
      }

      .adapt-highlight,
      .intent-highlight {
        background-position: 62% center;
      }

      .adapt-highlight-inner,
      .intent-highlight-inner {
        min-height: 600px;
        padding: 78px 0;
      }

      .bullet-item {
        padding: 68px 20px 22px;
      }

      .bullet-dot {
        top: 20px;
      }

      .integration-step {
        padding: 22px;
      }

      .integration-step-index>span:first-child {
        font-size: 42px;
      }

      .use-case-grid {
        grid-template-columns: 1fr;
      }

      .contact-form {
        padding: 22px;
      }

      .footer-grid {
        padding: 56px 0;
      }
    }


    body {
      background: #ffffff;
    }

    body::before {
      opacity: .2;
      background-image:
        linear-gradient(rgba(12, 119, 199, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 119, 199, .08) 1px, transparent 1px);
    }

    .section {
      color: #10213a;
      border-top-color: #dce8f3;
      background:
        radial-gradient(circle at 90% 8%, rgba(0, 188, 235, .07), transparent 24rem),
        #ffffff;
    }

    .section::before {
      background: linear-gradient(90deg, #00cfee, #1689ff);
    }

    .section h2 {
      color: #0a1a31;
    }

    .section .label {
      color: #007cae;
    }

    .section .lead {
      color: #5e7087;
    }

    .operation-impact {
      position: relative;
      padding: 108px 0;
      overflow: hidden;
      color: #10213a;
      border-bottom: 1px solid #dce8f3;
      background:
        radial-gradient(circle at 88% 18%, rgba(0, 200, 238, .1), transparent 24rem),
        #ffffff;
    }

    .operation-impact::before {
      position: absolute;
      inset: 0;
      pointer-events: none;
      content: "";
      opacity: .55;
      background-image:
        linear-gradient(rgba(12, 119, 199, .065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 119, 199, .065) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: linear-gradient(90deg, transparent, #000 65%);
    }

    .operation-impact .shell {
      position: relative;
      display: grid;
      grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
      gap: clamp(48px, 6vw, 92px);
      align-items: end;
    }

    .operation-impact-copy {
      max-width: 510px;
    }

    .operation-impact h2 {
      margin: 14px 0 22px;
      color: #0a1a31;
      font-size: clamp(42px, 4.3vw, 66px);
      line-height: 1.02;
      letter-spacing: -.05em;
    }

    .operation-impact-copy>p:last-child {
      margin: 0;
      color: #5e7087;
      font-size: 17px;
      line-height: 1.75;
    }

    .operation-impact .label {
      color: #007cae;
    }

    .impact-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .impact-metric {
      position: relative;
      min-height: 300px;
      padding: 28px;
      overflow: hidden;
      color: #9fb1c8;
      border: 1px solid rgba(91, 158, 219, .2);
      border-radius: 5px;
      background: linear-gradient(155deg, #122541, #071326);
      box-shadow: 0 24px 64px rgba(12, 48, 84, .14);
    }

    .impact-metric::before {
      position: absolute;
      top: 0;
      right: 0;
      width: 110px;
      height: 110px;
      content: "";
      background:
        linear-gradient(rgba(0, 216, 255, .13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 216, 255, .13) 1px, transparent 1px);
      background-size: 18px 18px;
      mask-image: linear-gradient(225deg, #000, transparent);
    }

    .impact-metric:nth-child(2) {
      transform: translateY(-26px);
    }

    .impact-metric-kicker {
      display: block;
      margin-bottom: 34px;
      color: var(--cyan);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .impact-metric strong {
      position: relative;
      display: block;
      margin-bottom: 20px;
      color: #f7fbff;
      font-size: clamp(38px, 3.6vw, 58px);
      line-height: .95;
      letter-spacing: -.055em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .impact-metric strong .impact-number-suffix {
      color: var(--cyan);
      font-size: .48em;
      letter-spacing: -.02em;
      white-space: nowrap;
      display: inline-flex;
      align-items: baseline;
      margin-left: .08ch;
    }

    .impact-number {
      display: inline-flex;
      align-items: baseline;
      gap: .08rem;
      max-width: 100%;
    }

    .impact-number-value {
      display: inline-block;
      color: inherit;
      font: inherit;
      letter-spacing: inherit;
      font-variant-numeric: tabular-nums;
      transition: color .24s ease, transform .24s ease;
      white-space: nowrap;
    }

    .impact-number.has-incremented .impact-number-value {
      color: var(--cyan);
      transform: translateY(-2px);
    }

    .impact-number.has-incremented {
      color: var(--cyan);
    }

    .impact-live-indicator {
      display: inline-flex;
      gap: 6px;
      align-items: center;
      margin-left: 10px;
      color: #52708d;
      font-size: 9px;
      letter-spacing: .08em;
    }

    .impact-live-indicator i {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #16b981;
      box-shadow: 0 0 0 4px rgba(22, 185, 129, .12);
      animation: impact-live-pulse 2.4s ease-in-out infinite;
    }

    @keyframes impact-live-pulse {
      50% {
        opacity: .5;
        transform: scale(.78);
      }
    }

    .impact-metric p {
      position: relative;
      margin: 0;
      font-size: 13px;
      line-height: 1.65;
    }

    .impact-demo-note {
      grid-column: 2;
      margin: -48px 0 0;
      color: #71839a;
      font-size: 11px;
      line-height: 1.5;
    }

    .site-header.is-compact,
    .site-header.is-menu-open {
      border-bottom-color: rgba(115, 161, 219, .15);
      background: rgba(5, 11, 23, .94);
      box-shadow: 0 14px 44px rgba(0, 0, 0, .22);
      backdrop-filter: blur(22px) saturate(140%);
    }

    .two-col {
      align-items: start;
    }

    .bullet-item {
      display: block;
      grid-template-columns: none;
      color: #5d6f86;
      border-color: #dce8f3;
      background: linear-gradient(135deg, #ffffff, #f5faff);
      box-shadow: 0 18px 48px rgba(14, 67, 117, .09);
    }

    .bullet-item strong {
      color: #10213a;
    }

    .bullet-item::after {
      border-color: rgba(0, 153, 215, .16);
    }

    .integration-steps {
      background:
        radial-gradient(circle at 12% 22%, rgba(0, 202, 238, .07), transparent 26rem),
        #f7fbff;
    }

    .integration-step {
      border-color: #d8e6f2;
      background: linear-gradient(120deg, #ffffff, #f7fbff);
      box-shadow: 0 18px 50px rgba(19, 67, 110, .08);
    }

    .integration-step:hover {
      border-color: rgba(0, 162, 214, .5);
      background: #ffffff;
      box-shadow: 0 24px 64px rgba(19, 67, 110, .13);
    }

    .integration-step::after,
    .integration-step.is-visible::after,
    .integration-step:hover::after {
      inset: 0 auto 0 0;
      width: 3px;
      opacity: 1;
      transform: none;
      background: linear-gradient(180deg, #00cfee, #1689ff);
    }

    .integration-step-index>span:first-child {
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      color: #ffffff;
      background: linear-gradient(145deg, #1689ff, #007bff);
      font-size: 0.9rem;
      line-height: 1;
      letter-spacing: 0.04em;
      animation: none;
      box-shadow: 0 10px 24px rgba(0, 124, 255, .2);
    }

    .integration-step-copy h3 {
      color: #10213a;
    }

    .integration-step-copy p {
      color: #607187;
    }

    .integration-visual>div {
      color: #a9bad0;
      border-color: rgba(42, 111, 171, .2);
      background: linear-gradient(145deg, #10223f, #09162a);
      box-shadow: 0 20px 46px rgba(9, 31, 57, .16);
    }

    .integration-visual>.integration-photo-card {
      color: #ffffff;
      background:
        linear-gradient(180deg, rgba(6, 19, 38, .18), rgba(6, 19, 38, .82)),
        url("./adaptive-systems-bg-1600.jpg") center / cover no-repeat;
    }

    .adapt-highlight-inner,
    .intent-highlight-inner {
      align-items: stretch;
      text-align: initial;
    }

    .adapt-highlight .label,
    .intent-highlight .label {
      align-self: center;
    }

    .adapt-highlight h2,
    .intent-highlight h2 {
      width: 100%;
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      gap: clamp(18px, 4svh, 46px);
    }

    .adapt-highlight-line-start,
    .intent-highlight-line-start {
      justify-self: start;
      text-align: left;
    }

    .adapt-highlight-line-end,
    .intent-highlight-line-end {
      justify-self: end;
      text-align: right;
    }

    .adapt-highlight-copy {
      margin: clamp(28px, 5svh, 52px) auto 0;
      text-align: center;
    }

    .adapt-highlight-actions {
      justify-content: center;
      text-align: center;
    }

    .integration-panel-row,
    .integration-channel,
    .usage-billing-tags span {
      color: #b9c8d9;
      border-color: rgba(132, 180, 225, .17);
      background: rgba(22, 43, 73, .9);
    }

    .integration-panel-row,
    .integration-step.is-visible .integration-panel-row {
      opacity: 1;
      transform: none;
      animation: none;
    }

    .use-examples {
      background:
        radial-gradient(circle at 88% 12%, rgba(0, 200, 238, .06), transparent 26rem),
        #ffffff;
    }

    .use-case-card {
      border-color: #d9e6f1;
      background: linear-gradient(145deg, #ffffff, #f6faff);
      box-shadow: 0 18px 48px rgba(15, 66, 111, .09);
    }

    .use-case-card:hover {
      border-color: rgba(0, 162, 214, .48);
      box-shadow: 0 26px 62px rgba(15, 66, 111, .14);
    }

    .use-case-card h3 {
      color: #10213a;
    }

    .use-case-command,
    .use-case-result {
      color: #607187;
      border-color: #dce8f3;
      background: #f5f9fd;
    }

    .use-case-command strong,
    .use-case-result strong {
      color: #243851;
    }

    #faq {
      background:
        radial-gradient(circle at 90% 10%, rgba(0, 156, 230, .07), transparent 28rem),
        #f7fbff;
    }

    .faq-item {
      border-color: #d8e5f0;
      background: #ffffff;
      box-shadow: 0 14px 38px rgba(15, 66, 111, .07);
    }

    .faq-item:hover,
    .faq-item[open] {
      border-color: rgba(0, 154, 211, .46);
    }

    .faq-item h3 {
      color: #10213a;
    }

    .faq-item p {
      color: #607187;
      border-color: #e2ebf3;
    }

    .faq-item summary::after {
      display: grid;
      width: 30px;
      height: 30px;
      flex: 0 0 30px;
      place-items: center;
      content: "+";
      color: #007eaf;
      border-color: rgba(0, 153, 211, .2);
      border-style: solid;
      border-width: 1px;
      border-radius: 3px;
      background: #effaff;
      font-size: 20px;
      font-weight: 500;
      line-height: 1;
      transition: transform 180ms ease;
    }

    .faq-item summary {
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: space-between;
    }

    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }

    .hero h1 {
      max-width: 640px;
      font-size: clamp(50px, 4.45vw, 68px);
      line-height: .96;
    }

    .hero-title-line {
      display: block;
      width: fit-content;
      max-width: 100%;
      white-space: nowrap;
    }

    .hero .phone-frame {
      container-type: inline-size;
    }

    .hero .phone-status {
      height: clamp(28px, 9cqw, 38px);
      padding-inline: clamp(12px, 4.6cqw, 18px);
      font-size: clamp(9px, 2.8cqw, 12px);
    }

    .hero .phone-pill {
      width: clamp(38px, 14cqw, 54px);
      height: clamp(12px, 4.2cqw, 16px);
    }

    .hero .phone-app {
      padding: clamp(11px, 5.4cqw, 21px);
      gap: clamp(7px, 3.2cqw, 13px);
      grid-template-rows: auto minmax(0, .9fr) minmax(0, 1fr) minmax(0, 1fr) auto;
      align-content: stretch;
    }

    .hero .phone-header {
      min-height: clamp(48px, 17cqw, 66px);
      padding: clamp(7px, 2.4cqw, 10px) clamp(9px, 3.2cqw, 13px);
      border-radius: clamp(12px, 4.6cqw, 18px);
    }

    .hero .phone-logo {
      width: clamp(48px, 15cqw, 62px);
    }

    .hero .phone-menu {
      width: clamp(24px, 7.8cqw, 31px);
      height: clamp(22px, 7.2cqw, 29px);
      gap: clamp(3px, 1cqw, 4px);
    }

    .hero .phone-menu span {
      width: clamp(15px, 4.8cqw, 19px);
    }

    .hero .phone-card {
      padding: clamp(10px, 4cqw, 15px);
      border-radius: clamp(13px, 4.7cqw, 18px);
    }

    .hero .phone-message {
      padding: clamp(10px, 3.5cqw, 13px);
      border-radius: clamp(12px, 4.2cqw, 16px);
    }

    .hero .phone-card,
    .hero .phone-message {
      display: flex;
      height: 100%;
      min-height: 0;
      flex-direction: column;
      justify-content: center;
    }

    .hero .chat-meta {
      display: flex;
      min-width: 0;
      margin-bottom: clamp(5px, 2cqw, 8px);
      gap: clamp(4px, 1.6cqw, 7px);
      font-size: clamp(7.5px, 2.35cqw, 9px);
    }

    .hero .chat-meta b {
      min-width: 0;
      flex: 1 1 auto;
      gap: clamp(4px, 1.6cqw, 7px);
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .hero .chat-meta span {
      flex: 1 1 0;
      margin-left: auto;
      font-size: clamp(7px, 2cqw, 8.5px);
    }

    .hero .chat-meta b::before,
    .hero .agent-bubble .chat-meta b::before {
      width: clamp(18px, 6.3cqw, 24px);
      height: clamp(18px, 6.3cqw, 24px);
    }

    .hero .user-bubble .chat-meta b::before {
      width: clamp(20px, 7.4cqw, 28px);
      height: clamp(20px, 7.4cqw, 28px);
    }

    .hero .phone-card strong {
      overflow-wrap: anywhere;
      font-size: clamp(12px, 3.9cqw, 15px);
      line-height: 1.36;
    }

    .hero .phone-message p {
      overflow-wrap: anywhere;
      font-size: clamp(11px, 3.35cqw, 13px);
      line-height: 1.44;
    }

    .hero .phone-input {
      min-height: clamp(38px, 12cqw, 46px);
      padding: clamp(4px, 1.55cqw, 6px) clamp(5px, 1.8cqw, 7px);
      gap: clamp(4px, 1.8cqw, 7px);
      font-size: clamp(8px, 2.8cqw, 11px);
      align-self: end;
    }

    .hero .phone-screen,
    .hero .phone-app {
      background: linear-gradient(180deg, #09172b 0%, #050d1a 100%);
    }

    .hero .phone-header {
      border-color: rgba(82, 164, 224, .2);
      background: linear-gradient(145deg, rgba(8, 24, 44, .98), rgba(4, 13, 27, .98));
      box-shadow: inset 0 1px rgba(255, 255, 255, .025);
    }

    .hero .phone-card.user-bubble {
      border: 1px solid rgba(138, 235, 255, .54);
      background: linear-gradient(135deg, #66e5f4 0%, #37a4fb 100%);
      box-shadow: 0 16px 32px rgba(0, 157, 237, .14);
    }

    .hero .phone-card.user-bubble .chat-meta,
    .hero .phone-card.user-bubble .chat-meta b,
    .hero .phone-card.user-bubble .chat-meta span {
      color: #061d33;
    }

    .hero .phone-card.user-bubble::after {
      border-left-color: #37a4fb;
    }

    .hero .phone-message.agent-bubble {
      color: #d4e0ef;
      border-color: rgba(91, 155, 211, .26);
      background: linear-gradient(145deg, #172b49 0%, #10213a 100%);
      box-shadow: inset 3px 0 rgba(0, 216, 255, .32);
    }

    .hero .phone-message.agent-bubble::after {
      border-right-color: #162a47;
    }

    .hero .phone-message.agent-bubble:nth-child(4) {
      background: linear-gradient(145deg, #142844 0%, #0d1c32 100%);
    }

    .hero .phone-message.agent-bubble:nth-child(4)::after {
      border-right-color: #132641;
    }

    .hero .phone-message .chat-meta span {
      color: #7f93ad;
    }

    .hero .phone-input {
      border-color: rgba(82, 164, 224, .24);
      background: #10233d;
      box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
    }

    .hero .phone-input .composer-text {
      border-color: rgba(255, 255, 255, .78);
      background: #f9fbff;
    }

    .hero .phone-frame {
      box-shadow:
        0 0 0 5px rgba(14, 28, 51, .88),
        0 28px 70px rgba(0, 0, 0, .48),
        0 0 40px rgba(0, 216, 255, .1);
    }

    .hero .external-node {
      width: 82px;
      height: 82px;
      gap: 6px;
      color: #c7d8eb;
      border-color: rgba(0, 216, 255, .22);
      background: linear-gradient(155deg, rgba(13, 35, 62, .96), rgba(5, 18, 35, .96));
      font-size: .6rem;
      box-shadow: 0 12px 26px rgba(0, 0, 0, .3);
    }

    .hero .external-node svg {
      width: 25px;
      height: 25px;
    }

    .hero .phone-input .composer-logo {
      width: clamp(23px, 7.8cqw, 30px);
      height: clamp(23px, 7.8cqw, 30px);
    }

    .hero .phone-input .composer-logo img {
      width: clamp(19px, 6.3cqw, 24px);
      height: clamp(19px, 6.3cqw, 24px);
    }

    .hero .phone-input .composer-text {
      height: clamp(27px, 8.4cqw, 32px);
      padding-inline: clamp(7px, 2.6cqw, 10px);
    }

    .hero .phone-input .composer-voice,
    .hero .phone-input .composer-send {
      width: clamp(23px, 7.4cqw, 28px);
      height: clamp(23px, 7.4cqw, 28px);
    }

    @media (min-width: 1081px) {
      .hero .mobile-preview {
        min-height: 0;
        align-self: start;
        margin-top: -48px;
      }

      .hero .phone-frame {
        width: min(420px, calc((100svh - var(--header-h) - 40px) * .4613), 100%);
      }
    }

    @media (max-width: 1080px) {
      :root {
        --header-h: 70px;
      }

      .hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(400px, .88fr);
        gap: 30px;
      }

      .hero h1 {
        font-size: clamp(44px, 5.2vw, 56px);
      }

      .hero .external-node,
      .hero .phone-external-map {
        display: none !important;
      }

      .site-header,
      .site-header.is-compact,
      .site-header.is-menu-open {
        --mobile-header-current-h: var(--header-h);
        min-height: var(--header-h);
        background: rgba(5, 11, 23, .96);
      }

      .nav,
      .site-header.is-compact .nav {
        display: flex;
        width: min(calc(100% - 32px), 960px);
        min-height: var(--header-h);
        margin-inline: auto;
        padding: 0;
        gap: 14px;
        align-items: center;
        justify-content: space-between;
      }

      .brand,
      .nav-actions,
      .nav-toggle {
        position: relative;
        z-index: 31;
      }

      .brand-logo,
      .site-header.is-compact .brand-logo {
        width: 112px;
      }

      .nav-actions {
        display: flex;
        flex: 0 0 auto;
        gap: 8px;
        margin-left: auto;
        align-items: center;
      }

      .nav-actions>.button-primary {
        display: none;
      }

      .panel-login {
        min-height: 40px;
        padding: 0 12px;
        color: #b9c9dc;
        border: 1px solid rgba(0, 216, 255, .2);
        border-radius: 4px;
        background: rgba(0, 216, 255, .05);
      }

      .nav-toggle,
      .site-header.is-compact .nav-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        padding: 0;
        overflow: hidden;
        color: var(--cyan);
        border: 1px solid rgba(0, 216, 255, .22);
        border-radius: 4px;
        background: rgba(0, 216, 255, .06);
        box-shadow: none;
        align-items: center;
        justify-content: center;
      }

      .nav-toggle span {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 16px;
        height: 2px;
        margin-left: -8px;
        border-radius: 99px;
        background: currentColor;
        transition: transform 180ms ease, opacity 150ms ease;
      }

      .nav-toggle span:nth-child(1) {
        transform: translateY(-5px);
      }

      .nav-toggle span:nth-child(2) {
        transform: translateY(0);
      }

      .nav-toggle span:nth-child(3) {
        transform: translateY(5px);
      }

      .nav-links {
        position: fixed;
        top: calc(var(--header-h) + 10px);
        right: 14px;
        left: 14px;
        z-index: 30;
        display: grid;
        width: auto;
        max-width: 480px;
        max-height: calc(100svh - var(--header-h) - 24px);
        margin-inline: auto;
        padding: 8px;
        gap: 2px;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        border: 1px solid rgba(0, 216, 255, .2);
        border-radius: 6px;
        background: rgba(5, 12, 25, .98);
        box-shadow: 0 24px 60px rgba(0, 0, 0, .42);
        backdrop-filter: blur(22px);
        transform: translateY(-8px);
        transition: opacity 160ms ease, transform 180ms ease, visibility 0s linear 180ms;
      }

      .nav-links a {
        display: flex;
        min-height: 48px;
        padding: 0 16px;
        color: #c4d2e2;
        border: 0;
        border-bottom: 1px solid rgba(129, 171, 225, .1);
        border-radius: 3px;
        background: transparent;
        box-shadow: none;
        font-size: 13px;
        font-weight: 700;
        align-items: center;
        justify-content: center;
        text-align: center;
      }

      .nav-links a:last-child {
        border-bottom: 0;
      }

      .nav-links a:hover,
      .nav-links a:focus-visible {
        color: #03101d;
        background: linear-gradient(135deg, var(--cyan), #3d9bff);
      }

      .site-header.is-menu-open .nav-links {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s;
      }

      .site-header.is-menu-open .nav-toggle span:nth-child(1) {
        transform: translateY(0) rotate(45deg);
      }

      .site-header.is-menu-open .nav-toggle span:nth-child(2) {
        opacity: 0;
      }

      .site-header.is-menu-open .nav-toggle span:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
      }

      .operation-impact .shell {
        grid-template-columns: 1fr;
        align-items: start;
        padding-inline: 16px;
      }

      .operation-impact-copy {
        max-width: 720px;
      }

      .impact-demo-note {
        grid-column: 1;
        margin-top: -24px;
      }
    }

    @media (max-width: 860px) {
      .hero {
        padding: calc(var(--header-h) + 42px) 0 76px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-copy {
        max-width: 650px;
        text-align: left;
        justify-self: start;
      }

      .hero-copy .eyebrow {
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
        line-height: 1.45;
      }

      .hero h1 {
        max-width: 650px;
        margin-right: 0;
        margin-left: 0;
        font-size: clamp(44px, 8vw, 58px);
      }

      .hero-subtitle {
        max-width: 610px;
        margin-right: 0;
        margin-left: 0;
      }

      .hero .external-node,
      .hero .phone-external-map {
        display: none !important;
      }

      .hero .mobile-preview {
        width: min(86vw, 390px);
        max-width: 390px;
        margin-inline: auto;
        transform: none;
      }

      .hero .phone-frame {
        width: 100%;
      }
    }

    @media (max-width: 620px) {

      .nav,
      .site-header.is-compact .nav {
        width: calc(100% - 24px);
        gap: 8px;
      }

      .brand-logo,
      .site-header.is-compact .brand-logo {
        width: 104px;
      }

      .panel-login {
        width: 40px;
        min-width: 40px;
        padding: 0;
      }

      .panel-login span {
        display: none;
      }

      .nav-links {
        right: 12px;
        left: 12px;
      }

      .operation-impact {
        padding: 82px 0;
      }

      .operation-impact .shell {
        width: calc(100% - 24px);
        padding-inline: 0;
        margin-inline: auto;
      }

      .operation-impact h2 {
        font-size: clamp(38px, 11vw, 52px);
      }

      .impact-metrics {
        grid-template-columns: 1fr;
      }

      .impact-metric,
      .impact-metric:nth-child(2) {
        min-height: 230px;
        transform: none;
      }

      .impact-metric strong {
        font-size: clamp(48px, 15vw, 64px);
      }

      .hero-operation-background,
      .hero-background-video {
        object-position: 64% center;
      }

      .hero {
        padding: calc(var(--header-h) + 30px) 0 68px;
      }

      .hero-inner {
        gap: 42px;
      }

      .hero-copy .eyebrow {
        margin-bottom: 22px;
        padding: 8px 10px;
        font-size: 9px;
        letter-spacing: .12em;
      }

      .hero h1 {
        max-width: 100%;
        font-size: clamp(38px, 10.8vw, 45px);
        line-height: .98;
        letter-spacing: -.052em;
      }

      .hero-subtitle {
        max-width: 100%;
        margin: 24px 0 26px;
        font-size: 15px;
        line-height: 1.65;
      }

      .hero .mobile-preview {
        width: min(84vw, 330px);
      }

      .impact-demo-note {
        margin-top: 0;
      }
    }

    /* Final hero composition: one clear story, one readable product visual. */
    .hero-inner {
      grid-template-columns: minmax(0, 1fr) 560px;
      gap: clamp(28px, 4vw, 58px);
    }

    .hero-copy {
      max-width: 650px;
    }

    .hero .phone-external-map {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .hero .phone-external-map path {
      stroke-width: 2.4;
      stroke-dasharray: 6 14.4;
      opacity: .96;
      animation: network-flow 2.2s linear infinite;
      filter: drop-shadow(0 0 5px rgba(0, 216, 255, .46));
    }

    .hero .external-node {
      display: flex !important;
      right: 55px;
      width: 86px;
      height: 86px;
      gap: 6px;
      font-size: 9px;
      border-radius: 18px;
      border-color: rgba(0, 216, 255, .4);
      background: rgba(7, 24, 45, .96);
      transform: none !important;
      animation: none !important;
      box-shadow: 0 14px 30px rgba(0, 0, 0, .28);
    }

    .hero .external-node::before {
      display: none !important;
    }

    .hero .external-node svg {
      width: 24px;
      height: 24px;
    }

    .hero .external-node.api {
      top: 0;
    }

    .hero .external-node.docs {
      top: 20.5%;
    }

    .hero .external-node.legacy {
      top: 42.5%;
    }

    .hero .external-node.process {
      top: 65%;
    }

    .hero .external-node.gov {
      top: 87.5%;
      font-size: 8px;
    }

    .hero .mobile-preview {
      width: 100%;
      max-width: 560px;
      min-height: 0;
      place-items: center start;
      justify-self: end;
      align-self: center;
      filter: drop-shadow(0 30px 54px rgba(0, 0, 0, .44));
    }

    .hero .phone-frame {
      width: 100%;
      max-width: 350px;
      padding: 7px;
      border: 1px solid rgba(83, 160, 216, .36);
      border-radius: 38px;
      background: #06101e;
      box-shadow:
        0 0 0 4px rgba(13, 29, 51, .9),
        0 24px 64px rgba(0, 0, 0, .48),
        0 0 34px rgba(0, 188, 232, .09);
    }

    .hero .phone-screen {
      border-color: rgba(104, 162, 207, .24);
      border-radius: 31px;
      background: #071426;
    }

    .hero .phone-status {
      height: 34px;
      padding-inline: 18px;
      color: #bac8d9;
      font-size: 11px;
    }

    .hero .phone-pill {
      width: 48px;
      height: 14px;
    }

    .hero .phone-app {
      display: grid;
      grid-template-rows: auto minmax(0, 1fr) auto;
      padding: 16px;
      gap: 12px;
      background: linear-gradient(180deg, #0a192e 0%, #061120 100%);
    }

    .hero .phone-conversation {
      display: flex;
      min-height: 0;
      flex-direction: column;
      justify-content: center;
      gap: clamp(12px, 4cqw, 16px);
    }

    .hero .phone-header {
      min-height: 58px;
      padding: 9px 12px;
      flex: 0 0 auto;
      border-color: rgba(72, 146, 205, .22);
      border-radius: 16px;
      background: #071426;
      box-shadow: none;
    }

    .hero .phone-logo {
      width: 60px;
    }

    .hero .phone-menu {
      width: 28px;
      height: 28px;
    }

    .hero .phone-menu span {
      width: 18px;
    }

    .hero .phone-card,
    .hero .phone-message {
      display: flex;
      width: calc(100% - 10px);
      height: auto;
      min-height: 0;
      padding: 14px 15px;
      flex: 0 0 auto;
      justify-content: center;
      border-radius: 16px;
    }

    .hero .phone-card.user-bubble {
      height: clamp(152px, 49cqw, 184px);
      color: #031522;
      border: 1px solid rgba(174, 242, 255, .74);
      background: linear-gradient(135deg, #53d7e9 0%, #329ee9 100%);
      --message-tail-color: #329ee9;
      --message-tail-size: clamp(7px, 1.8cqw, 9px);
      --message-tail-offset: clamp(11px, 3.2cqw, 16px);
      box-shadow: 0 12px 26px rgba(0, 157, 237, .14);
    }

    .hero .phone-card.user-bubble::after {
      border-left-color: #329ee9;
    }

    .hero .phone-message.agent-bubble {
      height: clamp(112px, 34cqw, 128px);
      color: #dbe6f2;
      border: 1px solid rgba(89, 145, 194, .28);
      background: #10243d;
      --message-tail-color: #10243d;
      --message-tail-size: clamp(7px, 1.8cqw, 9px);
      --message-tail-offset: clamp(11px, 3.2cqw, 16px);
      box-shadow: inset 3px 0 #0b9fc9;
    }

    .hero .phone-message.agent-bubble:last-child {
      height: clamp(126px, 39cqw, 146px);
      background: #0d1f36;
      --message-tail-color: #0d1f36;
    }

    .hero .phone-message.agent-bubble::after {
      border-right-color: #10243d;
    }

    .hero .phone-message.agent-bubble:last-child::after {
      border-right-color: #0d1f36;
    }

    .hero .chat-meta {
      margin-bottom: 9px;
      gap: 6px;
      font-size: 9px;
    }

    .hero .chat-meta span {
      font-size: 8px;
    }

    .hero .chat-meta b::before,
    .hero .agent-bubble .chat-meta b::before {
      width: 22px;
      height: 22px;
    }

    .hero .user-bubble .chat-meta b::before {
      width: 26px;
      height: 26px;
    }

    .hero .phone-card strong {
      font-size: 15px;
      line-height: 1.38;
    }

    .hero .phone-message p {
      color: #d3dfed;
      font-size: 13px;
      line-height: 1.45;
    }

    .hero .phone-input {
      min-height: 44px;
      margin-top: 0;
      padding: 5px 6px;
      gap: 6px;
      flex: 0 0 auto;
      border-color: rgba(76, 151, 207, .3);
      background: #10233c;
      box-shadow: none;
    }

    .hero .phone-input .composer-logo {
      width: 28px;
      height: 28px;
    }

    .hero .phone-input .composer-logo img {
      width: 22px;
      height: 22px;
    }

    .hero .phone-input .composer-text {
      height: 32px;
      padding-inline: 10px;
      color: #65758d;
      font-size: 11px;
      border-color: #dfe8f2;
      background: #f8fbff;
    }

    .hero .phone-input .composer-voice,
    .hero .phone-input .composer-send {
      width: 28px;
      height: 28px;
    }

    @media (min-width: 1081px) {
      .hero .mobile-preview {
        left: 30px;
        margin-top: -18px;
      }

      .hero .phone-frame {
        width: 340px;
      }
    }

    @media (min-width: 1600px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr) 620px;
        gap: clamp(52px, 4vw, 76px);
      }

      .hero .mobile-preview {
        left: 260px;
        max-width: 620px;
      }

      .hero .phone-frame {
        width: 330px;
        max-width: 330px;
      }

      .hero .external-node {
        right: 145px;
        width: 86px;
        height: 86px;
        gap: 6px;
        font-size: 9px;
      }

      .hero .external-node svg {
        width: 24px;
        height: 24px;
      }

      .hero .external-node.gov {
        font-size: 8px;
      }
    }

    @media (max-width: 1080px) {
      .whatsapp {
        display: none !important;
      }

      .hero-inner {
        grid-template-columns: minmax(0, 1fr) 440px;
        gap: 24px;
      }

      .hero .mobile-preview {
        max-width: 440px;
      }

      .hero .phone-frame {
        width: 310px;
      }

      .hero .phone-external-map {
        width: 100%;
      }

      .hero .external-node {
        right: 0;
        width: 68px;
        height: 68px;
        gap: 4px;
        font-size: 7.5px;
        border-radius: 16px;
      }

      .hero .external-node svg {
        width: 19px;
        height: 19px;
      }

      .hero .external-node.gov {
        font-size: 6.5px;
      }
    }

    @media (max-width: 860px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .hero .mobile-preview {
        display: grid;
        width: min(92vw, calc(100vw - 40px));
        max-width: 420px;
        place-items: center start;
        justify-content: initial;
        justify-self: center;
      }
    }

    @media (max-width: 768px) {
      :root {
        --shell: 100%;
      }

      .site-header,
      .site-header.is-compact,
      .site-header.is-menu-open {
        min-height: 58px;
      }

      .nav,
      .site-header.is-compact .nav {
        width: calc(100% - 40px);
        min-height: 58px;
        gap: 8px;
      }

      .brand-logo,
      .site-header.is-compact .brand-logo {
        width: 108px;
      }

      .nav-actions {
        gap: 6px;
      }

      .panel-login {
        width: 40px;
        min-width: 40px;
        padding: 0;
      }

      .panel-login span {
        display: none;
      }

      .nav-toggle,
      .site-header.is-compact .nav-toggle {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
      }

      .hero-operation-background,
      .hero-background-video {
        object-position: 50% center;
      }

      .hero {
        overflow-x: hidden;
        padding: calc(var(--header-h) + 16px) 16px 48px;
      }

      .hero-inner {
        width: 100%;
        max-width: 100%;
      }

      .hero::before {
        background:
          linear-gradient(90deg, rgba(5, 8, 13, .88) 0%, rgba(7, 10, 15, .74) 43%, rgba(9, 13, 18, .38) 100%),
          radial-gradient(circle at 82% 42%, rgba(112, 194, 210, .025), transparent 28rem),
          linear-gradient(rgba(190, 202, 214, .034) 1px, transparent 1px),
          linear-gradient(90deg, rgba(190, 202, 214, .034) 1px, transparent 1px);
      }

      .hero-copy {
        position: relative;
        z-index: 3;
        border-radius: 12px;
      }

      .hero-copy > * {
        position: relative;
        z-index: 2;
      }

      .hero-copy::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100vw;
        margin: -6px -2px;
        border-radius: 14px;
        z-index: 1;
        background: linear-gradient(180deg, rgba(4, 8, 16, 0.15), rgba(4, 8, 16, 0.36));
        left: 50%;
        transform: translateX(-50%);
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .hero-copy {
        width: 100%;
        max-width: 100%;
      }

      .hero-copy .eyebrow {
        margin-bottom: 20px;
        padding: 7px 10px;
        font-size: 9px;
      }

      .hero h1 {
        margin-bottom: 8px;
        font-size: clamp(34px, 10.5vw, 42px);
        line-height: 1.01;
      }

      .hero-title-line {
        width: 100%;
        max-width: 100%;
        display: block;
        white-space: normal;
        text-wrap: balance;
      }

      .hero-subtitle {
        max-width: 100%;
        margin: 12px 0 20px;
        font-size: clamp(16px, 4.1vw, 17px);
        line-height: 1.45;
        color: rgba(240, 246, 255, 0.9);
      }

      .hero .button {
        width: 100%;
        margin-top: 6px;
        min-height: 50px;
        font-size: 15px;
        font-weight: 600;
      }

      .hero .mobile-preview {
        width: min(90vw, 382px);
        max-width: min(382px, 100vw);
        margin-inline: auto;
        margin-top: 22px;
      }

      .hero .phone-frame {
        width: min(86vw, 366px);
        max-width: 366px;
        margin-inline: auto;
        border-right-color: rgba(0, 0, 0, 0);
      }

      .hero .phone-external-map {
        display: none !important;
      }

      .hero .external-node {
        display: flex;
        right: -22px;
        width: 62px;
        height: 62px;
        gap: 2px;
        overflow: hidden;
        border-radius: 14px;
        font-size: 8px;
        line-height: 1.05;
        z-index: 3;
        padding: 4px 2px;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        white-space: normal;
        overflow: hidden;
      }

      .hero .external-node.api {
        top: 9%;
      }

      .hero .external-node.docs {
        top: 25%;
      }

      .hero .external-node.legacy {
        top: 41%;
      }

      .hero .external-node.process {
        top: 57%;
      }

      .hero .external-node.gov {
        top: 73%;
      }

      .hero .external-node::before,
      .hero .external-node::after,
      .hero .external-node::marker {
        display: none !important;
      }

      .hero .external-node svg {
        width: 22px;
        height: 22px;
        margin: 0 0 2px 0;
        flex: 0 0 auto;
        display: block;
      }

      .hero .phone-card,
      .hero .phone-message {
        padding: clamp(12px, 4.4cqw, 16px);
        min-height: 0;
      }

      .hero .phone-card strong,
      .hero .phone-message p {
        font-size: 19px;
      }

      .hero .phone-input .composer-text {
        font-size: 12px;
      }

      .hero .chat-meta {
        margin-bottom: 10px;
      }

      .hero .chat-meta b {
        gap: 6px;
      }

      .hero .chat-meta b::before,
      .hero .agent-bubble .chat-meta b::before {
        width: 24px;
        height: 24px;
      }

      .hero .user-bubble .chat-meta b::before {
        width: 28px;
        height: 28px;
      }
    }

    @media (max-width: 620px) {
      :root {
        --shell: 100%;
      }

      .hero .mobile-preview {
        width: min(90vw, 368px);
        max-width: min(368px, 100vw);
        justify-self: stretch;
        margin-inline: auto;
        margin-top: 22px;
      }

      .hero {
        padding: calc(var(--header-h) + 14px) 0 44px;
        overflow-x: hidden;
        padding-inline: 14px;
      }

      .hero-copy {
        width: min(100%, 100%);
      }

      .hero-title-line {
        text-wrap: balance;
      }

      .hero .button {
        width: 100%;
        min-height: 50px;
        margin-top: 6px;
        font-size: 15px;
        font-weight: 600;
      }

      .hero h1 {
        font-size: clamp(33px, 10.1vw, 40px);
        line-height: 1.0;
      }

      .hero-subtitle {
        margin: 14px 0 20px;
        font-size: clamp(16px, 4.1vw, 17px);
        line-height: 1.45;
      }

      .hero .phone-frame {
        width: min(89vw, 354px);
        max-width: 354px;
        border-right-color: rgba(0, 0, 0, 0);
      }

      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero .phone-external-map {
        display: none !important;
        width: 100%;
      }

      .hero .external-node {
        right: -22px;
        width: 60px;
        height: 60px;
        font-size: 8px;
        line-height: 1.05;
        border-radius: 14px;
        overflow: hidden;
        padding: 4px 2px;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        white-space: normal;
      }

      .hero .external-node::before,
      .hero .external-node::after,
      .hero .external-node::marker {
        display: none !important;
      }

      .hero .external-node.api {
        top: 9%;
      }

      .hero .external-node.docs {
        top: 25%;
      }

      .hero .external-node.legacy {
        top: 41%;
      }

      .hero .external-node.process {
        top: 57%;
      }

      .hero .external-node.gov {
        top: 73%;
      }

      .hero .phone-card.user-bubble {
        height: clamp(132px, 46cqw, 158px);
      }

      .hero .phone-message.agent-bubble {
        height: clamp(98px, 32cqw, 112px);
      }

      .hero .phone-message.agent-bubble:last-child {
        height: clamp(112px, 36cqw, 128px);
      }

      .hero .phone-card strong {
        font-size: 19px;
      }

      .hero .phone-message p {
        font-size: 17px;
      }

      .hero .chat-meta {
        gap: 4px;
        font-size: 7px;
      }

      .hero .chat-meta b {
        flex: 1 1 auto;
        gap: 4px;
        overflow: visible;
        text-overflow: clip;
      }

      .hero .chat-meta span {
        flex: 0 0 auto;
        font-size: 6.5px;
      }

      .hero .phone-input {
        gap: 4px;
        padding-inline: 5px;
      }

      .hero .phone-input .composer-text {
        height: 30px;
        padding-inline: 8px;
        overflow: hidden;
        font-size: 13px;
        line-height: 1;
        white-space: nowrap;
      }

      .hero .phone-input .composer-logo,
      .hero .phone-input .composer-voice,
      .hero .phone-input .composer-send {
        width: 25px;
        height: 25px;
      }
    }


    @media (max-width: 768px) {
      :root {
        --shell: calc(100% - 32px);
      }

      html,
      body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
      }

      main > section,
      main > section[id],
      .footer {
        scroll-margin-top: calc(var(--header-h) + 12px);
      }

      .shell,
      .operation-impact .shell,
      .adapt-highlight-inner,
      .intent-highlight-inner,
      .footer-grid {
        width: var(--shell);
        max-width: calc(100% - 32px);
        margin-inline: auto;
        padding-inline: 0;
      }

      .section,
      .section.compact,
      .cta {
        padding-inline: 0;
      }

      .section h2,
      .cta h2,
      .integration-step-copy h3,
      .use-case-card h3,
      .faq-item h3,
      .footer p,
      .footer a {
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: normal;
      }

      .two-col,
      .integration-flow,
      .integration-step,
      .integration-visual,
      .use-case-grid,
      .use-case-card,
      .faq-grid,
      .faq-item,
      .contact-form,
      .bullet-list,
      .bullet-item,
      .dark-mock,
      .impact-metrics,
      .impact-metric {
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }

      .hero {
        padding-inline: 16px;
      }

      .hero-inner,
      .hero-copy {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
      }

      .hero .mobile-preview {
        width: 100%;
        max-width: 330px;
        margin-inline: auto;
        transform: none;
      }

      .hero .phone-frame {
        width: 100%;
        max-width: 330px;
        margin-inline: auto;
      }

      .hero .phone-external-map,
      .hero .external-node {
        display: none !important;
      }

      .adapt-highlight,
      .intent-highlight {
        min-height: min(680px, 100svh);
        max-height: none;
        padding: 0;
        overflow: hidden;
      }

      .adapt-highlight-inner,
      .intent-highlight-inner {
        min-height: min(680px, 100svh);
        padding-block: 76px;
        align-items: stretch;
        justify-content: center;
        text-align: center;
      }

      .adapt-highlight .label,
      .intent-highlight .label {
        align-self: center;
        max-width: 100%;
        margin: 0 0 28px;
        font-size: 0.64rem;
        line-height: 1.45;
        text-align: center;
        text-wrap: balance;
      }

      .adapt-highlight h2,
      .intent-highlight h2 {
        width: 100%;
        max-width: 100%;
        margin: 0;
        gap: 24px;
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.04;
        letter-spacing: -0.045em;
      }

      .adapt-highlight-line,
      .intent-highlight-line,
      .adapt-highlight-line-start,
      .adapt-highlight-line-end,
      .intent-highlight-line-start,
      .intent-highlight-line-end {
        width: 100%;
        max-width: 100%;
        justify-self: center;
        color: inherit;
        text-align: center;
        text-wrap: balance;
        overflow-wrap: break-word;
        opacity: 1;
        transform: none;
        animation: none !important;
      }

      .adapt-highlight-line-end,
      .intent-highlight-line-end {
        color: var(--cyan);
      }

      .adapt-highlight-copy {
        width: 100%;
        max-width: 100%;
        margin: 32px auto 0;
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
        text-wrap: pretty;
      }

      .adapt-highlight-actions {
        width: 100%;
        margin-top: 28px;
        justify-content: center;
        text-align: center;
      }

      .adapt-highlight-actions .button {
        width: min(100%, 300px);
        min-width: 0;
      }

      .integration-step-index > span:first-child {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 0.78rem;
      }

      .integration-step {
        padding: 20px;
      }

      .integration-visual {
        min-height: 0;
      }

      .contact-form input,
      .contact-form textarea,
      .contact-form button {
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }
    }

    @media (max-width: 420px) {
      :root {
        --shell: calc(100% - 28px);
      }

      .shell,
      .operation-impact .shell,
      .adapt-highlight-inner,
      .intent-highlight-inner,
      .footer-grid {
        max-width: calc(100% - 28px);
      }

      .section h2,
      .cta h2 {
        font-size: clamp(32px, 9.7vw, 40px);
        line-height: 1.06;
      }

      .adapt-highlight h2,
      .intent-highlight h2 {
        font-size: clamp(32px, 9.4vw, 39px);
      }

      .faq-item summary {
        gap: 14px;
        padding: 20px;
      }

      .faq-item h3 {
        font-size: 1rem;
        line-height: 1.35;
      }

      .contact-form {
        padding: 20px;
      }
    }
