:root {
      --bg: #111927;
      --bg-deep: #09111d;
      --surface: #172234;
      --surface-2: #202c40;
      --card-bg: rgba(32,40,54,.72);
      --card-bg-hover: rgba(36,45,60,.78);
      --card-border: rgba(255,255,255,.11);
      --card: rgba(255,255,255,.055);
      --card-strong: rgba(255,255,255,.085);
      --line: rgba(255,255,255,.105);
      --text: #f7f9fc;
      --muted: #a5b0c2;
      --muted-2: #727f93;
      --honey: #f6a313;
      --honey-light: #ffc04a;
      --honey-dark: #d98100;
      --green: #58d68d;
      --red: #ff5e68;
      --blue: #4da3ff;
      --purple: #a56bff;
      --shadow: 0 22px 70px rgba(0,0,0,.34);
      --max: 1180px;
      --nav-max: 1644px;
      --radius: 8px;
      --transition: .22s ease;
      --fs-label: 11px;
      --fs-nav: 15px;
      --fs-small: 13px;
      --fs-body: 15px;
      --fs-body-lg: clamp(15px, 1.18vw, 17px);
      --fs-card-title: clamp(16px, 1.32vw, 18px);
      --fs-h1: clamp(36px, 4.15vw, 52px);
      --fs-h2: clamp(30px, 3.05vw, 40px);
      --lh-tight: 1.12;
      --lh-heading: 1.16;
      --lh-body: 1.48;
      --fw-regular: 400;
      --fw-medium: 500;
      --fw-semibold: 600;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      background:
        linear-gradient(180deg, #242b3a 0, #182130 520px, #101927 1180px, #0b1421 100%);
      color: var(--text);
      font-size: var(--fs-body);
      line-height: var(--lh-body);
      font-weight: var(--fw-regular);
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    h1, h2, h3, p { margin-top: 0; }
    h1 {
      margin-bottom: 22px;
      max-width: 620px;
      font-size: var(--fs-h1);
      line-height: var(--lh-tight);
      letter-spacing: 0;
      font-weight: var(--fw-semibold);
    }
    h2 {
      margin-bottom: 14px;
      font-size: var(--fs-h2);
      line-height: var(--lh-heading);
      letter-spacing: 0;
      font-weight: var(--fw-semibold);
    }
    h3 {
      margin-bottom: 10px;
      font-size: var(--fs-card-title);
      line-height: var(--lh-heading);
      font-weight: var(--fw-semibold);
    }
    p { color: var(--muted); }

    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(31,39,55,.96);
      backdrop-filter: blur(18px);
    }
    .nav-inner {
      min-height: 80px;
      max-width: var(--nav-max);
      margin: 0 auto;
      padding: 10px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 25px;
      line-height: 1;
      font-weight: var(--fw-semibold);
      letter-spacing: 0;
    }
    .brand-accent { color: var(--honey); }
    .brand-logo {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      color: var(--muted);
      font-size: var(--fs-nav);
      line-height: 1;
      font-weight: var(--fw-medium);
    }
    .nav-links a:hover { color: var(--text); }
    .nav-login {
      color: var(--text);
      font-size: var(--fs-nav);
      line-height: 1;
      font-weight: var(--fw-semibold);
      white-space: nowrap;
      margin-left: -2px;
    }
    .nav-login:hover { color: var(--honey-light); }
    .nav .btn-primary {
      min-height: 38px;
      padding: 0 20px;
      border-radius: 10px;
      font-size: 13px;
      line-height: 1;
      font-weight: var(--fw-semibold);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.035);
    }
    .lang-switch[hidden] { display: none; }
    .lang-switch button {
      min-width: 34px;
      height: 26px;
      border: 0;
      border-radius: 999px;
      color: var(--muted);
      background: transparent;
      font: inherit;
      font-size: 11px;
      font-weight: var(--fw-semibold);
      line-height: 1;
      cursor: pointer;
      transition: color var(--transition), background var(--transition);
    }
    .lang-switch button.active {
      color: #15100a;
      background: var(--honey);
    }

    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font: inherit;
      font-weight: var(--fw-semibold);
      cursor: pointer;
      white-space: nowrap;
      transition: transform var(--transition), background var(--transition), border-color var(--transition);
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary {
      color: #15100a;
      background: var(--honey);
    }
    .btn-primary:hover { background: var(--honey-light); }
    .btn-secondary {
      color: var(--text);
      border-color: var(--line);
      background: rgba(255,255,255,.035);
    }

    .section {
      max-width: var(--max);
      margin: 0 auto;
      padding: 86px 22px;
    }
    #roles {
      padding-top: 78px;
      padding-bottom: 78px;
    }
    .section-head {
      max-width: 820px;
      margin-bottom: 32px;
    }
    .section-label,
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      color: var(--honey);
      font-size: var(--fs-label);
      font-weight: var(--fw-semibold);
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .lead {
      max-width: 690px;
      color: #c7cfdb;
      font-size: var(--fs-body-lg);
    }

    .hero {
      max-width: none;
      width: 100%;
      min-height: calc(100vh - 93px);
      position: relative;
      display: flex;
      align-items: center;
      margin: 0;
      padding-left: max(22px, calc((100% - var(--max)) / 2 + 22px));
      padding-right: max(22px, calc((100% - var(--max)) / 2 + 22px));
      padding-top: 64px;
      padding-bottom: 64px;
      background: #000;
      overflow: hidden;
    }
    .hero-video {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .18;
      pointer-events: none;
    }
    .hero:before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.82) 41%, rgba(0,0,0,.24) 66%, rgba(0,0,0,0) 100%);
      pointer-events: none;
    }
    .hero-copy {
      position: relative;
      z-index: 3;
      width: min(650px, 52%);
    }
    .hero h1 {
      max-width: 650px;
      margin-bottom: 26px;
      font-size: clamp(38px, 3.55vw, 52px);
      line-height: 1.18;
      font-weight: var(--fw-semibold);
    }
    .hero-title-line {
      display: block;
      white-space: nowrap;
    }
    .hero-title-accent {
      color: var(--honey);
    }
    .hero .eyebrow {
      gap: 0;
      margin-bottom: 32px;
      font-size: 14px;
      line-height: 1.1;
      font-weight: var(--fw-semibold);
      letter-spacing: .08em;
    }
    .hero .lead {
      max-width: 610px;
      font-size: clamp(16px, 1.2vw, 18px);
      line-height: 1.55;
      font-weight: var(--fw-regular);
      color: #aebbd0;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 36px;
    }
    .hero-actions .btn {
      min-height: 48px;
      padding: 0 24px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: var(--fw-semibold);
    }
    .hero-actions .btn-secondary {
      color: #111;
      border-color: #fff;
      background: #fff;
    }
    .capterra-link {
      text-decoration: underline;
      text-decoration-color: rgba(246,163,19,.58);
      text-decoration-thickness: 1px;
      text-underline-offset: 4px;
      transition: color var(--transition), text-decoration-color var(--transition);
    }
    .capterra-link:hover,
    .capterra-link:focus-visible {
      color: var(--honey-light);
      text-decoration-color: currentColor;
    }
    .capterra-link:focus-visible {
      outline: 2px solid var(--honey);
      outline-offset: 4px;
      border-radius: 2px;
    }
    .hero-capterra-link {
      display: inline-block;
      margin-top: 17px;
      color: #b8c2d1;
      font-size: 14px;
      line-height: 1.5;
      font-weight: var(--fw-medium);
    }
    .hero-bg-image {
      position: absolute;
      z-index: 2;
      top: 46%;
      right: max(-30px, calc((100% - var(--max)) / 2 - 120px));
      width: min(660px, 48%);
      transform: translateY(-50%);
      pointer-events: none;
    }
    .figma-hero-img {
      width: 100%;
      height: auto;
      max-height: none;
      object-fit: contain;
      opacity: .98;
      filter: none;
    }
    .cards-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .card {
      border: 1px solid var(--card-border);
      border-radius: 8px;
      background: var(--card-bg);
      padding: 19px;
    }
    .card:hover { background: var(--card-bg-hover); }
    .role-card {
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
    }
    .competency-card {
      min-height: 300px;
    }
    .competencies-section {
      padding-top: 70px;
      padding-bottom: 70px;
    }
    .competencies-section .section-head {
      margin-bottom: 30px;
    }
    .competencies-section h2 {
      max-width: 820px;
      font-weight: var(--fw-semibold);
    }
    .competencies-section .section-head p {
      max-width: 820px;
      color: #aeb8c8;
      font-size: 16px;
      line-height: 1.55;
      font-weight: var(--fw-regular);
    }
    .competencies-section .cards-3 {
      gap: 20px;
    }
    .competency-card {
      min-height: 238px;
      padding: 20px 22px;
      border-color: var(--card-border);
      border-radius: 8px;
      background: var(--card-bg);
    }
    .competency-card:hover {
      background: var(--card-bg-hover);
    }
    .competency-card h3 {
      margin-bottom: 14px;
      font-size: 18px;
      line-height: 1.18;
      font-weight: var(--fw-semibold);
    }
    .competency-card p {
      color: #aeb8c8;
      font-size: 14px;
      line-height: 1.5;
      font-weight: var(--fw-regular);
    }
    .role-card.active {
      border-color: var(--card-border);
      background: var(--card-bg);
    }
    .role-label {
      display: inline-flex;
      width: max-content;
      margin-bottom: 16px;
      padding: 6px 10px;
      border-radius: 7px;
      color: var(--honey);
      background: rgba(136,95,26,.54);
      font-size: var(--fs-label);
      font-weight: var(--fw-semibold);
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .role-card h3 {
      margin-bottom: 12px;
      font-size: var(--fs-card-title);
      line-height: 1.16;
      font-weight: var(--fw-semibold);
    }
    .role-card p {
      color: #aab6c8;
      font-size: 14px;
      line-height: 1.5;
      font-weight: var(--fw-regular);
    }
    .mini-list {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 8px;
      color: #aab6c8;
      font-size: var(--fs-small);
    }
    .mini-list li {
      position: relative;
      padding-left: 20px;
    }
    .mini-list li:before {
      content: "";
      position: absolute;
      left: 0;
      top: .58em;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--honey);
    }

    .band {
      background: transparent;
    }
    .split {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 58px;
      align-items: start;
    }
    .risk-split {
      align-items: center;
    }
    .risk-split h2 {
      font-weight: var(--fw-semibold);
    }
    .risk-copy {
      display: grid;
      gap: 21px;
      margin-top: 36px;
      color: #aab6c8;
      font-size: 15px;
      line-height: 1.6;
    }
    .risk-copy p {
      position: relative;
      margin: 0;
      padding-left: 36px;
      color: #aeb8c8;
    }
    .risk-copy p:before {
      content: "!";
      position: absolute;
      left: 0;
      top: .27em;
      width: 18px;
      height: 18px;
      display: grid;
      place-items: center;
      border: 1px solid var(--honey);
      border-radius: 50%;
      color: var(--honey);
      font-size: 10px;
      font-weight: var(--fw-medium);
      line-height: 1;
    }
    .risk-list {
      display: grid;
      gap: 19px;
    }
    .risk-row {
      position: relative;
      min-height: 80px;
      padding: 18px 24px 18px 104px;
      border: 1px solid var(--card-border);
      border-radius: 9px;
      background: var(--card-bg);
    }
    .risk-row .num {
      position: absolute;
      left: 28px;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: rgba(116,83,31,.62);
      font-size: 13px;
      font-weight: var(--fw-medium);
      letter-spacing: 0;
    }
    .risk-row p {
      margin: 0;
      color: #aeb8c8;
      font-size: 15px;
      line-height: 1.52;
      font-weight: var(--fw-regular);
    }
    .num {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: var(--honey);
      background: rgba(136,95,26,.54);
      font-weight: var(--fw-medium);
      font-size: var(--fs-label);
      letter-spacing: .03em;
    }

    .analytics-process-head {
      max-width: 940px;
      margin-bottom: 42px;
    }
    .analytics-process-head h2 {
      font-size: var(--fs-h2);
      line-height: var(--lh-heading);
      margin-bottom: 26px;
      font-weight: var(--fw-semibold);
    }
    .analytics-process-head p {
      max-width: 930px;
      color: #aab6c8;
      font-size: 16px;
      line-height: 1.55;
      font-weight: var(--fw-regular);
    }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 38px;
    }
    .process-card {
      position: relative;
      min-height: 238px;
      padding: 22px;
      border: 1px solid var(--card-border);
      border-radius: 8px;
      background: var(--card-bg);
    }
    .process-card:not(:last-child):after {
      content: "→";
      position: absolute;
      right: -36px;
      top: 52%;
      transform: translateY(-50%);
      color: rgba(170,182,200,.42);
      font-size: 38px;
      font-weight: 300;
    }
    .process-icon {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      border-radius: 8px;
      color: var(--honey);
      background: rgba(124,88,31,.58);
    }
    .process-icon svg,
    .process-icon img {
      width: 22px;
      height: 22px;
      object-fit: contain;
      stroke-width: 1.8;
    }
    .process-card h3 {
      margin-bottom: 14px;
      font-size: 20px;
      line-height: var(--lh-heading);
      font-weight: var(--fw-semibold);
    }
    .process-card p {
      color: #aeb8c8;
      font-size: 14px;
      line-height: 1.46;
      font-weight: var(--fw-regular);
    }
    .data-sources {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 48px;
      align-items: center;
    }
    .data-sources-section {
      padding-top: 54px;
      padding-bottom: 54px;
    }
    .data-sources-head {
      max-width: 640px;
      margin-bottom: 26px;
    }
    .data-sources-head h2 {
      font-size: clamp(30px, 3vw, 38px);
      line-height: var(--lh-heading);
      margin-bottom: 22px;
      font-weight: var(--fw-semibold);
    }
    .data-sources-head p {
      max-width: 560px;
      color: #aeb8c8;
      font-size: 16px;
      line-height: 1.55;
      font-weight: var(--fw-regular);
    }
    .data-source-list {
      display: grid;
      gap: 14px;
    }
    .data-source-card {
      min-height: 104px;
      padding: 16px 20px;
      border: 1px solid var(--card-border);
      border-radius: 8px;
      background: var(--card-bg);
    }
    .data-source-title {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 10px;
      color: var(--text);
      font-size: 18px;
      font-weight: var(--fw-semibold);
      line-height: 1.15;
    }
    .data-source-title .num {
      flex: 0 0 auto;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(116,83,31,.62);
      font-size: 12px;
      font-weight: var(--fw-medium);
      letter-spacing: 0;
    }
    .data-source-card p {
      margin: 0;
      color: #aeb8c8;
      font-size: 14px;
      line-height: 1.45;
      font-weight: var(--fw-regular);
    }
    .data-source-note {
      display: none;
      margin: 14px 0 0;
      color: var(--muted-2);
      font-size: 12px;
      line-height: 1.5;
    }
    .data-source-visual {
      position: relative;
      min-height: 460px;
      min-width: 0;
    }
    .source-carousel {
      width: 100%;
      height: 100%;
      display: grid;
      align-content: center;
    }
    .source-carousel-container {
      position: relative;
      display: grid;
      align-items: center;
    }
    .source-carousel-wrapper {
      overflow: hidden;
      min-width: 0;
      width: min(500px, 100%);
      margin: 0 auto;
    }
    .source-carousel-track {
      display: flex;
      align-items: center;
      transition: transform .46s ease;
      will-change: transform;
    }
    .source-carousel-slide {
      flex: 0 0 min(265px, 58%);
      margin: 0 18px;
      display: grid;
      place-items: center;
      opacity: .42;
      transform: scale(.88);
      transition: opacity var(--transition), transform var(--transition), filter var(--transition);
    }
    .source-carousel-slide img {
      width: 100%;
      max-height: 460px;
      object-fit: contain;
      filter: drop-shadow(0 18px 34px rgba(0,0,0,.25));
      cursor: zoom-in;
    }
    .source-carousel-slide.active {
      opacity: 1;
      transform: scale(1);
      filter: saturate(1.03);
    }
    .source-carousel-slide.active img {
      filter: drop-shadow(0 26px 52px rgba(0,0,0,.42));
    }
    .source-carousel-arrow {
      position: absolute;
      z-index: 3;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 50%;
      background: rgba(9,17,29,.38);
      color: rgba(255,255,255,.72);
      cursor: pointer;
      transition: color var(--transition), background var(--transition);
    }
    .source-carousel-prev { left: 0; }
    .source-carousel-next { right: 0; }
    .source-carousel-arrow:hover {
      color: var(--honey);
      background: rgba(255,255,255,.07);
    }
    .source-carousel-arrow svg {
      width: 24px;
      height: 24px;
    }
    .source-carousel-dots {
      display: flex;
      justify-content: center;
      gap: 9px;
      margin-top: 22px;
    }
    .source-carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(170,182,200,.72);
      cursor: pointer;
    }
    .source-carousel-dot.active {
      background: var(--honey);
    }
    .outcomes-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-bottom: 24px;
      align-items: stretch;
    }
    .outcome-card {
      min-height: 118px;
      padding: 14px 18px;
      border: 1px solid var(--card-border);
      border-radius: 8px;
      background: var(--card-bg);
    }
    .outcome-title {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 10px;
      color: var(--text);
      font-size: 18px;
      font-weight: var(--fw-semibold);
      line-height: 1.15;
    }
    .outcome-icon {
      flex: 0 0 auto;
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: var(--honey);
      background: rgba(116,83,31,.62);
    }
    .outcome-icon svg,
    .outcome-icon img {
      width: 22px;
      height: 22px;
      object-fit: contain;
      stroke-width: 1.8;
    }
    .outcome-card span {
      color: #aeb8c8;
      font-size: 14px;
      line-height: 1.45;
      font-weight: var(--fw-regular);
    }

    .analytics-slider {
      display: block;
      width: 100%;
      max-width: 1060px;
      margin: 34px auto 0;
    }
    .slider-nav {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .slider-container {
      flex: 0 1 900px;
      position: relative;
      overflow: hidden;
      min-height: 0;
      max-width: 900px;
    }
    .slider-track {
      display: flex;
      transition: transform .4s ease;
    }
    .slider-slide {
      position: relative;
      flex: 0 0 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 0 0 30px;
    }
    .slider-slide img {
      width: 100%;
      max-width: 900px;
      max-height: 430px;
      object-fit: contain;
      border-radius: var(--radius);
      filter: drop-shadow(0 18px 42px rgba(0,0,0,.22));
    }
    .slider-caption {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 0;
      margin: 0;
      text-align: center;
      font-size: 14px;
      color: var(--muted);
    }
    .slider-arrow {
      position: absolute;
      z-index: 4;
      top: calc(50% - 18px);
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 2px solid var(--honey);
      border-radius: 50%;
      background: rgba(9,17,29,.56);
      color: var(--honey);
      cursor: pointer;
      transition: var(--transition);
    }
    .slider-prev { left: 0; }
    .slider-next { right: 0; }
    .slider-arrow:hover {
      background: var(--honey);
      color: #15100a;
    }
    .slider-arrow svg {
      width: 18px;
      height: 18px;
    }
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 22px;
    }
    .slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--muted-2);
      cursor: pointer;
    }
    .slider-dot.active { background: var(--honey); }

    .pilot {
      border: 0;
      border-radius: 0;
      padding: 0;
      background: transparent;
    }
    #pilot {
      padding-top: 70px;
      padding-bottom: 70px;
    }
    .pilot-head {
      max-width: 1080px;
      margin-bottom: 34px;
    }
    .pilot-head h2 {
      font-size: clamp(30px, 3vw, 38px);
      line-height: 1.16;
      margin-bottom: 24px;
      font-weight: var(--fw-semibold);
    }
    .pilot-head p {
      max-width: 1080px;
      color: #aeb8c8;
      font-size: 16px;
      line-height: 1.55;
      font-weight: var(--fw-regular);
    }
    .pilot-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }
    .pilot-step {
      position: relative;
      min-height: 210px;
      padding: 18px 20px;
      border: 1px solid var(--card-border);
      border-radius: 8px;
      background: var(--card-bg);
    }
    .pilot-step:not(:last-child):after {
      content: "→";
      position: absolute;
      right: -30px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(170,182,200,.4);
      font-size: 34px;
      font-weight: 300;
    }
    .pilot-icon {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 8px;
      color: var(--honey);
      background: rgba(116,83,31,.62);
    }
    .pilot-icon svg,
    .pilot-icon img {
      width: 22px;
      height: 22px;
      object-fit: contain;
      stroke-width: 1.8;
    }
    .pilot-time {
      display: block;
      margin-bottom: 12px;
      color: #aeb8c8;
      font-size: 14px;
      line-height: 1.2;
      font-weight: var(--fw-regular);
    }
    .pilot-step h3 {
      margin-bottom: 12px;
      font-size: 18px;
      line-height: 1.15;
      font-weight: var(--fw-semibold);
    }
    .pilot-step p {
      margin: 0;
      color: #aeb8c8;
      font-size: 14px;
      line-height: 1.45;
      font-weight: var(--fw-regular);
    }

    .role-card h3,
    .competency-card h3,
    .process-card h3,
    .pilot-step h3,
    .data-source-title,
    .outcome-title,
    .outcome-title b {
      font-family: inherit;
      font-size: var(--fs-card-title);
      line-height: var(--lh-heading);
      font-weight: var(--fw-semibold);
      letter-spacing: 0;
    }

    .competency-card p,
    .risk-row p,
    .process-card p,
    .data-source-card p,
    .outcome-card > span,
    .pilot-step p {
      font-family: inherit;
      font-size: var(--fs-body);
      line-height: var(--lh-body);
      font-weight: var(--fw-regular);
      letter-spacing: 0;
      color: #aab6c8;
    }

    .risk-copy p {
      font-family: inherit;
      font-size: 15px;
      line-height: 1.6;
      font-weight: var(--fw-regular);
      letter-spacing: 0;
    }
    .risk-row p {
      font-size: 15px;
      line-height: 1.52;
      font-weight: var(--fw-regular);
    }
    .process-card h3 {
      font-size: 20px;
      line-height: var(--lh-heading);
      font-weight: var(--fw-semibold);
    }
    .process-card p {
      font-size: 14px;
      line-height: 1.46;
      font-weight: var(--fw-regular);
      color: #aeb8c8;
    }
    .data-source-title {
      font-size: 18px;
      line-height: 1.15;
      font-weight: var(--fw-semibold);
    }
    .data-source-card p {
      font-size: 14px;
      line-height: 1.45;
      font-weight: var(--fw-regular);
      color: #aeb8c8;
    }
    #screens {
      padding-top: 48px;
      padding-bottom: 48px;
    }
    #screens .section-head {
      margin-bottom: 26px;
    }
    #screens h2 {
      font-size: clamp(30px, 3vw, 38px);
      line-height: 1.16;
      font-weight: var(--fw-semibold);
    }
    #screens .section-head p {
      max-width: 860px;
      color: #aeb8c8;
      font-size: 16px;
      line-height: 1.55;
      font-weight: var(--fw-regular);
    }
    .outcome-title,
    .outcome-title b {
      font-size: 18px;
      line-height: 1.15;
      font-weight: var(--fw-semibold);
    }
    .outcome-card > span {
      font-size: 14px;
      line-height: 1.45;
      font-weight: var(--fw-regular);
      color: #aeb8c8;
    }
    .pilot-step h3 {
      font-size: 18px;
      line-height: 1.15;
      font-weight: var(--fw-semibold);
    }
    .pilot-step p {
      font-size: 14px;
      line-height: 1.45;
      font-weight: var(--fw-regular);
      color: #aeb8c8;
    }
    .competency-card h3 {
      font-size: 18px;
      line-height: 1.18;
      font-weight: var(--fw-semibold);
    }
    .competency-card p {
      font-size: 14px;
      line-height: 1.5;
      font-weight: var(--fw-regular);
      color: #aeb8c8;
    }
    .mini-list {
      font-family: inherit;
      font-size: var(--fs-small);
      line-height: 1.45;
      font-weight: var(--fw-regular);
      letter-spacing: 0;
    }
    .role-card p {
      font-size: 14px;
      line-height: 1.5;
    }
    .cta-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(9,17,29,.52);
    }
    input,
    select,
    textarea {
      width: 100%;
      min-height: 47px;
      padding: 14px 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      color: var(--text);
      font: inherit;
      outline: none;
      transition: border-color var(--transition), background var(--transition);
    }
    textarea {
      min-height: 94px;
      resize: vertical;
    }
    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--honey);
      background: var(--surface-2);
    }
    input::placeholder,
    textarea::placeholder { color: var(--muted-2); }
    select option { color: #111927; }
    .cta-note {
      margin: 0;
      color: var(--muted-2);
      font-size: var(--fs-small);
      text-align: center;
    }
    .highlight { color: var(--honey); }

    body.modal-open { overflow: hidden; }
    .pilot-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 22px;
      background: rgba(3,8,15,.72);
      backdrop-filter: blur(18px);
    }
    .pilot-modal.open { display: flex; }
    .pilot-modal-dialog {
      position: relative;
      width: min(560px, 100%);
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 12px;
      background: rgba(23,34,52,.96);
    }
    .pilot-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: rgba(255,255,255,.04);
      color: var(--muted);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
      transition: color var(--transition), border-color var(--transition), background var(--transition);
    }
    .pilot-modal-close:hover {
      color: var(--text);
      border-color: rgba(246,163,19,.5);
      background: rgba(246,163,19,.1);
    }
    .cta-content {
      padding: 42px;
      text-align: center;
    }
    .cta-content h2 {
      margin-bottom: 12px;
      font-size: clamp(28px, 3vw, 40px);
    }
    .cta-subtitle {
      max-width: 430px;
      margin: 0 auto 24px;
      color: #aab6c8;
      font-size: var(--fs-body);
    }
    .cta-form select:invalid {
      color: var(--muted-2);
    }

    .final-cta {
      text-align: center;
      padding-top: 44px;
      padding-bottom: 72px;
    }
    .final-box {
      max-width: 680px;
      margin: 0 auto;
      padding: 34px 42px;
      border: 1px solid var(--card-border);
      border-radius: 8px;
      background: rgba(32,40,54,.64);
    }
    .final-box h2 {
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 18px;
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.22;
      font-weight: var(--fw-semibold);
    }
    .final-box .lead {
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 28px;
      color: #aeb8c8;
      font-size: 15px;
      line-height: 1.6;
      font-weight: var(--fw-regular);
    }
    .footer {
      border-top: 1px solid var(--line);
      color: var(--muted);
    }
    .footer .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 28px 22px 22px;
    }
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 28px;
    }
    .footer .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
      color: var(--text);
    }
    .footer .logo-icon {
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
    }
    .footer .logo-icon img {
      width: 32px;
      height: 32px;
      object-fit: contain;
    }
    .footer .logo-text {
      font-size: 18px;
      line-height: 1;
      font-weight: var(--fw-semibold);
      letter-spacing: 0;
    }
    .footer .logo-text span {
      color: var(--honey);
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 18px;
      max-width: none;
      color: #9da8ba;
      font-size: 12px;
      line-height: 1.4;
      font-weight: var(--fw-regular);
      white-space: nowrap;
    }
    .footer-links a:hover {
      color: var(--text);
    }
    .footer-links .footer-manual {
      font-weight: var(--fw-semibold);
      color: var(--text);
    }
    .footer-capterra-link {
      color: #aeb8c8;
    }
    .footer-capterra-link:hover,
    .footer-capterra-link:focus-visible {
      color: var(--honey-light);
    }
    .footer-external-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10px 18px;
      color: #9da8ba;
      font-size: 12px;
      line-height: 1.4;
      white-space: nowrap;
    }
    .footer-external-links a:hover {
      color: var(--text);
    }
    .footer-social {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }
    .footer-social-title {
      margin: 0;
      color: #9da8ba;
      font-size: 12px;
      line-height: 1.4;
      font-weight: var(--fw-medium);
    }
    .footer-social-links {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 14px;
    }
    .footer-social-link {
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 24px;
      color: #9da8ba;
      opacity: .9;
      transition: color var(--transition), opacity var(--transition), transform var(--transition);
    }
    .footer-social-link svg {
      width: 24px;
      height: 24px;
      display: block;
      fill: currentColor;
    }
    .footer-social-link:hover {
      color: var(--honey-light);
      opacity: 1;
      transform: translateY(-1px);
    }
    .footer-social-link:focus-visible {
      color: var(--honey-light);
      opacity: 1;
      outline: 2px solid var(--honey);
      outline-offset: 4px;
      border-radius: 2px;
    }
    .footer-bottom {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.08);
      color: #7f8ba0;
      font-size: 12px;
      line-height: 1.5;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 24px;
    }
    .footer-bottom p {
      margin: 0;
      color: inherit;
    }
    @media (max-width: 980px) {
      .hero,
      .cards-3,
      .outcomes-grid,
      .process-grid,
      .data-sources,
      .split,
      .pilot-steps {
        grid-template-columns: 1fr;
      }
      .pilot-step:not(:last-child):after { display: none; }
      .process-card:not(:last-child):after { display: none; }
      .nav-links { display: none; }
      .nav-actions { gap: 10px; }
      .lang-switch button {
        min-width: 34px;
        height: 28px;
        font-size: 12px;
      }
      .hero {
        min-height: 640px;
        align-items: flex-start;
        padding-top: 70px;
      }
      .hero-copy { width: min(650px, 100%); }
      .hero h1 {
        max-width: 650px;
        font-size: clamp(36px, 7vw, 50px);
      }
      .hero-bg-image {
        top: auto;
        right: max(22px, calc((100% - var(--max)) / 2 + 22px));
        bottom: 22px;
        width: min(620px, 92%);
        opacity: .42;
        transform: none;
      }
      .analytics-slider { width: min(100%, calc(100vw - 36px)); }
      .slider-container { max-width: calc(100% - 112px); }
      .slider-prev { left: 0; }
      .slider-next { right: 0; }
      .source-carousel-wrapper { width: min(500px, 100%); }
      .source-carousel-slide { flex-basis: min(300px, 68%); }
    }

    @media (max-width: 640px) {
      .nav-inner {
        min-height: auto;
        padding: 10px 18px 14px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px 12px;
      }
      .brand {
        min-width: 0;
        font-size: clamp(21px, 7vw, 25px);
      }
      .brand > span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
      .brand-logo {
        width: 34px;
        height: 34px;
        flex: 0 0 auto;
      }
      .nav-actions {
        display: contents;
      }
      .nav-actions .lang-switch {
        justify-self: end;
      }
      .nav .btn-primary {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 44px;
        font-size: 15px;
      }
      .nav-login {
        display: none;
      }
      .section { padding: 62px 18px; }
      .hero {
        min-height: 680px;
        padding-top: 56px;
      }
      .hero .eyebrow {
        margin-bottom: 28px;
        font-size: 12px;
        line-height: 1.35;
      }
      .hero h1 {
        font-size: clamp(32px, 10vw, 44px);
        line-height: 1.13;
      }
      .hero-title-line {
        white-space: normal;
      }
      .hero .lead {
        font-size: 16px;
      }
      .hero-actions { align-items: stretch; flex-direction: column; }
      .hero-actions .btn,
      .cta-form .btn,
      .final-box .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
      }
      .hero-capterra-link {
        margin-top: 16px;
        font-size: 13px;
      }
      .hero-bg-image {
        width: 112%;
        right: -54px;
        bottom: 46px;
        opacity: .32;
      }
      .slider-nav,
      .source-carousel-container { gap: 8px; }
      .slider-arrow,
      .source-carousel-arrow { width: 38px; height: 38px; }
      .slider-container { max-width: calc(100% - 88px); }
      .slider-caption {
        position: static;
        margin-top: 12px;
        padding: 0 8px;
        font-size: var(--fs-small);
      }
      .slider-slide { padding-bottom: 0; }
      .source-carousel-wrapper { width: 100%; }
      .source-carousel-slide {
        flex-basis: min(270px, 74%);
        margin: 0 12px;
      }
      .pilot-step,
      .final-box { padding: 22px; }
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
      .footer-bottom > p {
        order: 3;
      }
      .footer-external-links,
      .footer-social {
        width: 100%;
        align-items: flex-start;
      }
      .footer-external-links {
        justify-content: flex-start;
        white-space: normal;
      }
      .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        white-space: normal;
      }
    }
