<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vegy — Simplify Wholesale Ordering</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap" rel="stylesheet" />
<script src="https://cdn.tailwindcss.com"></script>
<style>
:root{
/* PROFESSIONAL TEAL (mature, not “mint”) */
--vegy-primary:#0f766e; /* teal-700 */
--vegy-primary-dark:#115e59; /* teal-800 */
--vegy-primary-soft: rgba(15,118,110,.10);
/* professional neutrals */
--bg:#f8fafc; /* slate-50 */
--card:#ffffff;
--text:#0f172a; /* slate-900 */
--muted:#64748b; /* slate-500 */
--border:rgba(15,23,42,.08);
/* glass */
--glass: rgba(255,255,255,.78);
--glass-soft: rgba(255,255,255,.62);
--shadow: 0 20px 60px rgba(15,23,42,.12);
}
html, body { height: 100%; }
body {
font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
background: var(--bg);
color: var(--text);
overflow-x: hidden;
}
/* subtle highlights (teal + neutral) */
.blob {
position: absolute;
width: 720px;
height: 720px;
border-radius: 9999px;
filter: blur(110px);
opacity: .14;
background: rgba(15,118,110,.28);
pointer-events: none;
}
.blob.b2{
width: 600px;
height: 600px;
opacity: .10;
background: rgba(2,132,199,.20); /* tiny cool tint for depth */
}
/* glass */
.glass {
background: var(--glass);
backdrop-filter: blur(18px) saturate(160%);
-webkit-backdrop-filter: blur(18px) saturate(160%);
box-shadow: var(--shadow);
}
/* animation */
.animate-fade-up { animation: fadeUp .7s cubic-bezier(.2,.8,.2,1) both; }
@keyframes fadeUp {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
.floaty { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty {
0%,100%{ transform: translateY(0); }
50%{ transform: translateY(-8px); }
}
a:focus-visible, button:focus-visible {
outline: 2px solid var(--vegy-primary);
outline-offset: 3px;
border-radius: 12px;
}
</style>
</head>
<body>
<!-- subtle highlights -->
<div class="blob" style="top:-280px; left:-260px;"></div>
<div class="blob b2" style="top:-260px; right:-260px;"></div>
<!-- Nav -->
<nav class="fixed top-0 inset-x-0 z-20">
<div class="max-w-6xl mx-auto px-4 pt-4">
<div class="glass rounded-2xl px-4 md:px-6 py-3 flex items-center justify-between">
<a href="https://vegy.app/" class="text-2xl font-extrabold tracking-tight" style="color:var(--vegy-primary)">
Vegy
</a>
<a href="https://calendly.com/hello-vegy/demo" target="_blank"
class="px-4 py-2 rounded-xl text-white font-semibold transition"
style="background:var(--vegy-primary)"
onmouseover="this.style.background='var(--vegy-primary-dark)'"
onmouseout="this.style.background='var(--vegy-primary)'">
Book a Demo
</a>
</div>
</div>
</nav>
<!-- Hero -->
<section class="min-h-screen flex items-center justify-center pt-28 pb-16 relative z-10">
<div class="max-w-6xl mx-auto px-4">
<div class="grid grid-cols-1 lg:grid-cols-12 gap-12 items-center">
<!-- Copy -->
<div class="lg:col-span-6 space-y-6">
<h1 class="text-4xl md:text-6xl font-extrabold leading-tight tracking-tight animate-fade-up">
Wholesale ordering,
<span style="color:var(--vegy-primary)">done right.</span>
</h1>
<p class="text-lg md:text-xl max-w-xl animate-fade-up" style="animation-delay:.1s; color:var(--muted)">
A professional, white-labeled ordering platform built for real wholesale businesses.
</p>
<div class="animate-fade-up" style="animation-delay:.15s">
<a href="https://calendly.com/hello-vegy/demo" target="_blank"
class="inline-block px-6 py-3 rounded-2xl text-white font-semibold transition"
style="background:var(--vegy-primary)"
onmouseover="this.style.background='var(--vegy-primary-dark)'"
onmouseout="this.style.background='var(--vegy-primary)'">
See your catalog live, book a demo today
</a>
</div>
<!-- Feature list (OG copy) -->
<div class="pt-4 space-y-4 animate-fade-up" style="animation-delay:.2s">
<div class="p-4 rounded-2xl bg-white shadow-sm">
<div class="font-semibold text-sm">Accept orders anytime, and anyhow</div>
<div class="text-sm mt-1" style="color:var(--muted)">
Let customers order via your own website, mobile, iOS/Android apps, or AI-powered text messaging. Reorders take seconds.
</div>
</div>
<div class="p-4 rounded-2xl bg-white shadow-sm">
<div class="font-semibold text-sm">Maximize margins and order size</div>
<div class="text-sm mt-1" style="color:var(--muted)">
Set customer-specific pricing tiers and order minimums, promote featured items, and push new products to increase order size and profit.
</div>
</div>
<div class="p-4 rounded-2xl bg-white shadow-sm">
<div class="font-semibold text-sm">Integrates with your workflow</div>
<div class="text-sm mt-1" style="color:var(--muted)">
Sync with QuickBooks or your existing ERP for invoicing, payments, inventory, and delivery tracking. Export sales reports, pull slips, and price lists instantly.
</div>
</div>
</div>
</div>
<!-- Device -->
<div class="lg:col-span-6">
<div class="floaty">
<div class="mx-auto max-w-md">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 406 852" class="w-full h-auto">
<image href="order.png"
x="-43" y="25" width="500" height="800" />
<image href="iphone.svg"
x="0" y="0" width="415" height="852" />
</svg>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-8">
<div class="max-w-6xl mx-auto px-4 text-center text-sm" style="color:var(--muted)">
© <span id="year"></span>
<a href="https://vegy.app/" style="color:var(--vegy-primary)" class="hover:underline">Vegy</a>
• <a href="https://vegy.app/legal.html" class="hover:underline">Terms & Privacy</a>
• <a href="https://vegy.app/support.html" class="hover:underline">Contact</a>
</div>
</footer>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>