<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Jennie AI</title>


<style>

body {

  margin: 0;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;

  background: #0f172a;

  color: white;

}


/* NAV */

nav {

  display: flex;

  justify-content: space-between;

  padding: 20px 60px;

  background: rgba(0,0,0,0.3);

  position: fixed;

  width: 100%;

  top: 0;

  backdrop-filter: blur(10px);

}


nav .logo {

  font-weight: bold;

  color: #60a5fa;

}


nav a {

  margin-left: 20px;

  color: #ccc;

  text-decoration: none;

}


nav a:hover {

  color: white;

}


/* HERO */

.hero {

  text-align: center;

  padding: 180px 20px 100px;

}


.hero h1 {

  font-size: 60px;

  margin-bottom: 20px;

}


.hero p {

  font-size: 20px;

  color: #cbd5e1;

}


.btn {

  margin-top: 30px;

  display: inline-block;

  padding: 12px 24px;

  border-radius: 8px;

  background: #2563eb;

  color: white;

  text-decoration: none;

}


/* FEATURES */

.features {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  padding: 60px;

}


.card {

  background: #1e293b;

  padding: 20px;

  border-radius: 12px;

}


.card h3 {

  color: #60a5fa;

}


/* FOOTER */

footer {

  text-align: center;

  padding: 40px;

  color: #64748b;

}


/* RESPONSIVE */

@media (max-width: 768px) {

  .features {

    grid-template-columns: 1fr;

  }


  .hero h1 {

    font-size: 36px;

  }

}

</style>


</head>


<body>


<!-- NAV -->

<nav>

  <div class="logo">Jennie AI</div>

  <div>

    <a href="#">Products</a>

    <a href="#">Pricing</a>

    <a href="#">Docs</a>

    <a href="#">Login</a>

  </div>

</nav>


<!-- HERO -->

<section class="hero">

  <h1>Jennie AI</h1>

  <p>The AI Workspace for Finance & Business</p>

  <p>Analyze. Create. Automate. Accelerate.</p>

  <a class="btn" href="#">Get Started</a>

</section>


<!-- FEATURES -->

<section class="features">


  <div class="card">

    <h3>AI Finance</h3>

    <p>Financial analysis, forecasting, FP&A, cash flow insights.</p>

  </div>


  <div class="card">

    <h3>AI Legal</h3>

    <p>Contract review, risk detection, compliance assistance.</p>

  </div>


  <div class="card">

    <h3>AI Office</h3>

    <p>PPT, Excel, reports, meeting summaries automation.</p>

  </div>


  <div class="card">

    <h3>AI Data</h3>

    <p>Charts, dashboards, BI insights, SQL assistance.</p>

  </div>


  <div class="card">

    <h3>AI Knowledge</h3>

    <p>Upload files and let AI answer all your business questions.</p>

  </div>


  <div class="card">

    <h3>AI Agents</h3>

    <p>Finance agent, HR agent, sales agent, procurement agent.</p>

  </div>


</section>


<!-- FOOTER -->

<footer>

  © 2026 Jennie AI. The AI Workspace for Finance & Business.

</footer>


</body>

</html>