    /* ============================================
       RESET & BASE
       ============================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background: #050508;
      color: #fff;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ============================================
       HERO
       ============================================ */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    /* Agent Mesh Background */
    .agent-mesh {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      overflow: hidden;
      background: #050510;
    }

    .mesh-gradient {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 20% 25%, rgba(25,55,100,0.5) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 85% 35%, rgba(20,65,115,0.45) 0%, transparent 55%),
        radial-gradient(ellipse 60% 45% at 50% 75%, rgba(15,50,95,0.4) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 10% 65%, rgba(20,60,105,0.35) 0%, transparent 50%);
    }

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

    .mesh-line {
      stroke: rgba(120,180,240,0.5);
      stroke-width: 0.25;
      vector-effect: non-scaling-stroke;
    }

    .mesh-node {
      position: absolute;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: rgba(170,210,255,0.9);
      box-shadow: 0 0 4px 1px rgba(80,150,220,0.6), 0 0 12px 4px rgba(80,150,220,0.3), 0 0 24px 8px rgba(80,150,220,0.15);
      animation: nodePulse 3s ease-in-out infinite;
    }

    @keyframes nodePulse {
      0%, 100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
      50% { opacity: 1; transform: translate(-50%,-50%) scale(1.3); }
    }

    /* Traveling pulse along connections */
    .mesh-pulse {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: white;
      box-shadow: 0 0 4px 2px rgba(14,165,233,0.9), 0 0 12px 4px rgba(14,165,233,0.5), 0 0 20px 8px rgba(14,165,233,0.25);
      left: var(--x1);
      top: var(--y1);
      transform: translate(-50%, -50%);
      animation: pulseTravelSmooth 2s linear forwards;
      pointer-events: none;
      z-index: 2;
    }

    @keyframes pulseTravelSmooth {
      0% { left: var(--x1); top: var(--y1); opacity: 0; }
      5% { opacity: 1; }
      95% { opacity: 1; }
      100% { left: var(--x2); top: var(--y2); opacity: 0; }
    }

    /* Nav */
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 3rem;
      position: relative;
      z-index: 10;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: #fff;
    }

    .nav-brand svg { color: #4a90d9; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav-link {
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      transition: color 0.2s;
    }

    .nav-link:hover { color: #fff; }

    .nav-cta {
      background: rgba(74,144,217,0.15);
      border: 1px solid rgba(74,144,217,0.3);
      color: #fff;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.2s;
    }

    .nav-cta:hover {
      background: rgba(74,144,217,0.25);
      border-color: rgba(74,144,217,0.5);
    }

    /* Hero Content */
    .hero-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem 2rem 4rem;
      position: relative;
      z-index: 5;
      text-align: center;
    }

    .hero-title {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 700;
      line-height: 1.1;
      margin: 0 0 1rem;
      letter-spacing: -0.03em;
    }

    .hero-accent { color: #4a90d9; }

    .hero-rotator-line {
      display: block;
      position: relative;
      height: 1.2em;
    }

    .hero-rotator {
      display: block;
      position: relative;
      width: 100%;
      height: 100%;
    }

    .hero-rotator span {
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      white-space: nowrap;
      opacity: 0;
      animation: rotateWords 8s forwards;
    }

    .hero-rotator span:first-child { animation: rotateWordsFirst 8s forwards; }
    .hero-rotator span:nth-child(2) { animation-delay: 2s; }
    .hero-rotator span:nth-child(3) { animation-delay: 4s; }
    .hero-rotator span:nth-child(4) { animation-name: rotateWordsLast; animation-delay: 6s; }

    @keyframes rotateWordsFirst { 0%,20% { opacity:1; } 25%,100% { opacity:0; } }
    @keyframes rotateWords { 0%,2% { opacity:0; } 5%,20% { opacity:1; } 25%,100% { opacity:0; } }
    @keyframes rotateWordsLast { 0%,2% { opacity:0; } 5%,100% { opacity:1; } }

    .hero-subtitle {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.6);
      max-width: 500px;
      margin: 0 0 2.5rem;
      line-height: 1.6;
    }

    /* Hero Demo */
    .hero-demo {
      width: 100%;
      max-width: 700px;
      margin-bottom: 2.5rem;
    }

    .demo-window {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 20px 50px -10px rgba(0,0,0,0.5), 0 0 80px -20px rgba(74,144,217,0.15);
    }

    .demo-header {
      display: flex;
      align-items: center;
      padding: 0.75rem 1rem;
      background: rgba(0,0,0,0.3);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .demo-dots { display: flex; gap: 6px; }
    .demo-dots span { width: 10px; height: 10px; border-radius: 50%; }
    .demo-dots span:nth-child(1) { background: #ff5f57; }
    .demo-dots span:nth-child(2) { background: #ffbd2e; }
    .demo-dots span:nth-child(3) { background: #28ca42; }

    .demo-header-title {
      flex: 1;
      text-align: center;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
      font-weight: 500;
    }

    .demo-header-spacer { width: 52px; }

    .demo-body { padding: 1.5rem; min-height: 300px; }

    .demo-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      display: block;
      margin-bottom: 0.4rem;
    }

    .demo-message p { margin: 0; font-size: 1.05rem; color: #fff; line-height: 1.5; }

    .demo-agents-section { margin-top: 1.25rem; }

    .demo-agents-label {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.75rem;
    }

    .demo-agents-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }

    .demo-agent-card {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 0.9rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(40,202,66,0.3);
      border-radius: 8px;
    }

    .demo-agent-icon {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(40,202,66,0.2);
      border-radius: 6px;
      color: #28ca42;
    }

    .demo-agent-name { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.9); }
    .demo-agent-result { font-size: 0.75rem; color: rgba(255,255,255,0.5); display: block; }

    .demo-answer {
      margin-top: 1.25rem;
      background: rgba(40,202,66,0.05);
      border: 1px solid rgba(40,202,66,0.15);
      border-radius: 8px;
      padding: 1rem;
    }

    .demo-answer-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: #28ca42;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      display: block;
      margin-bottom: 0.5rem;
    }

    .demo-answer p { margin: 0 0 0.75rem; font-size: 0.95rem; color: rgba(255,255,255,0.9); line-height: 1.6; }

    .demo-sources {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
    }

    .demo-source-tag {
      background: rgba(255,255,255,0.08);
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      color: rgba(255,255,255,0.7);
    }

    /* Hero CTAs */
    .hero-ctas {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 1.75rem;
      background: #4a90d9;
      color: #fff;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.2s;
      box-shadow: 0 0 20px rgba(74,144,217,0.3);
    }

    .cta-primary:hover { background: #5a9fe8; box-shadow: 0 0 30px rgba(74,144,217,0.4); transform: translateY(-1px); }

    .cta-secondary {
      color: rgba(255,255,255,0.7);
      font-size: 0.95rem;
      padding: 0.85rem 1rem;
      transition: color 0.2s;
    }

    .cta-secondary:hover { color: #fff; }

    /* ============================================
       INTEGRATIONS
       ============================================ */
    .integrations {
      position: relative;
      background: #08080c;
      padding: calc(5rem + 4vw) 2rem 5rem;
    }

    .diagonal-top {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 6vw;
      background: #050508;
      clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
    }

    .integrations-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .integrations-label {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.5);
      margin: 0 0 2rem;
      font-weight: 500;
    }

    .integration-logos {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .integration-logo {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.4);
      transition: all 0.2s;
    }

    .integration-logo:hover { color: rgba(255,255,255,0.8); transform: scale(1.1); }

    .integrations-sub {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
      margin: 0;
    }

    /* ============================================
       ASK SECTION
       ============================================ */
    .ask-section {
      background: #08080c;
      padding: 6rem 2rem;
    }

    .section-container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .ask-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #4a90d9;
      margin-bottom: 1rem;
    }

    .section-title {
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 700;
      line-height: 1.2;
      margin: 0 0 1.25rem;
      color: #fff;
      letter-spacing: -0.02em;
    }

    .section-desc {
      font-size: 1rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.6);
      margin: 0 0 1.5rem;
    }

    .example-box {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-left: 3px solid #4a90d9;
      border-radius: 8px;
      padding: 1rem 1.25rem;
    }

    .example-label {
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #4a90d9;
      display: block;
      margin-bottom: 0.4rem;
    }

    .example-box p { margin: 0; font-size: 0.95rem; color: rgba(255,255,255,0.8); font-style: italic; }

    /* Ask Mockup */
    .mockup-window {
      width: 100%;
      max-width: 400px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
    }

    .mockup-header {
      display: flex;
      align-items: center;
      padding: 0.6rem 0.8rem;
      background: rgba(0,0,0,0.3);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .mockup-dots { display: flex; gap: 5px; }
    .mockup-dots span { width: 8px; height: 8px; border-radius: 50%; }
    .mockup-dots span:nth-child(1) { background: #ff5f57; }
    .mockup-dots span:nth-child(2) { background: #ffbd2e; }
    .mockup-dots span:nth-child(3) { background: #28c840; }

    .mockup-body { padding: 1.25rem; }

    .mockup-label {
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(255,255,255,0.5);
      display: block;
      margin-bottom: 0.3rem;
    }

    .mockup-user-message { margin-bottom: 1rem; }
    .mockup-user-message p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.9); }

    .mockup-agents { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }

    .mockup-agent-card {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.7rem;
      background: rgba(40,202,66,0.05);
      border: 1px solid rgba(40,202,66,0.15);
      border-radius: 6px;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.8);
    }

    .mockup-check { color: #28ca42; flex-shrink: 0; }
    .mockup-agent-meta { margin-left: auto; font-size: 0.7rem; color: rgba(255,255,255,0.4); }

    .mockup-answer {
      background: rgba(74,144,217,0.05);
      border: 1px solid rgba(74,144,217,0.15);
      border-radius: 8px;
      padding: 0.9rem;
    }

    .mockup-answer p { margin: 0 0 0.6rem; font-size: 0.85rem; line-height: 1.5; color: rgba(255,255,255,0.85); }
    .mockup-meta { display: flex; gap: 1rem; font-size: 0.7rem; color: rgba(255,255,255,0.4); }

    /* ============================================
       AUTOMATE SECTION
       ============================================ */
    .automate-section {
      position: relative;
      background: #ffffff;
      padding: calc(6rem + 4vw) 2rem 6rem;
    }

    .diagonal-transition {
      position: absolute;
      top: 0;
      left: 0; right: 0;
      height: 6vw;
      background: #08080c;
      clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
    }

    .automate-grid {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      align-items: center;
    }

    .automate-text {
      text-align: center;
      max-width: 650px;
    }

    .section-label-alt {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #0ea5e9;
      margin-bottom: 1rem;
    }

    .section-title-dark {
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 700;
      line-height: 1.2;
      margin: 0 0 1.25rem;
      color: #1a1a2e;
      letter-spacing: -0.02em;
    }

    .section-desc-dark {
      font-size: 1rem;
      line-height: 1.7;
      color: #6b7280;
      margin: 0 0 1.5rem;
    }

    .example-box-light {
      background: #f8f9fb;
      border: 1px solid #e5e7eb;
      border-left: 3px solid #0ea5e9;
      border-radius: 8px;
      padding: 1rem 1.25rem;
    }

    .example-label-alt {
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #0ea5e9;
      display: block;
      margin-bottom: 0.4rem;
    }

    .example-box-light p { margin: 0; font-size: 0.95rem; color: #374151; font-style: italic; }

    /* Workflow Mockup */
    .workflow-window {
      width: 100%;
      max-width: 800px;
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    }

    .workflow-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.6rem 0.8rem;
      background: #f8f9fb;
      border-bottom: 1px solid #e5e7eb;
    }

    .workflow-title { font-size: 0.75rem; font-family: monospace; color: #6b7280; }

    .workflow-body {
      padding: 1.5rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .workflow-node {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1rem;
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      width: 100%;
      box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    }

    .workflow-node-tags {
      display: flex;
      gap: 0.35rem;
      margin-left: auto;
      flex-shrink: 0;
    }

    .workflow-tag {
      font-size: 0.6rem;
      font-weight: 600;
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      background: #f0fdf4;
      color: #16a34a;
      border: 1px solid #bbf7d0;
    }

    .workflow-node-icon {
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      background: #4a90d9;
      border-radius: 6px;
      color: #fff;
      flex-shrink: 0;
    }

    .workflow-node-icon-alt {
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      background: #0ea5e9;
      border-radius: 6px;
      color: #fff;
      flex-shrink: 0;
    }

    .workflow-node-icon-amber {
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      background: #f59e0b;
      border-radius: 6px;
      color: #fff;
      flex-shrink: 0;
    }

    .workflow-node-icon-orange {
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      background: #f97316;
      border-radius: 6px;
      color: #fff;
      flex-shrink: 0;
    }

    .workflow-node-icon-green {
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      background: #16a34a;
      border-radius: 6px;
      color: #fff;
      flex-shrink: 0;
    }

    .workflow-node-type {
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #9ca3af;
      display: block;
    }

    .workflow-node-name {
      font-size: 0.85rem;
      font-weight: 500;
      color: #1a1a2e;
      display: block;
    }

    .workflow-node-sub {
      font-size: 0.7rem;
      color: #9ca3af;
      display: block;
      margin-top: 0.1rem;
    }

    .workflow-connector {
      width: 2px;
      height: 24px;
      background: #e5e7eb;
      margin: 0.25rem 0;
    }

    /* Wave label */
    .workflow-wave-label {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #9ca3af;
      margin-bottom: 0.5rem;
    }

    .workflow-wave-label svg { color: #9ca3af; }

    /* Agent cards (parallel) */
    .workflow-agents {
      display: flex;
      gap: 0.75rem;
      width: 100%;
    }

    .workflow-agent-card {
      flex: 1;
      padding: 0.7rem 0.85rem;
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .workflow-agent-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .workflow-agent-icon {
      width: 24px; height: 24px;
      display: flex; align-items: center; justify-content: center;
      background: #4a90d9;
      border-radius: 5px;
      color: #fff;
      flex-shrink: 0;
    }

    .workflow-agent-name {
      font-size: 0.8rem;
      font-weight: 600;
      color: #1a1a2e;
    }

    .workflow-agent-scope {
      font-size: 0.6rem;
      font-weight: 500;
      color: #6b7280;
      background: #f3f4f6;
      padding: 0.1rem 0.4rem;
      border-radius: 3px;
      display: inline-block;
      width: fit-content;
    }

    .workflow-agent-task {
      font-size: 0.7rem;
      color: #6b7280;
      font-style: italic;
      line-height: 1.4;
    }

    /* Convergence node (amber) */
    .workflow-node-convergence {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1rem;
      background: #fffbeb;
      border: 1px solid #fde68a;
      border-radius: 8px;
      width: 100%;
    }

    /* Approval node (orange) */
    .workflow-node-approval {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1rem;
      background: #fff7ed;
      border: 1px solid #fed7aa;
      border-radius: 8px;
      width: 100%;
    }

    .workflow-approval-badge {
      font-size: 0.6rem;
      font-weight: 600;
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      background: #fff7ed;
      color: #ea580c;
      border: 1px solid #fed7aa;
      margin-left: auto;
      flex-shrink: 0;
      white-space: nowrap;
    }

    /* Route branches */
    .workflow-branches { display: flex; gap: 0.75rem; width: 100%; }

    .workflow-branch {
      flex: 1;
      padding: 0.6rem 0.8rem;
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      border-radius: 6px;
      text-align: center;
    }

    .workflow-branch-label {
      font-size: 0.7rem;
      font-weight: 600;
      color: #16a34a;
      display: block;
      margin-bottom: 0.2rem;
    }

    .workflow-branch-action { font-size: 0.75rem; color: #6b7280; }

    /* Guardrails footer */
    .workflow-guardrails {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      padding: 0.75rem 2rem;
      background: #f8f9fb;
      border-top: 1px solid #e5e7eb;
      justify-content: center;
    }

    .workflow-guardrail-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 0.6rem;
      font-weight: 500;
      color: #6b7280;
      background: #fff;
      border: 1px solid #e5e7eb;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
    }

    .workflow-guardrail-tag svg { color: #16a34a; flex-shrink: 0; }

    /* ============================================
       PRICING
       ============================================ */
    .pricing {
      background: #f8f9fb;
      padding: 6rem 2rem;
    }

    .pricing-title {
      font-size: 1.75rem;
      font-weight: 700;
      text-align: center;
      margin: 0 0 0.75rem;
      color: #1a1a2e;
      letter-spacing: -0.02em;
    }

    .pricing-subtitle {
      font-size: 1rem;
      color: #6b7280;
      text-align: center;
      margin: 0 auto 2.5rem;
      max-width: 550px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .pricing-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 2rem;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .pricing-card h3 { font-size: 1.1rem; font-weight: 600; margin: 0 0 0.5rem; color: #1a1a2e; }

    .pricing-amount { font-size: 2.25rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.25rem; }
    .pricing-amount span { font-size: 1rem; font-weight: 500; color: #6b7280; }

    .pricing-card-desc { font-size: 0.85rem; color: #6b7280; margin: 0 0 1rem; }

    .pricing-included {
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #9ca3af;
      margin: 0 0 0.25rem;
    }

    .pricing-card li { padding: 0.35rem 0; color: #6b7280; font-size: 0.9rem; }
    .pricing-card li::before { content: "\2713"; color: #28ca42; margin-right: 0.5rem; font-weight: 600; }

    .pricing-card ul { margin-bottom: 1.25rem; }

    /* BYOK Box */
    .pricing-byok {
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      border-radius: 8px;
      padding: 0.85rem 1rem;
      margin-bottom: 1.25rem;
    }

    .pricing-byok-header {
      margin-bottom: 0.35rem;
    }

    .pricing-byok-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: #16a34a;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .pricing-byok-save {
      font-size: 0.7rem;
      font-weight: 600;
      color: #16a34a;
      background: rgba(22,163,106,0.1);
      padding: 0.15rem 0.5rem;
      border-radius: 10px;
    }

    .pricing-byok-price {
      font-size: 1.1rem;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 0.2rem;
    }

    .pricing-byok-price span { font-size: 0.8rem; font-weight: 500; color: #6b7280; }

    .pricing-byok-detail {
      font-size: 0.8rem;
      color: #6b7280;
      margin: 0;
    }

    .pricing-byok-detail strong { color: #16a34a; font-weight: 600; }

    .pricing-byok-savings {
      display: block;
      width: fit-content;
      margin: 0.4rem auto 0;
      font-size: 0.7rem;
      font-weight: 600;
      color: #16a34a;
      background: rgba(22,163,106,0.1);
      padding: 0.2rem 0.6rem;
      border-radius: 10px;
    }

    /* Pro BYOK box variant */
    .pricing-card-pro .pricing-byok {
      background: rgba(22,163,106,0.08);
      border-color: rgba(22,163,106,0.25);
    }

    .pricing-card-pro .pricing-byok-price { color: #fff; }
    .pricing-card-pro .pricing-byok-detail { color: rgba(255,255,255,0.6); }
    .pricing-card-pro .pricing-byok-detail strong { color: #4ade80; }
    .pricing-card-pro .pricing-byok-savings { color: #4ade80; background: rgba(74,222,128,0.1); }

    /* Enterprise BYOK */
    .pricing-byok-enterprise {
      background: #f8f9fb;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      padding: 0.85rem 1rem;
      margin-bottom: 1.25rem;
    }

    .pricing-byok-enterprise .pricing-byok-label { color: #4a90d9; }

    .pricing-byok-enterprise p {
      font-size: 0.8rem;
      color: #6b7280;
      margin: 0.25rem 0 0;
    }

    .pricing-cta {
      display: block;
      text-align: center;
      padding: 0.7rem 1.25rem;
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 6px;
      color: #1a1a2e;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.2s;
      margin-top: auto;
    }

    .pricing-cta:hover { background: #f8f9fb; border-color: #d1d5db; }

    /* Pro Card */
    .pricing-card-pro {
      background: #0a0a14;
      border-color: rgba(74,144,217,0.3);
      transform: scale(1.03);
      box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
    }

    .pricing-card-pro h3,
    .pricing-card-pro .pricing-amount { color: #fff; }
    .pricing-card-pro .pricing-amount span { color: rgba(255,255,255,0.6); }
    .pricing-card-pro li { color: rgba(255,255,255,0.7); }
    .pricing-card-pro .pricing-card-desc { color: rgba(255,255,255,0.6); }
    .pricing-card-pro .pricing-included { color: rgba(255,255,255,0.4); }

    .pricing-badge {
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      background: #4a90d9;
      color: #fff;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 0.3rem 0.9rem;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .pricing-cta-pro {
      display: block;
      text-align: center;
      padding: 0.7rem 1.25rem;
      background: #4a90d9;
      border-radius: 6px;
      color: #fff;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.2s;
      margin-top: auto;
    }

    .pricing-cta-pro:hover { background: #5a9fe8; }

    /* ============================================
       FINAL CTA
       ============================================ */
    .final-cta {
      position: relative;
      background: #050508;
      padding: 6rem 2rem;
      text-align: center;
      overflow: hidden;
    }

    .final-cta .agent-mesh { opacity: 0.7; }

    .final-cta-content { position: relative; z-index: 1; }

    .final-cta h2 { font-size: 1.75rem; font-weight: 700; margin: 0 0 0.75rem; letter-spacing: -0.02em; }
    .final-cta p { font-size: 1rem; color: rgba(255,255,255,0.6); margin: 0 0 2rem; }

    .final-cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 2rem;
      background: #4a90d9;
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.2s;
      box-shadow: 0 0 30px rgba(74,144,217,0.3);
    }

    .final-cta-button:hover { background: #5a9fe8; box-shadow: 0 0 40px rgba(74,144,217,0.4); transform: translateY(-2px); }

    /* ============================================
       FOOTER
       ============================================ */
    .footer {
      background: #050508;
      padding: 2rem;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    .footer-content {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .footer-brand svg { color: #4a90d9; }

    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.2s; }
    .footer-links a:hover { color: #fff; }

    .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 900px) {
      .ask-grid { grid-template-columns: 1fr; gap: 3rem; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
      .pricing-card-pro { transform: none; }
      .workflow-agents { flex-direction: column; }
      .workflow-window { max-width: 100%; }
    }

    @media (max-width: 768px) {
      /* Nav */
      .nav { padding: 1rem 1.5rem; }

      /* Hero title — shrink rotator to prevent overflow */
      .hero-content { padding: 1.5rem 1rem 2rem; }
      .hero-title { font-size: 1.75rem; margin-bottom: 0.75rem; }
      .hero-accent { font-size: 0.85em; }
      .hero-subtitle { margin-bottom: 1.5rem; font-size: 0.95rem; }

      /* Demo — compact for mobile */
      .hero-demo { margin-bottom: 1.5rem; }
      .demo-window {
        background: rgba(10, 10, 20, 0.92);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
      }
      .demo-body { padding: 1rem; min-height: auto; }
      .demo-message p { font-size: 0.95rem; }
      .demo-agents-section { margin-top: 0.75rem; }
      .demo-agents-label { font-size: 0.65rem; margin-bottom: 0.5rem; }
      .demo-agents-list { flex-direction: row; flex-wrap: wrap; gap: 0.35rem; }
      .demo-agent-card {
        flex: 1 1 calc(50% - 0.35rem);
        padding: 0.4rem 0.6rem;
        gap: 0.4rem;
      }
      .demo-agent-icon { width: 22px; height: 22px; min-width: 22px; border-radius: 5px; }
      .demo-agent-icon svg { width: 12px; height: 12px; }
      .demo-agent-name { font-size: 0.75rem; }
      .demo-agent-result { font-size: 0.65rem; }
      .demo-answer { padding: 0.75rem; margin-top: 0.75rem; }
      .demo-answer-label { font-size: 0.65rem; }
      .demo-answer p { font-size: 0.8rem; margin-bottom: 0.5rem; line-height: 1.5; }
      .demo-sources { font-size: 0.65rem; }
      .demo-source-tag { padding: 0.15rem 0.4rem; }

      /* CTAs */
      .hero-ctas { flex-direction: column; width: 100%; gap: 0.5rem; }
      .cta-primary { width: 100%; justify-content: center; }
      .cta-secondary { width: 100%; text-align: center; padding: 0.5rem 1rem; }

      /* Sections */
      .ask-section, .automate-section, .pricing, .final-cta { padding: 4rem 1.5rem; }
      .automate-section { padding-top: calc(4rem + 4vw); }

      /* Footer */
      .footer-content { flex-direction: column; text-align: center; }
      .footer-links { justify-content: center; }
    }

    @media (prefers-reduced-motion: reduce) {
      .agent-mesh { display: none; }
      .hero-rotator span { animation: none !important; opacity: 0; }
      .hero-rotator span:last-child { opacity: 1; }
    }

    /* SVG icon sizing */
    .icon-sm { width: 14px; height: 14px; }
    .icon-md { width: 16px; height: 16px; }
    .icon-lg { width: 24px; height: 24px; }
    .icon-xl { width: 28px; height: 28px; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page { background: #050508; min-height: 100vh; }
.legal-container { max-width: 800px; margin: 0 auto; padding: 2rem 2rem 6rem; }
.legal-container h1 { font-size: 2rem; font-weight: 700; margin: 2rem 0 0.5rem; color: #fff; }
.legal-date { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 2rem; }
.legal-content { color: rgba(255,255,255,0.8); line-height: 1.8; }
.legal-content h2 { font-size: 1.4rem; color: #fff; margin: 2.5rem 0 1rem; }
.legal-content h3 { font-size: 1.15rem; color: #fff; margin: 2rem 0 0.75rem; }
.legal-content p { margin: 0 0 1rem; }
.legal-content ul, .legal-content ol { margin: 0 0 1rem 1.5rem; list-style: initial; }
.legal-content li { margin: 0.3rem 0; color: rgba(255,255,255,0.7); }
.legal-content a { color: #4a90d9; text-decoration: underline; }

/* ============================================
   CONTACT MODAL
   ============================================ */
.contact-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.contact-overlay.active { display: flex; }

.contact-modal {
  position: relative;
  width: 90%;
  max-width: 480px;
  background: #0a0a14;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
}

.contact-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}

.contact-close:hover { color: #fff; }

.contact-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.contact-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.contact-field { margin-bottom: 1rem; }

.contact-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.35rem;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #4a90d9;
}

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

.contact-honeypot { position: absolute; left: -9999px; }

.contact-status {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  min-height: 0;
}

.contact-status.success { color: #28ca42; }
.contact-status.error { color: #ef4444; }

.contact-submit {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: #4a90d9;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-submit:hover { background: #5a9fe8; }
.contact-submit:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 768px) {
  .contact-modal { padding: 1.5rem; }
}
