/* ═══════════════════════════════════════════════════════════════════
   Landing page — standalone styles
   ═══════════════════════════════════════════════════════════════════ */
:root {
      --bg: #050816;
      --bg-soft: #091126;
      --surface: rgba(12, 22, 48, 0.74);
      --surface-strong: rgba(15, 27, 58, 0.94);
      --surface-light: rgba(255, 255, 255, 0.055);
      --line: rgba(148, 163, 184, 0.16);
      --line-strong: rgba(99, 102, 241, 0.35);
      --text: #f8fafc;
      --muted: #9ba8bd;
      --muted-2: #6f7c91;
      --blue: #3b82f6;
      --indigo: #6366f1;
      --violet: #8b5cf6;
      --purple: #7c3aed;
      --cyan: #22d3ee;
      --green: #34d399;
      --pink: #f472b6;
      --orange: #fb923c;
      --heading: "Manrope", sans-serif;
      --body: "Inter", sans-serif;
      --container: 1220px;
      --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100%;
      overflow-x: hidden;
      font-family: var(--body);
      color: var(--text);
      background:
        radial-gradient(circle at 12% -10%, rgba(59, 130, 246, 0.16), transparent 32%),
        radial-gradient(circle at 88% 8%, rgba(124, 58, 237, 0.18), transparent 30%),
        linear-gradient(180deg, #050816 0%, #060b19 52%, #050816 100%);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -3;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(148, 163, 184, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.025) 1px, transparent 1px);
      background-size: 54px 54px;
      -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 84%);
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 84%);
    }

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

    button,
    input {
      font: inherit;
    }

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

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

    .section {
      position: relative;
      padding: 110px 0;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 15px;
      color: #b9c7ff;
      font-size: 0.73rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .section-label::before {
      content: "";
      width: 24px;
      height: 1px;
      background: linear-gradient(90deg, var(--cyan), var(--violet));
      box-shadow: 0 0 16px rgba(34, 211, 238, 0.7);
    }

    .section-title {
      max-width: 720px;
      font-family: var(--heading);
      font-size: clamp(2rem, 4vw, 3.55rem);
      line-height: 1.1;
      letter-spacing: -0.045em;
    }

    .section-copy {
      max-width: 650px;
      margin-top: 18px;
      color: var(--muted);
      font-size: 1rem;
    }

    .gradient-text {
      color: transparent;
      background: linear-gradient(110deg, #ffffff 0%, #8fdcff 28%, #9f9bff 66%, #d9a5ff 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 100;
      border-bottom: 1px solid transparent;
      transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .nav.scrolled {
      background: rgba(5, 8, 22, 0.8);
      border-color: var(--line);
      box-shadow: 0 14px 45px rgba(0, 0, 0, 0.18);
      backdrop-filter: blur(22px);
    }

    .nav-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
    }

    .brand img {
      width: auto;
      height: 38px;
      object-fit: contain;
    }

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

    .nav-link {
      padding: 10px 13px;
      border-radius: 10px;
      color: #bdc7d7;
      font-size: 0.84rem;
      font-weight: 600;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .nav-link:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.055);
    }

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

    .btn {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 22px;
      border: 1px solid transparent;
      border-radius: 13px;
      cursor: pointer;
      font-size: 0.88rem;
      font-weight: 700;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      position: relative;
      overflow: hidden;
      color: #fff;
      background: linear-gradient(135deg, var(--blue), var(--indigo) 56%, var(--purple));
      box-shadow: 0 14px 35px rgba(79, 70, 229, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    }

    .btn-primary::before {
      content: "";
      position: absolute;
      inset: 0;
      transform: translateX(-120%);
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
      transition: transform 0.65s ease;
    }

    .btn-primary:hover::before {
      transform: translateX(120%);
    }

    .btn-primary:hover {
      box-shadow: 0 18px 48px rgba(79, 70, 229, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.32);
    }

    .btn-secondary {
      color: #eff6ff;
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.13);
      backdrop-filter: blur(14px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.085);
      border-color: rgba(255, 255, 255, 0.22);
    }

    .mobile-toggle {
      display: none;
      width: 42px;
      height: 42px;
      margin-left: auto;
      border: 1px solid var(--line);
      border-radius: 11px;
      color: #fff;
      background: rgba(255, 255, 255, 0.04);
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 138px 0 90px;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      pointer-events: none;
      filter: blur(12px);
    }

    .hero::before {
      width: 520px;
      height: 520px;
      top: 5%;
      right: 4%;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.16), transparent 68%);
    }

    .hero::after {
      width: 420px;
      height: 420px;
      bottom: -20%;
      left: 4%;
      background: radial-gradient(circle, rgba(34, 211, 238, 0.11), transparent 70%);
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
      align-items: center;
      gap: 56px;
    }

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

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 25px;
      padding: 8px 13px;
      border: 1px solid rgba(99, 102, 241, 0.28);
      border-radius: 999px;
      color: #c8d6ff;
      background: linear-gradient(90deg, rgba(59, 130, 246, 0.09), rgba(139, 92, 246, 0.09));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
    }

    .hero-badge-dot {
      position: relative;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 16px rgba(34, 211, 238, 0.9);
    }

    .hero-badge-dot::after {
      content: "";
      position: absolute;
      inset: -5px;
      border: 1px solid rgba(34, 211, 238, 0.5);
      border-radius: 50%;
      animation: pulse-ring 1.8s ease-out infinite;
    }

    .hero h1 {
      font-family: var(--heading);
      font-size: clamp(3.05rem, 5.2vw, 5.45rem);
      line-height: 0.99;
      letter-spacing: -0.06em;
    }

    .hero-description {
      max-width: 580px;
      margin-top: 25px;
      color: #a9b5c8;
      font-size: clamp(1rem, 1.4vw, 1.12rem);
      line-height: 1.78;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 18px 24px;
      margin-top: 28px;
      color: #8f9aae;
      font-size: 0.77rem;
      font-weight: 600;
    }

    .proof-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .proof-item svg {
      color: var(--green);
    }

    .hero-visual-wrap {
      position: relative;
      min-height: 600px;
      perspective: 1400px;
    }

    .visual-halo {
      position: absolute;
      inset: 5% 4% 4%;
      border-radius: 50%;
      background: radial-gradient(circle at 50% 45%, rgba(59, 130, 246, 0.17), rgba(124, 58, 237, 0.08) 42%, transparent 68%);
      filter: blur(16px);
      animation: halo-breathe 5s ease-in-out infinite;
    }

    .orbit-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 560px;
      height: 560px;
      border: 1px solid rgba(99, 102, 241, 0.18);
      border-radius: 50%;
      transform: translate(-50%, -50%) rotateX(64deg) rotateZ(-13deg);
      animation: orbit-spin 20s linear infinite;
    }

    .orbit-ring::before,
    .orbit-ring::after {
      content: "";
      position: absolute;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 22px rgba(34, 211, 238, 0.95);
    }

    .orbit-ring::before {
      top: 42px;
      left: 100px;
    }

    .orbit-ring::after {
      right: 44px;
      bottom: 110px;
      background: var(--violet);
      box-shadow: 0 0 22px rgba(139, 92, 246, 0.95);
    }

    .dashboard {
      position: absolute;
      inset: 54px 0 42px 34px;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.19);
      border-radius: 30px;
      background:
        linear-gradient(145deg, rgba(14, 24, 53, 0.95), rgba(8, 15, 34, 0.92)),
        radial-gradient(circle at 80% 10%, rgba(99, 102, 241, 0.22), transparent 32%);
      box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
      transform: rotateY(-7deg) rotateX(3deg);
      transform-style: preserve-3d;
      animation: dashboard-float 6.5s ease-in-out infinite;
      backdrop-filter: blur(24px);
    }

    .dashboard::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.04), transparent 45%),
        radial-gradient(circle at 12% 88%, rgba(34, 211, 238, 0.06), transparent 30%);
    }

    .dash-top {
      height: 64px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 20px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.13);
      background: rgba(255, 255, 255, 0.02);
    }

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

    .dash-dots span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #34425e;
    }

    .dash-dots span:first-child { background: #fb7185; }
    .dash-dots span:nth-child(2) { background: #fbbf24; }
    .dash-dots span:nth-child(3) { background: #34d399; }

    .dash-search {
      height: 33px;
      flex: 1;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 8px;
      padding: 0 12px;
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 9px;
      color: #6f7f99;
      background: rgba(3, 8, 20, 0.38);
      font-size: 0.67rem;
    }

    .live-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 9px;
      border: 1px solid rgba(52, 211, 153, 0.18);
      border-radius: 8px;
      color: #7fe0bb;
      background: rgba(52, 211, 153, 0.08);
      font-size: 0.61rem;
      font-weight: 700;
    }

    .live-chip i {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 12px rgba(52, 211, 153, 0.85);
    }

    .dash-main {
      display: grid;
      grid-template-columns: 172px 1fr;
      min-height: 450px;
    }

    .dash-sidebar {
      padding: 18px 13px;
      border-right: 1px solid rgba(148, 163, 184, 0.11);
      background: rgba(2, 7, 18, 0.2);
    }

    .side-title {
      margin: 3px 8px 12px;
      color: #5f6c84;
      font-size: 0.57rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .side-item {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 5px;
      padding: 9px 10px;
      border: 1px solid transparent;
      border-radius: 9px;
      color: #738098;
      font-size: 0.65rem;
      font-weight: 600;
    }

    .side-item.active {
      color: #e9edff;
      border-color: rgba(99, 102, 241, 0.16);
      background: linear-gradient(90deg, rgba(59, 130, 246, 0.13), rgba(124, 58, 237, 0.08));
    }

    .side-icon {
      width: 23px;
      height: 23px;
      display: grid;
      place-items: center;
      border-radius: 7px;
      color: #9aa7ff;
      background: rgba(99, 102, 241, 0.12);
    }

    .dash-content {
      padding: 20px;
    }

    .dash-heading-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
    }

    .dash-kicker {
      color: #75829a;
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .dash-heading {
      margin-top: 3px;
      font-family: var(--heading);
      font-size: 1rem;
      letter-spacing: -0.025em;
    }

    .run-button {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 11px;
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(135deg, #3b82f6, #7c3aed);
      box-shadow: 0 8px 22px rgba(79, 70, 229, 0.25);
      font-size: 0.61rem;
      font-weight: 700;
    }

    .mini-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 18px;
    }

    .mini-card {
      position: relative;
      overflow: hidden;
      min-height: 84px;
      padding: 13px;
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 13px;
      background: rgba(255, 255, 255, 0.035);
    }

    .mini-card::after {
      content: "";
      position: absolute;
      width: 60px;
      height: 60px;
      top: -28px;
      right: -22px;
      border-radius: 50%;
      background: var(--mini-glow, rgba(59, 130, 246, 0.3));
      filter: blur(18px);
    }

    .mini-label {
      color: #738098;
      font-size: 0.55rem;
      font-weight: 600;
    }

    .mini-number {
      margin-top: 6px;
      font-family: var(--heading);
      font-size: 1.25rem;
      line-height: 1;
    }

    .mini-trend {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      margin-top: 8px;
      color: #67d7ae;
      font-size: 0.52rem;
      font-weight: 700;
    }

    .lead-table {
      margin-top: 12px;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.025);
    }

    .lead-head,
    .lead-row {
      display: grid;
      grid-template-columns: 1.5fr 0.82fr 0.9fr 0.6fr;
      align-items: center;
      gap: 8px;
      padding: 9px 11px;
    }

    .lead-head {
      color: #5e6d85;
      background: rgba(255, 255, 255, 0.025);
      font-size: 0.5rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .lead-row {
      position: relative;
      border-top: 1px solid rgba(148, 163, 184, 0.08);
      color: #9da9bb;
      font-size: 0.54rem;
      animation: row-highlight 5s ease-in-out infinite;
    }

    .lead-row:nth-child(3) { animation-delay: 1.1s; }
    .lead-row:nth-child(4) { animation-delay: 2.2s; }
    .lead-row:nth-child(5) { animation-delay: 3.3s; }

    .company-cell {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #e8edf7;
      font-weight: 700;
    }

    .company-logo {
      width: 25px;
      height: 25px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 7px;
      color: #cbd5ff;
      background: linear-gradient(145deg, rgba(59, 130, 246, 0.18), rgba(139, 92, 246, 0.16));
      font-size: 0.5rem;
      font-weight: 800;
    }

    .status {
      display: inline-flex;
      width: max-content;
      align-items: center;
      gap: 4px;
      padding: 4px 6px;
      border: 1px solid rgba(52, 211, 153, 0.14);
      border-radius: 99px;
      color: #6cd5ad;
      background: rgba(52, 211, 153, 0.07);
      font-size: 0.48rem;
      font-weight: 700;
    }

    .status::before {
      content: "";
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--green);
    }

    .float-card {
      position: absolute;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 12px 14px;
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 15px;
      background: rgba(12, 22, 48, 0.86);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(18px);
    }

    .float-card-one {
      top: 88px;
      right: -28px;
      animation: card-float-one 5.4s ease-in-out infinite;
    }

    .float-card-two {
      left: -10px;
      bottom: 72px;
      animation: card-float-two 6.2s ease-in-out infinite;
    }

    .float-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 11px;
      color: #fff;
      background: linear-gradient(145deg, rgba(59, 130, 246, 0.92), rgba(124, 58, 237, 0.95));
      box-shadow: 0 8px 22px rgba(79, 70, 229, 0.34);
    }

    .float-card-two .float-icon {
      background: linear-gradient(145deg, rgba(6, 182, 212, 0.92), rgba(37, 99, 235, 0.95));
      box-shadow: 0 8px 22px rgba(14, 165, 233, 0.3);
    }

    .float-label {
      color: #8190a8;
      font-size: 0.57rem;
      font-weight: 600;
    }

    .float-value {
      color: #f8fafc;
      font-family: var(--heading);
      font-size: 0.77rem;
      font-weight: 800;
    }

    .float-value span {
      color: #72dbb4;
    }

    .hero-metrics {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin-top: 54px;
      border: 1px solid var(--line);
      border-radius: 19px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(16px);
    }

    .metric {
      position: relative;
      padding: 21px 24px;
    }

    .metric:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 22%;
      right: 0;
      width: 1px;
      height: 56%;
      background: var(--line);
    }

    .metric strong {
      display: block;
      font-family: var(--heading);
      font-size: 1.18rem;
      letter-spacing: -0.02em;
    }

    .metric span {
      display: block;
      margin-top: 3px;
      color: var(--muted-2);
      font-size: 0.67rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .trust-strip {
      position: relative;
      z-index: 3;
      padding: 24px 0;
      border-block: 1px solid rgba(148, 163, 184, 0.1);
      background: rgba(255, 255, 255, 0.015);
    }

    .trust-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px 42px;
      flex-wrap: wrap;
    }

    .trust-text {
      color: #68758a;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #9aa7bb;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .trust-pill i {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--cyan), var(--violet));
      box-shadow: 0 0 12px rgba(99, 102, 241, 0.7);
    }

    .feature-header {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 50px;
    }

    .feature-header .section-copy {
      max-width: 470px;
      margin: 0 0 4px;
    }

    .bento-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 18px;
    }

    .bento-card {
      position: relative;
      overflow: hidden;
      min-height: 310px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        var(--surface);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .bento-card:hover {
      transform: translateY(-6px);
      border-color: rgba(99, 102, 241, 0.34);
      box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .bento-card::after {
      content: "";
      position: absolute;
      width: 230px;
      height: 230px;
      right: -100px;
      bottom: -110px;
      border-radius: 50%;
      background: var(--card-glow, rgba(59, 130, 246, 0.14));
      filter: blur(28px);
      pointer-events: none;
    }

    .bento-large { grid-column: span 7; }
    .bento-medium { grid-column: span 5; }
    .bento-third { grid-column: span 4; min-height: 286px; }

    .card-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      color: #dce4ff;
      background: linear-gradient(145deg, rgba(59, 130, 246, 0.2), rgba(124, 58, 237, 0.15));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .card-title {
      margin-top: 22px;
      font-family: var(--heading);
      font-size: 1.25rem;
      letter-spacing: -0.025em;
    }

    .card-copy {
      max-width: 520px;
      margin-top: 10px;
      color: var(--muted);
      font-size: 0.84rem;
    }

    .map-visual {
      position: absolute;
      width: 46%;
      min-width: 270px;
      right: 18px;
      bottom: 18px;
      aspect-ratio: 1.25;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 18px;
      background:
        radial-gradient(circle at 68% 44%, rgba(99, 102, 241, 0.28), transparent 6%),
        linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.055) 1px, transparent 1px),
        #091128;
      background-size: auto, 22px 22px, 22px 22px, auto;
    }

    .map-route {
      position: absolute;
      left: 10%;
      top: 28%;
      width: 76%;
      height: 48%;
      border: 2px dashed rgba(34, 211, 238, 0.48);
      border-color: rgba(34, 211, 238, 0.55) transparent rgba(139, 92, 246, 0.48) rgba(34, 211, 238, 0.28);
      border-radius: 50%;
      transform: rotate(-16deg);
      animation: route-dash 4s linear infinite;
    }

    .map-pin {
      position: absolute;
      width: 12px;
      height: 12px;
      border: 3px solid #091128;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.12), 0 0 20px rgba(34, 211, 238, 0.8);
    }

    .map-pin.one { left: 22%; top: 36%; }
    .map-pin.two { left: 58%; top: 26%; background: var(--violet); box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.12), 0 0 20px rgba(139, 92, 246, 0.8); }
    .map-pin.three { right: 18%; bottom: 23%; background: var(--green); box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.12), 0 0 20px rgba(52, 211, 153, 0.8); }

    .enrich-list {
      display: grid;
      gap: 10px;
      margin-top: 24px;
    }

    .enrich-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 12px;
      border: 1px solid rgba(148, 163, 184, 0.11);
      border-radius: 11px;
      color: #aeb9cb;
      background: rgba(255, 255, 255, 0.025);
      font-size: 0.72rem;
    }

    .enrich-item span {
      width: 27px;
      height: 27px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #bfc8ff;
      background: rgba(99, 102, 241, 0.12);
    }

    .channel-cloud {
      position: relative;
      height: 128px;
      margin-top: 23px;
    }

    .channel-node {
      position: absolute;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 10px;
      border: 1px solid rgba(148, 163, 184, 0.13);
      border-radius: 10px;
      color: #aeb7c7;
      background: rgba(255, 255, 255, 0.04);
      font-size: 0.63rem;
      font-weight: 600;
      animation: node-float 4.8s ease-in-out infinite;
    }

    .channel-node:nth-child(2) { animation-delay: 0.7s; }
    .channel-node:nth-child(3) { animation-delay: 1.4s; }
    .channel-node:nth-child(4) { animation-delay: 2.1s; }
    .channel-node:nth-child(5) { animation-delay: 2.8s; }

    .channel-node.one { left: 2%; top: 12%; }
    .channel-node.two { right: 8%; top: 0; }
    .channel-node.three { left: 28%; top: 48%; }
    .channel-node.four { right: 2%; bottom: 0; }
    .channel-node.five { left: 5%; bottom: 2%; }

    .channel-node i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--cyan), var(--violet));
      box-shadow: 0 0 10px rgba(99, 102, 241, 0.65);
    }

    .export-visual {
      position: relative;
      height: 122px;
      margin-top: 24px;
    }

    .file-card {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 150px;
      height: 92px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border: 1px solid rgba(52, 211, 153, 0.24);
      border-radius: 14px;
      background: linear-gradient(145deg, rgba(52, 211, 153, 0.12), rgba(255, 255, 255, 0.03));
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
      transform: translate(-50%, -50%) rotate(-2deg);
    }

    .file-card::before,
    .file-card::after {
      content: "";
      position: absolute;
      inset: 8px;
      z-index: -1;
      border: 1px solid rgba(148, 163, 184, 0.1);
      border-radius: 12px;
      background: #0a132a;
      transform: translate(14px, 10px) rotate(4deg);
    }

    .file-card::after {
      transform: translate(-13px, 11px) rotate(-5deg);
    }

    .file-card strong {
      margin-top: 7px;
      color: #b5f1d9;
      font-family: var(--heading);
      font-size: 0.8rem;
    }

    .progress-visual {
      margin-top: 25px;
    }

    .progress-ring {
      position: relative;
      width: 98px;
      height: 98px;
      display: grid;
      place-items: center;
      margin-inline: auto;
      border-radius: 50%;
      background: conic-gradient(var(--cyan) 0 82%, rgba(255, 255, 255, 0.07) 82% 100%);
      box-shadow: 0 0 28px rgba(34, 211, 238, 0.15);
    }

    .progress-ring::before {
      content: "";
      position: absolute;
      inset: 8px;
      border-radius: 50%;
      background: #0a132a;
    }

    .progress-ring strong,
    .progress-ring span {
      position: relative;
      z-index: 1;
      display: block;
      text-align: center;
    }

    .progress-ring strong {
      font-family: var(--heading);
      font-size: 1.05rem;
    }

    .progress-ring span {
      color: var(--muted-2);
      font-size: 0.49rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .workflow {
      overflow: hidden;
      border-block: 1px solid rgba(148, 163, 184, 0.1);
      background:
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.09), transparent 50%),
        rgba(255, 255, 255, 0.012);
    }

    .workflow-header {
      max-width: 760px;
      margin: 0 auto 62px;
      text-align: center;
    }

    .workflow-header .section-title,
    .workflow-header .section-copy {
      margin-inline: auto;
    }

    .workflow-header .section-copy {
      margin-top: 18px;
    }

    .workflow-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .workflow-grid::before {
      content: "";
      position: absolute;
      top: 41px;
      left: 12%;
      right: 12%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.35), rgba(139, 92, 246, 0.48), transparent);
    }

    .step-card {
      position: relative;
      z-index: 2;
      padding: 0 10px;
      text-align: center;
    }

    .step-number {
      width: 82px;
      height: 82px;
      display: grid;
      place-items: center;
      margin: 0 auto 23px;
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 24px;
      color: #dce2ff;
      background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 35%),
        linear-gradient(145deg, rgba(59, 130, 246, 0.18), rgba(124, 58, 237, 0.12));
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
      font-family: var(--heading);
      font-size: 1.18rem;
      font-weight: 800;
      transform: rotate(-3deg);
    }

    .step-card:nth-child(even) .step-number {
      transform: rotate(3deg);
    }

    .step-title {
      font-family: var(--heading);
      font-size: 1rem;
    }

    .step-copy {
      margin-top: 8px;
      color: var(--muted);
      font-size: 0.78rem;
    }

    .data-layout {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      align-items: center;
      gap: 74px;
    }

    .data-list {
      display: grid;
      gap: 11px;
      margin-top: 30px;
    }

    .data-list-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #b5c0d1;
      font-size: 0.82rem;
      font-weight: 600;
    }

    .data-check {
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      border: 1px solid rgba(52, 211, 153, 0.17);
      border-radius: 8px;
      color: #10b981;
      background: rgba(52, 211, 153, 0.07);
    }

    .data-panel {
      position: relative;
      min-height: 500px;
      border: 1px solid var(--line);
      border-radius: 30px;
      background:
        radial-gradient(circle at 85% 8%, rgba(139, 92, 246, 0.16), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
      box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .data-core {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 138px;
      height: 138px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(99, 102, 241, 0.35);
      border-radius: 36px;
      background: linear-gradient(145deg, rgba(59, 130, 246, 0.22), rgba(124, 58, 237, 0.18));
      box-shadow: 0 0 60px rgba(99, 102, 241, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      transform: translate(-50%, -50%) rotate(45deg);
    }

    .data-core svg {
      transform: rotate(-45deg);
      color: #dce6ff;
      filter: drop-shadow(0 0 14px rgba(99, 102, 241, 0.8));
    }

    .data-orbit {
      position: absolute;
      top: 50%;
      left: 50%;
      border: 1px solid rgba(148, 163, 184, 0.13);
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    .data-orbit.one {
      width: 300px;
      height: 300px;
      animation: orbit-flat 18s linear infinite;
    }

    .data-orbit.two {
      width: 410px;
      height: 410px;
      animation: orbit-flat 26s linear reverse infinite;
    }

    .data-chip {
      position: absolute;
      min-width: 104px;
      padding: 10px 12px;
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 12px;
      color: #aeb8c9;
      background: rgba(7, 14, 32, 0.86);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
      text-align: center;
      font-size: 0.66rem;
      font-weight: 700;
      backdrop-filter: blur(14px);
      animation: chip-bob 5s ease-in-out infinite;
    }

    .data-chip span {
      display: block;
      margin-top: 2px;
      color: #62718a;
      font-size: 0.5rem;
      font-weight: 600;
    }

    .data-chip.one { top: 52px; left: 50%; transform: translateX(-50%); }
    .data-chip.two { top: 120px; right: 32px; animation-delay: 0.8s; }
    .data-chip.three { right: 38px; bottom: 80px; animation-delay: 1.6s; }
    .data-chip.four { bottom: 38px; left: 50%; transform: translateX(-50%); animation-delay: 2.4s; }
    .data-chip.five { left: 32px; bottom: 88px; animation-delay: 3.2s; }
    .data-chip.six { top: 116px; left: 30px; animation-delay: 4s; }

    .cta-section {
      padding-top: 55px;
      padding-bottom: 120px;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 40px;
      padding: 58px 62px;
      border: 1px solid rgba(99, 102, 241, 0.28);
      border-radius: 30px;
      background:
        radial-gradient(circle at 0% 100%, rgba(34, 211, 238, 0.11), transparent 36%),
        radial-gradient(circle at 95% 5%, rgba(124, 58, 237, 0.21), transparent 34%),
        linear-gradient(135deg, rgba(12, 22, 48, 0.98), rgba(8, 14, 31, 0.97));
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
      background-size: 36px 36px;
      -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 82%);
      mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 82%);
    }

    .cta-copy {
      position: relative;
      z-index: 2;
    }

    .cta-title {
      max-width: 700px;
      font-family: var(--heading);
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1.08;
      letter-spacing: -0.045em;
    }

    .cta-text {
      max-width: 600px;
      margin-top: 14px;
      color: var(--muted);
    }

    .cta-actions {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-width: 205px;
    }

    .footer {
      border-top: 1px solid rgba(148, 163, 184, 0.11);
      background: rgba(3, 7, 18, 0.34);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 60px;
      padding: 46px 0 34px;
    }

    .footer-brand img {
      height: 36px;
      width: auto;
    }

    .footer-brand p {
      max-width: 440px;
      margin-top: 15px;
      color: var(--muted-2);
      font-size: 0.78rem;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px 32px;
    }

    .footer-link-group strong {
      display: block;
      margin-bottom: 12px;
      color: #b9c4d4;
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .footer-link-group a {
      display: block;
      margin-top: 8px;
      color: #6f7c91;
      font-size: 0.74rem;
      transition: color 0.2s ease;
    }

    .footer-link-group a:hover {
      color: #dbeafe;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 19px 0 23px;
      border-top: 1px solid rgba(148, 163, 184, 0.09);
      color: #637087;
      font-size: 0.7rem;
    }

    .footer-status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .footer-status::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 12px rgba(52, 211, 153, 0.8);
    }

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

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

    @keyframes pulse-ring {
      0% { opacity: 0.7; transform: scale(0.7); }
      100% { opacity: 0; transform: scale(1.5); }
    }

    @keyframes halo-breathe {
      0%, 100% { opacity: 0.8; transform: scale(0.96); }
      50% { opacity: 1; transform: scale(1.06); }
    }

    @keyframes orbit-spin {
      to { transform: translate(-50%, -50%) rotateX(64deg) rotateZ(347deg); }
    }

    @keyframes dashboard-float {
      0%, 100% { transform: rotateY(-7deg) rotateX(3deg) translateY(0); }
      50% { transform: rotateY(-5deg) rotateX(2deg) translateY(-10px); }
    }

    @keyframes card-float-one {
      0%, 100% { transform: translate3d(0, 0, 20px) rotate(1deg); }
      50% { transform: translate3d(-5px, -13px, 30px) rotate(-1deg); }
    }

    @keyframes card-float-two {
      0%, 100% { transform: translate3d(0, 0, 18px) rotate(-2deg); }
      50% { transform: translate3d(7px, -11px, 30px) rotate(1deg); }
    }

    @keyframes row-highlight {
      0%, 72%, 100% { background: transparent; }
      82% { background: rgba(99, 102, 241, 0.08); }
    }

    @keyframes route-dash {
      to { transform: rotate(344deg); }
    }

    @keyframes node-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

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

    @keyframes chip-bob {
      0%, 100% { margin-top: 0; }
      50% { margin-top: -8px; }
    }

    @media (max-width: 1120px) {
      .nav-menu { display: none; }
      .hero-grid { grid-template-columns: 0.9fr 1.1fr; gap: 28px; }
      .hero-visual-wrap { transform: scale(0.9); transform-origin: right center; }
      .float-card-one { right: -10px; }
      .data-layout { gap: 44px; }
    }

    @media (max-width: 960px) {
      .section { padding: 86px 0; }
      .nav-actions .btn-secondary { display: none; }
      .hero { padding-top: 118px; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-copy { max-width: 760px; text-align: center; margin: 0 auto; }
      .hero-description { margin-inline: auto; }
      .hero-actions, .hero-proof { justify-content: center; }
      .hero-visual-wrap { width: min(100%, 720px); min-height: 590px; margin: -10px auto 0; transform: none; }
      .dashboard { inset: 54px 20px 45px; transform: rotateY(0) rotateX(0); }
      @keyframes dashboard-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-9px); }
      }
      .hero-metrics { margin-top: 10px; }
      .feature-header { display: block; }
      .feature-header .section-copy { margin-top: 18px; }
      .bento-large, .bento-medium { grid-column: span 12; }
      .bento-third { grid-column: span 6; }
      .workflow-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 18px; }
      .workflow-grid::before { display: none; }
      .data-layout { grid-template-columns: 1fr; }
      .data-copy { max-width: 720px; }
      .data-panel { min-height: 520px; }
      .cta-panel { grid-template-columns: 1fr; padding: 48px; }
      .cta-actions { flex-direction: row; min-width: 0; }
      .footer-top { grid-template-columns: 1fr; }
    }

    @media (max-width: 720px) {
      .container { width: min(calc(100% - 28px), var(--container)); }
      .section { padding: 72px 0; }
      .nav-inner { min-height: 66px; }
      .brand img { height: 32px; }
      .nav-actions { display: none; }
      .mobile-toggle { display: grid; place-items: center; }
      .nav.open .nav-actions {
        position: absolute;
        top: 66px;
        left: 14px;
        right: 14px;
        display: grid;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: rgba(7, 13, 30, 0.96);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(20px);
      }
      .nav.open .nav-actions .btn-secondary { display: inline-flex; }
      .hero { min-height: auto; padding: 105px 0 66px; }
      .hero h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
      .hero-description { font-size: 0.96rem; }
      .hero-visual-wrap { min-height: 480px; margin-top: 8px; }
      .dashboard { inset: 44px 0 35px; border-radius: 23px; }
      .dash-main { grid-template-columns: 1fr; min-height: 360px; }
      .dash-sidebar { display: none; }
      .dash-content { padding: 15px; }
      .dash-top { height: 52px; padding: 0 12px; }
      .live-chip { display: none; }
      .mini-stats { gap: 7px; }
      .mini-card { min-height: 72px; padding: 10px; }
      .mini-number { font-size: 1rem; }
      .lead-head, .lead-row { grid-template-columns: 1.5fr 0.9fr 0.7fr; }
      .lead-head > :nth-child(3), .lead-row > :nth-child(3) { display: none; }
      .float-card { padding: 9px 10px; }
      .float-icon { width: 32px; height: 32px; }
      .float-card-one { top: 58px; right: -5px; }
      .float-card-two { left: -4px; bottom: 47px; }
      .orbit-ring { width: 440px; height: 440px; }
      .hero-metrics { grid-template-columns: repeat(2, 1fr); }
      .metric:nth-child(2)::after { display: none; }
      .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .bento-third { grid-column: span 12; }
      .bento-card { min-height: 280px; padding: 23px; }
      .map-visual { position: relative; width: 100%; min-width: 0; right: auto; bottom: auto; margin-top: 24px; }
      .workflow-grid { grid-template-columns: 1fr; gap: 38px; }
      .data-panel { min-height: 440px; }
      .data-orbit.two { width: 350px; height: 350px; }
      .data-orbit.one { width: 250px; height: 250px; }
      .data-chip { min-width: 88px; padding: 8px; font-size: 0.58rem; }
      .data-chip.one { top: 28px; }
      .data-chip.two { top: 94px; right: 14px; }
      .data-chip.three { right: 18px; bottom: 68px; }
      .data-chip.four { bottom: 25px; }
      .data-chip.five { left: 14px; bottom: 72px; }
      .data-chip.six { top: 94px; left: 14px; }
      .cta-panel { padding: 38px 25px; }
      .cta-actions { flex-direction: column; }
      .footer-top { gap: 34px; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
    }

    @media (max-width: 480px) {
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; }
      .hero-proof { display: grid; grid-template-columns: 1fr; justify-items: center; }
      .hero-visual-wrap { min-height: 415px; }
      .dashboard { inset: 35px 0 30px; }
      .dash-heading { font-size: 0.86rem; }
      .run-button { display: none; }
      .mini-stats { grid-template-columns: repeat(2, 1fr); }
      .mini-card:nth-child(3) { display: none; }
      .lead-row:nth-child(5) { display: none; }
      .float-card-one { right: -7px; top: 51px; }
      .float-card-two { bottom: 39px; }
      .float-label { display: none; }
      .float-value { font-size: 0.66rem; }
      .hero-metrics { border-radius: 15px; }
      .metric { padding: 17px 15px; }
      .metric strong { font-size: 1rem; }
      .metric span { font-size: 0.57rem; }
      .trust-inner { justify-content: flex-start; gap: 15px 22px; }
      .trust-text { width: 100%; }
      .data-core { width: 112px; height: 112px; border-radius: 30px; }
      .data-orbit.one { width: 215px; height: 215px; }
      .data-orbit.two { width: 300px; height: 300px; }
      .data-chip:nth-of-type(5), .data-chip:nth-of-type(6) { display: none; }
      .footer-links { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }
      .reveal { opacity: 1; transform: none; }
    }

    /* ═══════════════════════════════════════════════════════════════
       PREMIUM LIGHT THEME — Alphanso Technology palette
       ═══════════════════════════════════════════════════════════════ */
    :root {
      --p:      #2563eb;
      --pd:     #1d4ed8;
      --pdk:    #1e3a8a;
      --acc:    #10b981;
      --accd:   #059669;
      --danger: #ef4444;
      --warn:   #f59e0b;
      --indigo: #6366f1;
      --teal:   #14b8a6;
      --rose:   #f43f5e;
      --violet: #8b5cf6;
      --sky:    #0ea5e9;
      --amber:  #f59e0b;

      --bg:      #f0f4f8;
      --card:    #ffffff;
      --text:    #0f172a;
      --text2:   #334155;
      --muted:   #64748b;
      --border:  #e2e8f0;
      --borderb: #cbd5e1;

      /* Compatibility aliases used throughout the original design. */
      --bg-soft: #e9eff6;
      --surface: rgba(255, 255, 255, 0.82);
      --surface-strong: rgba(255, 255, 255, 0.98);
      --surface-light: rgba(255, 255, 255, 0.66);
      --line: rgba(203, 213, 225, 0.8);
      --line-strong: rgba(37, 99, 235, 0.28);
      --blue: var(--p);
      --purple: var(--violet);
      --cyan: var(--sky);
      --green: var(--acc);
      --pink: var(--rose);
      --orange: var(--warn);
      --muted-2: #64748b;
      --shadow: 0 34px 90px rgba(15, 23, 42, 0.13), 0 12px 36px rgba(37, 99, 235, 0.08);
    }

    body {
      color: var(--text);
      background:
        radial-gradient(circle at 8% 4%, rgba(14, 165, 233, 0.13), transparent 27%),
        radial-gradient(circle at 93% 3%, rgba(139, 92, 246, 0.11), transparent 25%),
        radial-gradient(circle at 53% 44%, rgba(16, 185, 129, 0.055), transparent 33%),
        linear-gradient(180deg, #f8fafc 0%, var(--bg) 48%, #edf2f7 100%);
    }

    body::before {
      background-image:
        linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
      background-size: 56px 56px;
      opacity: 0.72;
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.82), transparent 83%);
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.82), transparent 83%);
    }

    body::after {
      content: "";
      position: fixed;
      z-index: -2;
      width: 470px;
      height: 470px;
      right: -220px;
      top: 38%;
      border: 1px solid rgba(99, 102, 241, 0.09);
      border-radius: 50%;
      box-shadow:
        0 0 0 70px rgba(14, 165, 233, 0.025),
        0 0 0 150px rgba(139, 92, 246, 0.018);
      pointer-events: none;
    }

    ::selection {
      color: #fff;
      background: var(--p);
    }

    .section-label {
      color: var(--pd);
    }

    .section-label::before {
      height: 2px;
      background: linear-gradient(90deg, var(--sky), var(--violet));
      box-shadow: 0 0 14px rgba(14, 165, 233, 0.28);
    }

    .section-title {
      color: var(--text);
    }

    .section-copy {
      color: var(--muted);
    }

    .gradient-text {
      background: linear-gradient(110deg, var(--pdk) 0%, var(--p) 31%, var(--indigo) 65%, var(--violet) 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    /* Navigation */
    .nav {
      padding-top: 8px;
    }

    .nav.scrolled {
      padding-top: 0;
      background: rgba(255, 255, 255, 0.86);
      border-color: rgba(203, 213, 225, 0.82);
      box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
      backdrop-filter: blur(24px) saturate(150%);
    }

    .brand {
      padding: 8px 12px;
    }

    .nav-link {
      color: var(--text2);
    }

    .nav-link:hover {
      color: var(--pd);
      background: rgba(37, 99, 235, 0.075);
    }

    .btn {
      border-radius: 14px;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--p) 0%, var(--indigo) 58%, var(--violet) 100%);
      box-shadow: 0 14px 32px rgba(37, 99, 235, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    }

    .btn-primary:hover {
      box-shadow: 0 19px 44px rgba(37, 99, 235, 0.31), inset 0 1px 0 rgba(255, 255, 255, 0.38);
    }

    .btn-secondary {
      color: var(--text2);
      background: rgba(255, 255, 255, 0.78);
      border-color: var(--borderb);
      box-shadow: 0 9px 24px rgba(15, 23, 42, 0.055), inset 0 1px 0 #fff;
      backdrop-filter: blur(16px);
    }

    .btn-secondary:hover {
      color: var(--pd);
      background: #fff;
      border-color: rgba(37, 99, 235, 0.28);
      box-shadow: 0 14px 30px rgba(37, 99, 235, 0.1);
    }

    .mobile-toggle {
      color: var(--text);
      background: rgba(255, 255, 255, 0.86);
      border-color: var(--borderb);
      box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
    }

    /* Hero */
    .hero {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0) 70%),
        radial-gradient(circle at 78% 35%, rgba(37, 99, 235, 0.075), transparent 30%);
    }

    .hero::before {
      background: radial-gradient(circle, rgba(139, 92, 246, 0.14), transparent 68%);
    }

    .hero::after {
      background: radial-gradient(circle, rgba(16, 185, 129, 0.09), transparent 70%);
    }

    .hero-badge {
      color: var(--pd);
      border-color: rgba(37, 99, 235, 0.19);
      background: linear-gradient(90deg, rgba(37, 99, 235, 0.09), rgba(139, 92, 246, 0.07));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 9px 24px rgba(37, 99, 235, 0.07);
    }

    .hero-badge-dot {
      background: var(--acc);
      box-shadow: 0 0 16px rgba(16, 185, 129, 0.5);
    }

    .hero-badge-dot::after {
      border-color: rgba(16, 185, 129, 0.38);
    }

    .hero h1 {
      color: var(--text);
      text-shadow: 0 1px 0 rgba(255,255,255,.75);
    }

    .hero-description,
    .hero-proof {
      color: var(--muted);
    }

    .visual-halo {
      background: radial-gradient(circle at 50% 45%, rgba(37, 99, 235, 0.18), rgba(139, 92, 246, 0.08) 42%, transparent 68%);
    }

    .orbit-ring {
      border-color: rgba(99, 102, 241, 0.19);
    }

    .orbit-ring::before {
      background: var(--sky);
      box-shadow: 0 0 22px rgba(14, 165, 233, 0.7);
    }

    .orbit-ring::after {
      background: var(--violet);
      box-shadow: 0 0 22px rgba(139, 92, 246, 0.64);
    }

    /* Animated dashboard illustration */
    .dashboard {
      border-color: rgba(203, 213, 225, 0.95);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.985), rgba(248, 250, 252, 0.96)),
        radial-gradient(circle at 80% 10%, rgba(99, 102, 241, 0.13), transparent 32%);
      box-shadow: 0 38px 100px rgba(15, 23, 42, 0.17), 0 14px 42px rgba(37, 99, 235, 0.1), inset 0 1px 0 #fff;
    }

    .dashboard::before {
      background:
        linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.72), transparent 45%),
        radial-gradient(circle at 12% 88%, rgba(14, 165, 233, 0.08), transparent 30%);
    }

    .dash-top {
      border-bottom-color: var(--border);
      background: rgba(248, 250, 252, 0.87);
    }

    .dash-search {
      color: var(--muted);
      border-color: var(--border);
      background: #fff;
      box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.035);
    }

    .live-chip {
      color: var(--accd);
      border-color: rgba(16, 185, 129, 0.22);
      background: rgba(16, 185, 129, 0.09);
    }

    .live-chip i {
      background: var(--acc);
      box-shadow: 0 0 12px rgba(16, 185, 129, 0.55);
    }

    .dash-sidebar {
      border-right-color: var(--border);
      background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    }

    .side-title,
    .dash-kicker,
    .mini-label {
      color: var(--muted);
    }

    .side-item {
      color: var(--text2);
    }

    .side-item.active {
      color: var(--pd);
      border-color: rgba(37, 99, 235, 0.16);
      background: linear-gradient(90deg, rgba(37, 99, 235, 0.105), rgba(99, 102, 241, 0.065));
      box-shadow: inset 3px 0 0 var(--p);
    }

    .side-icon {
      color: var(--indigo);
      background: rgba(99, 102, 241, 0.1);
    }

    .dash-heading,
    .mini-number,
    .company-cell {
      color: var(--text);
    }

    .run-button {
      color: #fff;
      background: linear-gradient(135deg, var(--p), var(--indigo));
      box-shadow: 0 9px 22px rgba(37, 99, 235, 0.22);
    }

    .mini-card {
      border-color: var(--border);
      background: linear-gradient(145deg, #fff, #f8fafc);
      box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045), inset 0 1px 0 #fff;
    }

    .mini-trend {
      color: var(--accd);
    }

    .lead-table {
      border-color: var(--border);
      background: #fff;
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.045);
    }

    .lead-head {
      color: var(--muted);
      background: #f8fafc;
      border-bottom-color: var(--border);
    }

    .lead-row {
      color: var(--text2);
      border-top-color: var(--border);
    }

    .lead-row:hover {
      background: rgba(37, 99, 235, 0.035);
    }

    .company-logo {
      color: var(--pd);
      border-color: rgba(37, 99, 235, 0.14);
      background: linear-gradient(145deg, rgba(37, 99, 235, 0.11), rgba(99, 102, 241, 0.08));
    }

    .status {
      color: var(--accd);
      border-color: rgba(16, 185, 129, 0.2);
      background: rgba(16, 185, 129, 0.085);
    }

    .status::before {
      background: var(--acc);
      box-shadow: 0 0 9px rgba(16, 185, 129, 0.45);
    }

    .float-card {
      color: var(--text);
      border-color: rgba(203, 213, 225, 0.9);
      background: rgba(255, 255, 255, 0.91);
      box-shadow: 0 20px 45px rgba(15, 23, 42, 0.13), inset 0 1px 0 #fff;
    }

    .float-icon {
      color: var(--p);
      background: rgba(37, 99, 235, 0.1);
    }

    .float-card-two .float-icon {
      color: var(--accd);
      background: rgba(16, 185, 129, 0.1);
    }

    .float-label {
      color: var(--muted);
    }

    .float-value,
    .float-value span {
      color: var(--text);
    }

    .float-value span {
      color: var(--accd);
    }

    .hero-metrics {
      border-color: rgba(203, 213, 225, 0.88);
      background: rgba(255, 255, 255, 0.76);
      box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07), inset 0 1px 0 #fff;
    }

    .metric strong {
      color: var(--pdk);
    }

    .metric span {
      color: var(--muted);
    }

    .trust-strip {
      border-color: var(--border);
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(12px);
    }

    .trust-text {
      color: var(--muted);
    }

    .trust-pill {
      color: var(--text2);
    }

    .trust-pill i {
      box-shadow: 0 0 12px rgba(99, 102, 241, 0.32);
    }

    /* Capability cards */
    .bento-card {
      border-color: rgba(226, 232, 240, 0.96);
      background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.9)),
        var(--card);
      box-shadow: 0 14px 38px rgba(15, 23, 42, 0.065), inset 0 1px 0 #fff;
    }

    .bento-card:hover {
      border-color: rgba(37, 99, 235, 0.24);
      box-shadow: 0 28px 65px rgba(15, 23, 42, 0.11), 0 8px 22px rgba(37, 99, 235, 0.07), inset 0 1px 0 #fff;
    }

    .card-icon {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.55);
      background: linear-gradient(145deg, var(--p), var(--indigo) 62%, var(--violet));
      box-shadow: 0 12px 26px rgba(37, 99, 235, 0.2), inset 0 1px 0 rgba(255,255,255,.38);
    }

    .card-title {
      color: var(--text);
    }

    .card-copy {
      color: var(--muted);
    }

    .map-visual {
      border-color: var(--border);
      background:
        radial-gradient(circle at 68% 44%, rgba(99, 102, 241, 0.2), transparent 7%),
        linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        linear-gradient(145deg, #eff6ff, #f8fafc);
      background-size: auto, 22px 22px, 22px 22px, auto;
      box-shadow: inset 0 1px 0 #fff, 0 12px 30px rgba(37, 99, 235, 0.07);
    }

    .map-route {
      border-color: rgba(14, 165, 233, 0.55) transparent rgba(139, 92, 246, 0.5) rgba(14, 165, 233, 0.3);
    }

    .map-pin {
      border-color: #fff;
      background: var(--sky);
      box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.12), 0 0 20px rgba(14, 165, 233, 0.45);
    }

    .map-pin.two {
      background: var(--violet);
      box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.12), 0 0 20px rgba(139, 92, 246, 0.42);
    }

    .map-pin.three {
      background: var(--acc);
      box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12), 0 0 20px rgba(16, 185, 129, 0.42);
    }

    .enrich-item,
    .channel-node {
      color: var(--text2);
      border-color: var(--border);
      background: rgba(248, 250, 252, 0.88);
      box-shadow: 0 7px 18px rgba(15, 23, 42, 0.035);
    }

    .enrich-item span {
      color: var(--indigo);
      background: rgba(99, 102, 241, 0.1);
    }

    .channel-node i {
      box-shadow: 0 0 10px rgba(99, 102, 241, 0.35);
    }

    .file-card {
      border-color: rgba(16, 185, 129, 0.25);
      background: linear-gradient(145deg, rgba(16, 185, 129, 0.12), #fff);
      box-shadow: 0 16px 34px rgba(15, 23, 42, 0.09);
    }

    .file-card::before,
    .file-card::after {
      border-color: var(--border);
      background: #fff;
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.045);
    }

    .file-card strong {
      color: var(--accd);
    }

    .progress-ring {
      background: conic-gradient(var(--sky) 0 82%, var(--border) 82% 100%);
      box-shadow: 0 0 28px rgba(14, 165, 233, 0.13);
    }

    .progress-ring::before {
      background: #fff;
    }

    .progress-ring strong {
      color: var(--pdk);
    }

    /* Workflow */
    .workflow {
      border-color: var(--border);
      background:
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08), transparent 48%),
        linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.24));
    }

    .workflow-grid::before {
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.45), rgba(99, 102, 241, 0.52), rgba(139, 92, 246, 0.4), transparent);
    }

    .step-number {
      color: #fff;
      border-color: rgba(37, 99, 235, 0.16);
      background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 35%),
        linear-gradient(145deg, var(--p), var(--indigo) 58%, var(--violet));
      box-shadow: 0 17px 36px rgba(37, 99, 235, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    }

    .step-title {
      color: var(--text);
    }

    /* Connected data section */
    .data-list-item {
      color: var(--text2);
    }

    .data-check {
      color: var(--accd);
      border-color: rgba(16, 185, 129, 0.19);
      background: rgba(16, 185, 129, 0.085);
    }

    .data-panel {
      border-color: var(--border);
      background:
        radial-gradient(circle at 85% 8%, rgba(139, 92, 246, 0.13), transparent 34%),
        radial-gradient(circle at 12% 88%, rgba(14, 165, 233, 0.09), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.92));
      box-shadow: var(--shadow), inset 0 1px 0 #fff;
    }

    .data-core {
      border-color: rgba(37, 99, 235, 0.22);
      background: linear-gradient(145deg, var(--p), var(--indigo) 56%, var(--violet));
      box-shadow: 0 20px 55px rgba(37, 99, 235, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.36);
    }

    .data-core svg {
      color: #fff;
      filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.28));
    }

    .data-orbit {
      border-color: rgba(99, 102, 241, 0.17);
    }

    .data-chip {
      color: var(--text2);
      border-color: var(--border);
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.085), inset 0 1px 0 #fff;
    }

    .data-chip span {
      color: var(--muted);
    }

    /* CTA remains a strong brand moment using the supplied dark blue. */
    .cta-panel {
      border-color: rgba(255, 255, 255, 0.14);
      background:
        radial-gradient(circle at 0% 100%, rgba(20, 184, 166, 0.22), transparent 36%),
        radial-gradient(circle at 95% 5%, rgba(139, 92, 246, 0.28), transparent 34%),
        linear-gradient(135deg, var(--pdk), var(--pd) 52%, var(--indigo));
      box-shadow: 0 34px 85px rgba(30, 58, 138, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.17);
    }

    .cta-title {
      color: #fff;
    }

    .cta-panel .section-label {
      color: #dbeafe;
    }

    .cta-panel .section-label::before {
      background: linear-gradient(90deg, #fff, #bfdbfe);
      box-shadow: none;
    }

    .cta-text {
      color: rgba(255, 255, 255, 0.75);
    }

    .cta-panel .btn-primary {
      color: var(--pd);
      background: #fff;
      box-shadow: 0 14px 34px rgba(15, 23, 42, 0.2);
    }

    .cta-panel .btn-primary:hover {
      color: var(--pdk);
      background: #f8fafc;
      box-shadow: 0 18px 42px rgba(15, 23, 42, 0.25);
    }

    .cta-panel .btn-secondary {
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.28);
      box-shadow: none;
    }

    .cta-panel .btn-secondary:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.17);
      border-color: rgba(255, 255, 255, 0.45);
    }

    /* Footer */
    .footer {
      border-color: var(--border);
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(16px);
    }

    .footer-brand p,
    .footer-link-group a,
    .footer-bottom {
      color: var(--muted);
    }

    .footer-link-group strong {
      color: var(--text2);
    }

    .footer-link-group a:hover {
      color: var(--p);
    }

    .footer-bottom {
      border-color: var(--border);
    }

    .footer-status::before {
      background: var(--acc);
      box-shadow: 0 0 12px rgba(16, 185, 129, 0.48);
    }

    @keyframes row-highlight {
      0%, 72%, 100% { background: transparent; }
      82% { background: rgba(37, 99, 235, 0.05); }
    }

    @media (max-width: 960px) {
      .nav-menu {
        color: var(--text);
        background: rgba(255, 255, 255, 0.96);
        border-color: var(--border);
        box-shadow: 0 22px 50px rgba(15, 23, 42, 0.13);
        backdrop-filter: blur(22px);
      }

      .nav-link {
        color: var(--text2);
      }
    }

    @media (max-width: 720px) {
      .hero-metrics {
        background: rgba(255, 255, 255, 0.88);
      }

      .dashboard {
        box-shadow: 0 24px 65px rgba(15, 23, 42, 0.14), 0 8px 26px rgba(37, 99, 235, 0.08);
      }

      .brand {
        padding: 6px 9px;
      }
    }


    /* ================================================================
       FULL-WIDTH LAYOUT OVERRIDES
       Keeps every section edge-to-edge while preserving responsive gutters.
    ================================================================= */
    :root {
      --page-gutter: clamp(22px, 3.4vw, 72px);
    }

    html,
    body,
    main,
    .nav,
    .hero,
    .section,
    .trust-strip,
    .workflow,
    .cta-section,
    .footer {
      width: 100%;
      max-width: none;
    }

    body {
      margin: 0;
    }

    .container {
      width: 100%;
      max-width: none;
      margin: 0;
      padding-left: var(--page-gutter);
      padding-right: var(--page-gutter);
    }

    .nav {
      left: 0;
      right: 0;
    }

    .nav-inner {
      width: 100%;
      min-height: 82px;
    }

    .hero {
      min-height: 100vh;
      padding-top: 132px;
      padding-bottom: 88px;
    }

    .hero-grid {
      width: 100%;
      grid-template-columns: minmax(440px, 0.82fr) minmax(620px, 1.18fr);
      gap: clamp(42px, 5vw, 104px);
    }

    .hero-copy {
      width: 100%;
      max-width: 760px;
    }

    .hero-description {
      max-width: 680px;
    }

    .hero-visual-wrap {
      width: 100%;
      min-height: 650px;
    }

    .dashboard {
      inset: 48px 0 34px 18px;
    }

    .feature-header {
      width: 100%;
    }

    .feature-header .section-copy {
      max-width: 620px;
    }

    .bento-grid,
    .workflow-grid,
    .data-layout,
    .footer-top,
    .footer-bottom {
      width: 100%;
    }

    .data-layout {
      grid-template-columns: minmax(360px, 0.72fr) minmax(620px, 1.28fr);
      gap: clamp(48px, 5vw, 108px);
    }

    .cta-panel {
      width: 100%;
      padding-left: clamp(34px, 4vw, 82px);
      padding-right: clamp(34px, 4vw, 82px);
    }

    @media (min-width: 1600px) {
      :root {
        --page-gutter: clamp(64px, 4vw, 104px);
      }

      .hero-grid {
        grid-template-columns: minmax(520px, 0.78fr) minmax(760px, 1.22fr);
      }

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

      .hero h1 {
        font-size: clamp(4.7rem, 5vw, 6.5rem);
      }

      .hero-visual-wrap {
        min-height: 720px;
      }

      .dashboard {
        inset: 48px 0 30px 22px;
      }

      .bento-card {
        min-height: 340px;
      }

      .bento-third {
        min-height: 310px;
      }

      .data-panel {
        min-height: 570px;
      }
    }

    @media (max-width: 1180px) {
      .hero-grid {
        grid-template-columns: minmax(390px, 0.88fr) minmax(520px, 1.12fr);
        gap: 34px;
      }

      .data-layout {
        grid-template-columns: minmax(330px, 0.82fr) minmax(500px, 1.18fr);
        gap: 42px;
      }
    }

    @media (max-width: 960px) {
      :root {
        --page-gutter: clamp(20px, 4.5vw, 42px);
      }

      .hero-grid,
      .data-layout {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        max-width: 780px;
        margin-inline: auto;
      }

      .hero-visual-wrap {
        width: min(100%, 820px);
        margin-inline: auto;
      }
    }

    @media (max-width: 720px) {
      :root {
        --page-gutter: 18px;
      }

      .nav-inner {
        min-height: 70px;
      }

      .hero {
        padding-top: 102px;
        padding-bottom: 64px;
      }

      .hero-visual-wrap {
        min-height: 480px;
      }

      .dashboard {
        inset: 34px 0 30px 0;
      }

      .cta-panel {
        padding-left: 24px;
        padding-right: 24px;
      }
    }

    @media (max-width: 480px) {
      :root {
        --page-gutter: 14px;
      }

      .hero {
        padding-top: 92px;
      }

      .section {
        padding-top: 78px;
        padding-bottom: 78px;
      }
    }
