<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Agentic Deployment Company</title>
<meta name="description" content="Agentic Deployment Company helps organizations deploy autonomous AI agents to solve high-impact, real-world problems." />
<style>
  :root {
    --bg: #ffffff;
    --text: #0d0d0d;
    --muted: #5d5d5d;
    --line: #e8e8e8;
    --accent: #0d0d0d;
    --pill-bg: #f3f3f3;
    --hero-art: #2f4a47;
  }

  * { box-sizing: border-box; }

  html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Söhne", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

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

  /* ---------- Top navigation ---------- */
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 40px;
    border-bottom: 1px solid transparent;
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .brand {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
  }

  .nav-links {
    display: flex;
    gap: 28px;
    font-size: 14px;
    color: var(--text);
  }

  .nav-links a {
    transition: opacity 0.15s ease;
  }

  .nav-links a:hover { opacity: 0.6; }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
  }

  .pill {
    background: var(--pill-bg);
    border-radius: 999px;
    padding: 9px 18px;
    transition: background 0.15s ease;
  }

  .pill:hover { background: #e7e7e7; }

  .nav-right a.contact {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  /* ---------- Hero ---------- */
  .hero {
    text-align: center;
    padding: 120px 24px 96px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .hero-eyebrow {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 36px;
  }

  .hero h1 {
    font-size: clamp(40px, 6.2vw, 88px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    font-weight: 500;
    margin: 0 0 28px;
  }

  .hero p {
    font-size: 18px;
    color: var(--text);
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.55;
  }

  .cta {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 15px;
    transition: opacity 0.15s ease;
  }

  .cta:hover { opacity: 0.85; }

  /* ---------- Section blocks ---------- */
  .section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .section h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 500;
    margin: 0 0 24px;
  }

  .section p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 16px;
    max-width: 520px;
  }

  .art {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--hero-art);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
  }

  /* Decorative dashed arc inside the art block */
  .art::before {
    content: "";
    position: absolute;
    inset: 18% -30% -50% 18%;
    border-radius: 50%;
    border: 1.5px dashed rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.6) transparent transparent transparent;
    transform: rotate(-12deg);
  }

  .art::after {
    content: "";
    position: absolute;
    inset: 35% -10% -30% 35%;
    border-radius: 50%;
    border: 1.5px dashed rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.35) transparent transparent transparent;
    transform: rotate(-8deg);
  }

  /* ---------- Feature grid ---------- */
  .features {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 40px 120px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }

  .feature h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
  }

  .feature p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
  }

  .feature-num {
    display: inline-block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
  }

  /* ---------- Footer ---------- */
  footer {
    border-top: 1px solid var(--line);
    padding: 48px 40px;
    color: var(--muted);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  footer a { color: var(--muted); }
  footer a:hover { color: var(--text); }

  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .nav { padding: 18px 20px; }
    .nav-links { display: none; }
    .hero { padding: 72px 20px 60px; }
    .section {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 56px 20px;
    }
    .features {
      grid-template-columns: 1fr;
      padding: 24px 20px 80px;
      gap: 36px;
    }
    footer { padding: 32px 20px; }
  }
</style>
</head>
<body>

<nav class="nav">
  <div class="nav-left">
    <a href="#" class="brand">Agentic Deployment</a>
    <div class="nav-links">
      <a href="#research">Research</a>
      <a href="#products">Products</a>
      <a href="#business">Business</a>
      <a href="#developers">Developers</a>
      <a href="#company">Company</a>
    </div>
  </div>
  <div class="nav-right">
    <a href="#try" class="pill">Try now &nearr;</a>
    <a href="#contact" class="contact">Contact sales &rsaquo;</a>
  </div>
</nav>

<section class="hero">
  <div class="hero-eyebrow">Agentic Deployment</div>
  <h1>Autonomous agents<br/>bringing AI to enterprises</h1>
  <p>We built Agentic Deployment Company to help organizations solve high-impact problems with autonomous AI — starting from first principles and deploying agents that work reliably in real-world environments.</p>
  <a href="#announcement" class="cta">Read the announcement</a>
</section>

<section class="section" id="about">
  <div>
    <h2>What is agentic deployment?</h2>
    <p>Agentic deployment is the practice of designing, integrating, and operating AI agents that act on behalf of an organization — across its systems, data, and workflows.</p>
    <p>We embed with our customers to identify the highest-leverage problems, build agents tailored to those problems, and stay long enough to see them work at scale.</p>
  </div>
  <div class="art" aria-hidden="true"></div>
</section>

<section class="features">
  <div class="feature">
    <div class="feature-num">01</div>
    <h3>First-principles design</h3>
    <p>We start from the actual problem — not a prebuilt template — and shape every agent around the customer's domain, constraints, and goals.</p>
  </div>
  <div class="feature">
    <div class="feature-num">02</div>
    <h3>Deployed end-to-end</h3>
    <p>Our engineers ship in the customer's environment: their data, their security model, their existing systems. No throwaway demos.</p>
  </div>
  <div class="feature">
    <div class="feature-num">03</div>
    <h3>Built to run reliably</h3>
    <p>We measure agents the way our customers do — by outcomes — and stay engaged until they're operating with the reliability the business needs.</p>
  </div>
</section>

<footer>
  <div>&copy; <span id="year"></span> Agentic Deployment Company</div>
  <div style="display:flex; gap:24px;">
    <a href="#privacy">Privacy</a>
    <a href="#terms">Terms</a>
    <a href="#contact">Contact</a>
  </div>
</footer>

<script>
  document.getElementById('year').textContent = new Date().getFullYear();
</script>

</body>
</html>
