    :root {
      --bg: #030305;
      --surface: #0e0e11;
      --surface-glass: rgba(20, 20, 25, 0.6);
      --border: rgba(255,255,255,0.08);
      --accent: #8b5cf6;
      --text-main: #ffffff;
      --text-muted: #94a3b8;
      
      --gradient-primary: linear-gradient(135deg, #c084fc 0%, #6366f1 50%, #38bdf8 100%);
      
      --font-display: 'Space Grotesk', sans-serif;
      --font-body: 'Inter', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
    }

    * { box-sizing: border-box; }
    
    body {
      margin: 0;
      background-color: var(--bg);
      color: var(--text-main);
      font-family: var(--font-body);
      line-height: 1.6;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    /* Background FX */
    .glow-orb {
      position: fixed; top: -20%; right: -10%; width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0,0,0,0) 70%);
      filter: blur(80px); z-index: -1; pointer-events: none;
    }
    .glow-orb-2 {
      position: fixed; bottom: -20%; left: -10%; width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(192, 132, 252, 0.1) 0%, rgba(0,0,0,0) 70%);
      filter: blur(80px); z-index: -1; pointer-events: none;
    }
    .noise {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSc0MDAnIGhlaWdodD0nNDAwJz48ZmlsdGVyIGlkPSdub2lzZSc+PGZlVHVyYnVsZW5jZSB0eXBlPSdmcmFjdGFsTm9pc2UnIGJhc2VGcmVxdWVuY3k9JzAuNjUnIG51bU9jdGF2ZXM9JzMnIHN0aXRjaFRpbGVzPSdzdGl0Y2gnLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0nMTAwJScgaGVpZ2h0PScxMDAlJyBmaWx0ZXI9J3VybCgjbm9pc2UpJyBvcGFjaXR5PScwLjAzJy8+PC9zdmc+');
      opacity: 0.4; z-index: -1; pointer-events: none;
    }

    /* Utilities */
    a { text-decoration: none; color: inherit; transition: 0.3s; }
    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; }
    .mono { font-family: var(--font-mono); letter-spacing: -0.5px; }
    .display-text { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; }
    
    .gradient-text {
      font-size: clamp(24px, 3vw, 48px);
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    /* Nav */
    nav {
      display: flex; justify-content: space-between; align-items: center;
      padding: 32px 0; backdrop-filter: blur(5px);
    }
    .logo { font-family: var(--font-display); font-weight: 700; font-size: 22px; display:flex; align-items:center; gap:8px;}
    .logo-mark { width:12px; height:12px; background: var(--gradient-primary); border-radius: 2px; }
    .nav-links { display: flex; gap: 32px; }
    .nav-link { 
      font-size: 14px; font-weight: 500; color: var(--text-muted); position: relative;
    }
    .nav-link:hover { color: #fff; }
    .nav-link::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 0%; height: 1px;
      background: var(--gradient-primary); transition: 0.3s;
    }
    .nav-link:hover::after { width: 100%; }

    /* Hero */
    .problem-banner {
      background: linear-gradient(90deg, rgba(124,58,237,0.06), rgba(56,189,248,0.02));
      border: 1px solid rgba(255,255,255,0.03);
      padding: 12px 16px; border-radius: 10px; display: inline-flex; gap:12px; align-items:center;
      color: var(--text-muted); font-size:14px; margin-bottom:24px;
    }

    .hero { padding: 64px 0 80px; position: relative; }
    h1 { font-size: clamp(48px, 7vw, 82px); line-height: 1.05; margin: 0 0 24px 0; }
    .hero-sub {
      font-size: 18px; color: var(--text-muted); max-width: 640px; margin-bottom: 32px; font-weight: 300;
    }
    
    .tech-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 12px; border-radius: 100px;
      background: rgba(255,255,255,0.03); border: 1px solid var(--border);
      font-family: var(--font-mono); font-size: 12px; color: #a78bfa;
      margin-bottom: 16px;
    }

    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 14px 28px; font-weight: 600; border-radius: 8px; font-size: 15px;
      cursor: pointer; transition: transform 0.2s;
    }
    .btn:active { transform: scale(0.98); }
    .btn-primary {
      background: var(--gradient-primary);
      color: #fff; border: none;
      box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
    }
    .btn-primary:hover { box-shadow: 0 0 30px rgba(124, 58, 237, 0.5); }
    .btn-secondary {
      background: rgba(255,255,255,0.05); color: #fff; border: 1px solid var(--border);
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

    .section-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 40px; border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-top: 100px;
    }
    .section-title { font-size: 14px; font-family: var(--font-mono); color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase;}

    /* Grid System */
    .bento-grid {
      display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px;
    }
    .span-12 { grid-column: span 12; }
    .span-8 { grid-column: span 8; }
    .span-4 { grid-column: span 4; }
    .span-6 { grid-column: span 6; }

    .card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 16px; padding: 32px; position: relative; overflow: hidden;
      transition: 0.3s; display: flex; flex-direction: column; justify-content: space-between;
    }
    .card::before {
      content:""; position: absolute; inset: 0; border-radius: 16px; padding: 1px;
      background: var(--gradient-primary); 
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor; mask-composite: exclude;
      opacity: 0; transition: opacity 0.3s;
    }
    .card:hover { transform: translateY(-4px); background: var(--surface-glass); }
    .card:hover::before { opacity: 1; }

    /* Agentaur Special Styling */
    .card.product-showcase {
      background: linear-gradient(145deg, #1e1b4b 0%, #0e0e11 100%);
      border: 1px solid rgba(167, 139, 250, 0.2);
    }
    .card.product-showcase .card-tag {
      background: rgba(167, 139, 250, 0.1); color: #a78bfa; border-color: #a78bfa;
    }
    
    .card-tag { 
      font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; 
      color: var(--text-muted); border: 1px solid var(--border); 
      padding: 4px 8px; border-radius: 4px; align-self: flex-start; margin-bottom: 16px;
    }
    .card-title { font-family: var(--font-display); font-size: 24px; margin: 0 0 8px 0; }
    .card-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
    
    .visual-box {
      margin-top: 24px; height: 140px; width: 100%;
      background: rgba(0,0,0,0.2); border: 1px dashed var(--border); border-radius: 8px;
      display: flex; align-items: center; justify-content: center; overflow: hidden;
      position: relative;
    }
    /* SVG Styling inside visual boxes */
    .visual-box svg { width: 100%; height: 100%; opacity: 0.6; }
    .anim-pulse { animation: pulse-opacity 3s infinite; }
    @keyframes pulse-opacity { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.8; } }

    /* Services Section */
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .service-item {
      border: 1px solid var(--border); border-radius: 12px; padding: 24px;
      background: rgba(255,255,255,0.01); transition: 0.3s;
    }
    .service-item:hover { background: rgba(255,255,255,0.03); border-color: rgba(139, 92, 246, 0.3); }
    .service-icon {
      width: 32px; height: 32px; border-radius: 6px; 
      background: rgba(255,255,255,0.05); color: var(--accent);
      display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
    }
    .service-item h4 { margin: 0 0 8px 0; font-family: var(--font-display); font-size: 18px; }
    .service-item p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.5; }

    /* Advisory/Steps */
    .advisory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
    .step-item { display: flex; gap: 20px; margin-bottom: 32px; }
    .step-num {
      font-family: var(--font-display); font-size: 32px; font-weight: 700;
      color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    }
    .step-content h3 { margin: 0 0 8px 0; font-family: var(--font-display); font-size: 20px; }
    .step-content p { margin: 0; font-size: 15px; color: var(--text-muted); }

    /* Founder */
    .founder-section {
      background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      padding: 80px 0; margin: 80px 0;
    }
    .founder-flex { display: flex; align-items: center; gap: 40px; }
    .founder-img {
      width: 140px; height: 140px; border-radius: 100px; object-fit: cover;
      border: 2px solid rgba(255,255,255,0.1); padding: 4px;
    }
    
    /* Contact */
    .contact-box { max-width: 540px; margin: 0 auto; text-align: center; padding: 60px 0; }
    .form-group { text-align: left; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
    .input-field, .textarea-field {
      width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
      padding: 16px; border-radius: 8px; color: #fff; font-family: var(--font-body); font-size: 15px;
      transition: 0.3s; outline: none;
    }
    .textarea-field { resize: vertical; min-height: 100px; }
    .input-field:focus, .textarea-field:focus { border-color: #8b5cf6; background: rgba(139, 92, 246, 0.05); }
    
    .submit-btn {
      width: 100%; background: var(--gradient-primary); border: 0; border-radius: 8px;
      color: #fff; font-weight: 600; padding: 16px; cursor: pointer; font-size: 16px;
    }
    .submit-btn:hover { opacity: 0.9; }

    .advisory-pillars-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .pillar-item {
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 20px;
      font-size: 14px;
      font-weight: 500;
      text-align: center;
    }

    @media (max-width: 768px) {
      .bento-grid { grid-template-columns: 1fr; }
      .card { grid-column: span 12 !important; }
      .services-grid { grid-template-columns: 1fr; }
      .advisory-grid { grid-template-columns: 1fr; gap: 40px; }
      .founder-flex { flex-direction: column; text-align: center; }
      h1 { font-size: 42px; }
      .advisory-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  </style>
  <style>
    .small-text { font-family: var(--font-mono); font-size: 13px; fill: var(--text-muted); dominant-baseline: middle; text-anchor: middle; }
    .arrow { stroke: var(--accent); stroke-width: 1.4; stroke-linecap: round; fill: none; marker-end: url(#arrowhead); }

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


.advisory-band {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.advisory-band .container {
  text-align: center;
}

.advisory-band-title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.advisory-band-description {
  max-width: 720px;
  margin: 0 auto 48px;
  color: var(--text-muted);
  font-size: 16px;
}

.advisory-band-cta {
  margin-top: 48px;
}


.lab-section-header-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.lab-card-header-flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.lab-card-agentaur-span {
  color: #a78bfa;
}

.lab-card-gradient-bg {
  background: linear-gradient(145deg, #1e1b4b, #0f172a);
}

.lab-card-title-white {
  color: #fff;
}


.advisory-section-header-no-margin {
  margin-top: 0;
  margin-bottom: 20px;
}

.advisory-section-title-custom {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.advisory-section-description {
  color: var(--text-muted);
  font-size: 16px;
}

.advisory-steps-container {
  padding-top: 60px;
}


.founder-tagline {
  color: #8b5cf6;
  margin-bottom: 8px;
}

.founder-name {
  font-size: 28px;
  margin: 0 0 12px 0;
}

.founder-bio {
  color: var(--text-muted);
  max-width: 600px;
}

.founder-links {
  margin-top: 16px;
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
}

.founder-link {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}


.contact-title {
  font-size: 32px;
  margin-bottom: 12px;
}

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

.contact-success-message {
  display: none;
  margin-top: 16px;
  color: #a78bfa;
  font-size: 14px;
}


.main-footer {
  text-align: center;
  padding: 40px 0;
  color: rgba(255,255,255,0.2);
  font-size: 13px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
}


.logo-img {
  height: 40px; /* Adjust as needed */
  width: auto;
}

/* Client Carousel */
.client-carousel {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.client-carousel-title {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.logo-scroller {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #fff 20%, #fff 80%, transparent);
  mask-image: linear-gradient(to right, transparent, #fff 20%, #fff 80%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.logo-track img {
  height: 32px;
  margin: 0 40px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s;
}

.logo-track:hover img {
  opacity: 0.8;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

