index.html
This commit is contained in:
590
index.html
Normal file
590
index.html
Normal file
@@ -0,0 +1,590 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="it">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>CLAUDE.md - Local-First Multi-Agent AI Platform</title>
|
||||||
|
|
||||||
|
<!-- Google Fonts: Inter for a clean, premium Apple-like look -->
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||||
|
|
||||||
|
<!-- GSAP & ScrollTrigger -->
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/ScrollTrigger.min.js"></script>
|
||||||
|
|
||||||
|
<!-- Lucide Icons -->
|
||||||
|
<script src="https://unpkg.com/lucide@latest"></script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--radius: 0.625rem;
|
||||||
|
|
||||||
|
/* Base Colors */
|
||||||
|
--background: oklch(0.945 0.012 328.5);
|
||||||
|
--foreground: oklch(0.145 0 0);
|
||||||
|
|
||||||
|
/* UI Elements */
|
||||||
|
--card: oklch(0.945 0.012 328.5);
|
||||||
|
--card-foreground: oklch(0.145 0 0);
|
||||||
|
--popover: oklch(0.945 0.012 328.5);
|
||||||
|
--popover-foreground: oklch(0.145 0 0);
|
||||||
|
|
||||||
|
/* Accents */
|
||||||
|
--primary: oklch(0.838 0.117 76.8);
|
||||||
|
--primary-foreground: oklch(0.145 0 0);
|
||||||
|
|
||||||
|
--secondary: oklch(0.627 0.041 274.5);
|
||||||
|
--secondary-foreground: oklch(0.945 0.012 328.5);
|
||||||
|
|
||||||
|
--muted: oklch(0.811 0.014 300.2);
|
||||||
|
--muted-foreground: oklch(0.627 0.041 274.5);
|
||||||
|
|
||||||
|
--accent: oklch(0.811 0.014 300.2);
|
||||||
|
--accent-foreground: oklch(0.145 0 0);
|
||||||
|
|
||||||
|
--destructive: oklch(0.577 0.245 27.325);
|
||||||
|
--destructive-foreground: oklch(0.985 0 0);
|
||||||
|
|
||||||
|
--border: oklch(0.811 0.014 300.2);
|
||||||
|
--input: oklch(0.811 0.014 300.2);
|
||||||
|
--ring: oklch(0.838 0.117 76.8);
|
||||||
|
|
||||||
|
/* Charts / Visuals */
|
||||||
|
--chart-1: oklch(0.646 0.222 41.116);
|
||||||
|
--chart-2: oklch(0.6 0.118 184.704);
|
||||||
|
--chart-3: oklch(0.398 0.07 227.392);
|
||||||
|
--chart-4: oklch(0.828 0.189 84.429);
|
||||||
|
--chart-5: oklch(0.769 0.188 70.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'Inter', sans-serif;
|
||||||
|
background-color: var(--background);
|
||||||
|
color: var(--foreground);
|
||||||
|
line-height: 1.6;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* --- Typography --- */
|
||||||
|
h1 {
|
||||||
|
font-size: clamp(2.5rem, 5vw, 4.5rem);
|
||||||
|
font-weight: 700;
|
||||||
|
letter-spacing: -0.04em;
|
||||||
|
line-height: 1.1;
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: clamp(2rem, 3vw, 3rem);
|
||||||
|
font-weight: 600;
|
||||||
|
letter-spacing: -0.03em;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 1.125rem;
|
||||||
|
color: var(--muted-foreground);
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* --- Components --- */
|
||||||
|
.container {
|
||||||
|
max-width: 1200px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 0 5%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 0.75rem 1.5rem;
|
||||||
|
border-radius: var(--radius);
|
||||||
|
font-weight: 500;
|
||||||
|
text-decoration: none;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
cursor: pointer;
|
||||||
|
border: none;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary {
|
||||||
|
background-color: var(--primary);
|
||||||
|
color: var(--primary-foreground);
|
||||||
|
box-shadow: 0 4px 14px 0 rgba(0,0,0,0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary:hover {
|
||||||
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 6px 20px 0 rgba(0,0,0,0.15);
|
||||||
|
filter: brightness(1.05);
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-secondary {
|
||||||
|
background-color: transparent;
|
||||||
|
color: var(--foreground);
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-secondary:hover {
|
||||||
|
background-color: var(--accent);
|
||||||
|
color: var(--accent-foreground);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* --- Navigation --- */
|
||||||
|
nav {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
padding: 1.5rem 5%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
background: color-mix(in srgb, var(--background) 80%, transparent);
|
||||||
|
backdrop-filter: blur(12px);
|
||||||
|
-webkit-backdrop-filter: blur(12px);
|
||||||
|
z-index: 100;
|
||||||
|
border-bottom: 1px solid color-mix(in srgb, var(--border) 30%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 1.25rem;
|
||||||
|
letter-spacing: -0.02em;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* --- Hero Section --- */
|
||||||
|
.hero {
|
||||||
|
padding: 12rem 5% 6rem;
|
||||||
|
text-align: center;
|
||||||
|
min-height: 90vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero p {
|
||||||
|
max-width: 600px;
|
||||||
|
margin: 0 auto 2.5rem;
|
||||||
|
font-size: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-buttons {
|
||||||
|
display: flex;
|
||||||
|
gap: 1rem;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* --- Zig-Zag Feature Layout --- */
|
||||||
|
.product-feature {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 60px;
|
||||||
|
padding: 8rem 5%;
|
||||||
|
min-height: 80vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-feature.reverse-layout {
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
}
|
||||||
|
|
||||||
|
.feature-content {
|
||||||
|
flex: 1;
|
||||||
|
max-width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.feature-visual {
|
||||||
|
flex: 1;
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
aspect-ratio: 4/3;
|
||||||
|
border-radius: var(--radius);
|
||||||
|
background: var(--card);
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
|
||||||
|
overflow: hidden;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Fake UI Elements (Instead of images) */
|
||||||
|
.mockup-window {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: white;
|
||||||
|
border-radius: calc(var(--radius) - 4px);
|
||||||
|
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mockup-header {
|
||||||
|
height: 24px;
|
||||||
|
background: var(--muted);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 12px;
|
||||||
|
gap: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mockup-dot {
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: var(--border);
|
||||||
|
}
|
||||||
|
.mockup-dot:nth-child(1) { background: var(--destructive); }
|
||||||
|
.mockup-dot:nth-child(2) { background: var(--primary); }
|
||||||
|
.mockup-dot:nth-child(3) { background: var(--secondary); }
|
||||||
|
|
||||||
|
.mockup-body {
|
||||||
|
padding: 1rem;
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Feature-specific mockups using your custom chart colors */
|
||||||
|
.skeleton-line { height: 12px; border-radius: 4px; background: var(--muted); }
|
||||||
|
.skeleton-box { flex: 1; border-radius: 6px; }
|
||||||
|
|
||||||
|
.mockup-storage .skeleton-box:nth-child(1) { background: var(--chart-1); opacity: 0.8;}
|
||||||
|
.mockup-storage .skeleton-box:nth-child(2) { background: var(--chart-2); opacity: 0.8;}
|
||||||
|
.mockup-storage .skeleton-box:nth-child(3) { background: var(--chart-3); opacity: 0.8;}
|
||||||
|
|
||||||
|
.mockup-ai .chat-bubble { padding: 0.75rem; border-radius: 8px; margin-bottom: 0.5rem; font-size: 0.75rem;}
|
||||||
|
.mockup-ai .user { background: var(--muted); align-self: flex-end; width: 70%; margin-left: auto;}
|
||||||
|
.mockup-ai .ai { background: var(--primary); color: var(--primary-foreground); width: 80%; }
|
||||||
|
|
||||||
|
.mockup-batch .block { height: 30px; border-radius: 6px; margin-bottom: 8px; display: flex; align-items: center; padding: 0 10px; font-size: 0.65rem; font-weight: bold; color: white;}
|
||||||
|
.mockup-batch .trigger { background: var(--chart-4); width: 60%; }
|
||||||
|
.mockup-batch .action { background: var(--chart-5); width: 80%; margin-left: 20px;}
|
||||||
|
.mockup-batch .storage { background: var(--secondary); width: 70%; margin-left: 40px;}
|
||||||
|
|
||||||
|
/* --- Tags & Pills --- */
|
||||||
|
.tag {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0.25rem 0.75rem;
|
||||||
|
border-radius: 50px;
|
||||||
|
font-size: 0.75rem;
|
||||||
|
font-weight: 600;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
.tag-local { background: var(--chart-2); color: white; }
|
||||||
|
.tag-byok { background: var(--chart-4); color: white; }
|
||||||
|
.tag-auto { background: var(--chart-5); color: white; }
|
||||||
|
|
||||||
|
/* --- Pricing Table --- */
|
||||||
|
.pricing {
|
||||||
|
padding: 8rem 5%;
|
||||||
|
background: color-mix(in srgb, var(--background) 95%, black);
|
||||||
|
}
|
||||||
|
.pricing-header { text-align: center; margin-bottom: 4rem; }
|
||||||
|
.pricing-grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||||
|
gap: 2rem;
|
||||||
|
max-width: 1200px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.price-card {
|
||||||
|
background: var(--card);
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
padding: 2.5rem 2rem;
|
||||||
|
border-radius: var(--radius);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.price-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
|
||||||
|
.price { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; display: flex; align-items: baseline; gap: 0.25rem;}
|
||||||
|
.price span { font-size: 1rem; color: var(--muted-foreground); font-weight: 400;}
|
||||||
|
.price-features { list-style: none; margin-bottom: 2rem; flex: 1;}
|
||||||
|
.price-features li { margin-bottom: 0.75rem; display: flex; gap: 0.5rem; align-items: center; color: var(--muted-foreground); font-size: 0.95rem;}
|
||||||
|
.price-card.featured { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); position: relative;}
|
||||||
|
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--primary-foreground); padding: 0.25rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600;}
|
||||||
|
|
||||||
|
/* --- Responsive --- */
|
||||||
|
@media (max-width: 900px) {
|
||||||
|
.product-feature, .product-feature.reverse-layout {
|
||||||
|
flex-direction: column;
|
||||||
|
text-align: center;
|
||||||
|
gap: 3rem;
|
||||||
|
padding: 5rem 5%;
|
||||||
|
}
|
||||||
|
.feature-content {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
.feature-visual {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 600px;
|
||||||
|
}
|
||||||
|
h1 { font-size: 2.5rem; }
|
||||||
|
h2 { font-size: 2rem; }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<!-- Navbar -->
|
||||||
|
<nav>
|
||||||
|
<div class="logo">
|
||||||
|
<i data-lucide="cpu"></i>
|
||||||
|
CLAUDE.md
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a href="#features" class="btn btn-secondary" style="border:none;">Features</a>
|
||||||
|
<a href="#pricing" class="btn btn-primary" style="padding: 0.5rem 1rem; font-size: 0.875rem;">Scarica App</a>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<!-- Hero Section -->
|
||||||
|
<section class="hero">
|
||||||
|
<div class="hero-content">
|
||||||
|
<div class="tag" style="background: var(--muted); color: var(--foreground); margin-bottom: 2rem;">
|
||||||
|
v1.0 Hybrid-First Desktop App
|
||||||
|
</div>
|
||||||
|
<h1>L'Intelligenza Artificiale,<br>finalmente privata.</h1>
|
||||||
|
<p>Piattaforma multi-agente in cui tu scegli dove salvare i dati e quale AI utilizzare. Crea workflow automatici in linguaggio naturale.</p>
|
||||||
|
|
||||||
|
<div class="hero-buttons">
|
||||||
|
<a href="#" class="btn btn-primary">Scarica per Windows/Mac</a>
|
||||||
|
<a href="#features" class="btn btn-secondary">Scopri l'architettura</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Feature 1: Storage (Text Left, Visual Right) -->
|
||||||
|
<section class="product-feature" id="features">
|
||||||
|
<div class="feature-content feature-element">
|
||||||
|
<span class="tag tag-local">Hybrid-First</span>
|
||||||
|
<h2>Il tuo storage, <br>le tue regole.</h2>
|
||||||
|
<p>Per ogni agente o batch, sei tu a decidere dove risiedono i dati. Il nostro backend non accede MAI ai tuoi file in chiaro.</p>
|
||||||
|
<ul style="list-style: none; margin-top: 1.5rem;">
|
||||||
|
<li style="display: flex; gap: 1rem; margin-bottom: 1rem;">
|
||||||
|
<i data-lucide="hard-drive" style="color: var(--chart-2);"></i>
|
||||||
|
<div>
|
||||||
|
<strong>Locale (PC)</strong>
|
||||||
|
<p style="font-size: 0.9rem; margin-bottom:0;">SQLite + SQLCipher direttamente sul tuo disco.</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li style="display: flex; gap: 1rem; margin-bottom: 1rem;">
|
||||||
|
<i data-lucide="cloud" style="color: var(--chart-3);"></i>
|
||||||
|
<div>
|
||||||
|
<strong>Cloud App</strong>
|
||||||
|
<p style="font-size: 0.9rem; margin-bottom:0;">Dati cifrati E2E. Il server vede solo blob opachi.</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="feature-visual feature-element">
|
||||||
|
<!-- UI Mockup: Storage Selector -->
|
||||||
|
<div class="mockup-window mockup-storage">
|
||||||
|
<div class="mockup-header">
|
||||||
|
<div class="mockup-dot"></div><div class="mockup-dot"></div><div class="mockup-dot"></div>
|
||||||
|
</div>
|
||||||
|
<div class="mockup-body" style="flex-direction: row; gap: 10px;">
|
||||||
|
<div class="skeleton-box" style="display:flex; flex-direction:column; justify-content:center; align-items:center; color:white; font-weight:600; font-size:0.8rem;">Local Only</div>
|
||||||
|
<div class="skeleton-box" style="display:flex; flex-direction:column; justify-content:center; align-items:center; color:white; font-weight:600; font-size:0.8rem;">Sync Mode</div>
|
||||||
|
<div class="skeleton-box" style="display:flex; flex-direction:column; justify-content:center; align-items:center; color:white; font-weight:600; font-size:0.8rem;">Cloud E2E</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Feature 2: BYOK (Visual Left, Text Right) -->
|
||||||
|
<section class="product-feature reverse-layout">
|
||||||
|
<div class="feature-content feature-element">
|
||||||
|
<span class="tag tag-byok">Bring Your Own Key</span>
|
||||||
|
<h2>Scegli la tua <br>Intelligenza.</h2>
|
||||||
|
<p>Non sei vincolato a un solo modello. Configura le tue API key e scegli il miglior provider per ogni specifico task.</p>
|
||||||
|
|
||||||
|
<div style="display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem;">
|
||||||
|
<div style="padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); display:flex; align-items:center; gap:0.5rem;">
|
||||||
|
<div style="width:10px; height:10px; border-radius:50%; background: var(--chart-4);"></div> OpenAI
|
||||||
|
</div>
|
||||||
|
<div style="padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); display:flex; align-items:center; gap:0.5rem;">
|
||||||
|
<div style="width:10px; height:10px; border-radius:50%; background: var(--chart-5);"></div> Anthropic
|
||||||
|
</div>
|
||||||
|
<div style="padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); display:flex; align-items:center; gap:0.5rem;">
|
||||||
|
<div style="width:10px; height:10px; border-radius:50%; background: var(--chart-1);"></div> Mistral
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="feature-visual feature-element">
|
||||||
|
<!-- UI Mockup: AI Chat -->
|
||||||
|
<div class="mockup-window mockup-ai">
|
||||||
|
<div class="mockup-header">
|
||||||
|
<div class="mockup-dot"></div><div class="mockup-dot"></div><div class="mockup-dot"></div>
|
||||||
|
<span style="font-size: 0.6rem; margin-left: auto; color: var(--muted-foreground)">Provider: Anthropic Claude 3.5</span>
|
||||||
|
</div>
|
||||||
|
<div class="mockup-body" style="background: var(--background);">
|
||||||
|
<div class="chat-bubble user">Analizza le email in cartella "Fatture" e crea un report.</div>
|
||||||
|
<div class="chat-bubble ai">Ho trovato 14 fatture. Ho estratto importi e fornitori usando il modello selezionato. Le ho salvate in locale.</div>
|
||||||
|
<div class="skeleton-line" style="width: 50%; align-self:flex-end;"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Feature 3: Batch Builder (Text Left, Visual Right) -->
|
||||||
|
<section class="product-feature">
|
||||||
|
<div class="feature-content feature-element">
|
||||||
|
<span class="tag tag-auto">LLM-Powered Automation</span>
|
||||||
|
<h2>Batch Builder:<br>Programma a parole.</h2>
|
||||||
|
<p>Descrivi in linguaggio naturale cosa vuoi automatizzare. Il nostro LLM tradurrà la tua richiesta in un file di configurazione sicuro (JSON) pronto per l'esecuzione.</p>
|
||||||
|
<p style="font-size: 0.95rem; border-left: 3px solid var(--primary); padding-left: 1rem; margin-top: 1rem; font-style: italic;">
|
||||||
|
"Ogni sera alle 20, scansiona la cartella Documenti/Fatture, estrai importo dai PDF, e crea un record nel mio registro spese in cloud."
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="feature-visual feature-element">
|
||||||
|
<!-- UI Mockup: Batch Workflow -->
|
||||||
|
<div class="mockup-window mockup-batch">
|
||||||
|
<div class="mockup-header">
|
||||||
|
<div class="mockup-dot"></div><div class="mockup-dot"></div><div class="mockup-dot"></div>
|
||||||
|
<span style="font-size: 0.6rem; margin-left: auto; color: var(--muted-foreground)">batch_config.json</span>
|
||||||
|
</div>
|
||||||
|
<div class="mockup-body" style="background: var(--background); display:flex; flex-direction:column; justify-content:center;">
|
||||||
|
<div class="block trigger"><i data-lucide="clock" style="width:12px; height:12px; margin-right:5px;"></i> Trigger: CRON 20:00</div>
|
||||||
|
<div style="width: 2px; height: 10px; background: var(--border); margin-left: 40px;"></div>
|
||||||
|
<div class="block action"><i data-lucide="folder-search" style="width:12px; height:12px; margin-right:5px;"></i> FileSystem: /Fatture/*.pdf</div>
|
||||||
|
<div style="width: 2px; height: 10px; background: var(--border); margin-left: 60px;"></div>
|
||||||
|
<div class="block storage"><i data-lucide="database" style="width:12px; height:12px; margin-right:5px;"></i> Action: create_record (Local)</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Pricing Table -->
|
||||||
|
<section class="pricing" id="pricing">
|
||||||
|
<div class="pricing-header feature-element">
|
||||||
|
<h2>Piani semplici e trasparenti</h2>
|
||||||
|
<p>Scegli il livello di automazione adatto alle tue necessità.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pricing-grid">
|
||||||
|
<!-- Free -->
|
||||||
|
<div class="price-card feature-element">
|
||||||
|
<h3>Free</h3>
|
||||||
|
<div class="price">0€<span>/mese</span></div>
|
||||||
|
<ul class="price-features">
|
||||||
|
<li><i data-lucide="check" style="color:var(--primary); width:18px;"></i> 3 agenti base</li>
|
||||||
|
<li><i data-lucide="check" style="color:var(--primary); width:18px;"></i> 2 batch attivi</li>
|
||||||
|
<li><i data-lucide="check" style="color:var(--primary); width:18px;"></i> Storage Solo Locale</li>
|
||||||
|
<li><i data-lucide="check" style="color:var(--primary); width:18px;"></i> 1 Provider AI (BYOK)</li>
|
||||||
|
</ul>
|
||||||
|
<a href="#" class="btn btn-secondary" style="width:100%;">Inizia Gratis</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Pro -->
|
||||||
|
<div class="price-card featured feature-element">
|
||||||
|
<div class="featured-badge">Più Popolare</div>
|
||||||
|
<h3>Pro</h3>
|
||||||
|
<div class="price">15€<span>/mese</span></div>
|
||||||
|
<ul class="price-features">
|
||||||
|
<li><i data-lucide="check" style="color:var(--primary); width:18px;"></i> Agenti illimitati</li>
|
||||||
|
<li><i data-lucide="check" style="color:var(--primary); width:18px;"></i> 10 batch attivi</li>
|
||||||
|
<li><i data-lucide="check" style="color:var(--primary); width:18px;"></i> Cloud Storage E2E (5GB)</li>
|
||||||
|
<li><i data-lucide="check" style="color:var(--primary); width:18px;"></i> Backup Cifrato</li>
|
||||||
|
</ul>
|
||||||
|
<a href="#" class="btn btn-primary" style="width:100%;">Passa a Pro</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Power -->
|
||||||
|
<div class="price-card feature-element">
|
||||||
|
<h3>Power</h3>
|
||||||
|
<div class="price">29€<span>/mese</span></div>
|
||||||
|
<ul class="price-features">
|
||||||
|
<li><i data-lucide="check" style="color:var(--primary); width:18px;"></i> Batch illimitati</li>
|
||||||
|
<li><i data-lucide="check" style="color:var(--primary); width:18px;"></i> Batch Builder Custom</li>
|
||||||
|
<li><i data-lucide="check" style="color:var(--primary); width:18px;"></i> Cloud Storage (25GB)</li>
|
||||||
|
<li><i data-lucide="check" style="color:var(--primary); width:18px;"></i> Accesso Plugin Marketplace</li>
|
||||||
|
</ul>
|
||||||
|
<a href="#" class="btn btn-secondary" style="width:100%;">Diventa Power</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Simple Footer -->
|
||||||
|
<footer style="padding: 4rem 5%; text-align: center; border-top: 1px solid var(--border);">
|
||||||
|
<div class="logo" style="justify-content: center; margin-bottom: 1rem; color: var(--muted-foreground);">
|
||||||
|
<i data-lucide="cpu"></i> CLAUDE.md
|
||||||
|
</div>
|
||||||
|
<p style="font-size: 0.875rem;">© 2026 CLAUDE.md. Dati protetti, privacy garantita.</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Inizializza le icone Lucide
|
||||||
|
lucide.createIcons();
|
||||||
|
|
||||||
|
// GSAP Animations
|
||||||
|
document.addEventListener("DOMContentLoaded", (event) => {
|
||||||
|
gsap.registerPlugin(ScrollTrigger);
|
||||||
|
|
||||||
|
// 1. Animazione Iniziale della Hero Section
|
||||||
|
const heroTimeline = gsap.timeline();
|
||||||
|
heroTimeline.from(".hero .tag", { y: 20, opacity: 0, duration: 0.6, ease: "power2.out", delay: 0.2 })
|
||||||
|
.from(".hero h1", { y: 30, opacity: 0, duration: 0.8, ease: "power2.out" }, "-=0.4")
|
||||||
|
.from(".hero p", { y: 20, opacity: 0, duration: 0.8, ease: "power2.out" }, "-=0.6")
|
||||||
|
.from(".hero-buttons", { y: 20, opacity: 0, duration: 0.8, ease: "power2.out" }, "-=0.6");
|
||||||
|
|
||||||
|
// 2. Layout "Zig-Zag" Scroll Animations
|
||||||
|
// Trova tutti gli elementi con la classe .feature-element
|
||||||
|
const featureElements = document.querySelectorAll('.feature-element');
|
||||||
|
|
||||||
|
featureElements.forEach((element) => {
|
||||||
|
gsap.from(element, {
|
||||||
|
y: 60, // Parte 60px più in basso
|
||||||
|
opacity: 0, // Parte invisibile
|
||||||
|
duration: 1, // L'animazione dura 1 secondo
|
||||||
|
ease: "power2.out", // Movimento fluido (Decelerazione)
|
||||||
|
scrollTrigger: {
|
||||||
|
trigger: element,
|
||||||
|
start: "top 85%", // Inizia quando la cima dell'elemento raggiunge l'85% dell'altezza dello schermo
|
||||||
|
toggleActions: "play none none reverse" // Avvia scendendo, inverte salendo
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// 3. Effetto Hover UI per le "finestre" mock-up
|
||||||
|
const mockups = document.querySelectorAll('.mockup-window');
|
||||||
|
mockups.forEach(mockup => {
|
||||||
|
mockup.addEventListener('mouseenter', () => {
|
||||||
|
gsap.to(mockup, { y: -5, boxShadow: "0 10px 30px rgba(0,0,0,0.12)", duration: 0.3 });
|
||||||
|
});
|
||||||
|
mockup.addEventListener('mouseleave', () => {
|
||||||
|
gsap.to(mockup, { y: 0, boxShadow: "0 4px 20px rgba(0,0,0,0.08)", duration: 0.3 });
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user