<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Lexoract – AI for Law Students</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f7f6f3;
color: #222;
}
header {
background-color: #0e1a40;
color: white;
padding: 2rem;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header p {
font-size: 1.2rem;
margin-top: 0.5rem;
}
section {
padding: 3rem;
text-align: center;
}
.feature {
margin: 2rem auto;
max-width: 700px;
padding: 1.5rem;
background-color: white;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
border-radius: 12px;
}
.feature h2 {
color: #ff5c35;
}
footer {
background-color: #0e1a40;
color: white;
text-align: center;
padding: 1rem;
font-size: 0.9rem;
}
.mystery-box {
background-color: #ffe2d1;
padding: 1.5rem;
border-radius: 10px;
margin-top: 3rem;
font-style: italic;
}
</style>
</head>
<body>
<header>
<h1>Lexoract</h1>
<p>The AI Companion for Law Students</p>
</header>
<section>
<div class="feature">
<h2>🧠 IRAC Summarizer</h2>
<p>Instantly break down complex cases into Issue, Rule, Application, and Conclusion.</p>
</div>
<div class="feature">
<h2>📚 Flashcard Builder</h2>
<p>Turn summaries into study-ready flashcards in seconds.</p>
</div>
<div class="feature">
<h2>🌀 Coming Soon: Lexoract Suite</h2>
<p class="mystery-box">A mysterious and powerful tool is in development. Stay tuned.</p>
</div>
</section>
<footer>
© 2025 Lexoract. Built with questionable sleep schedules and solid case law.
</footer>
</body>
</html>