562 lines
15 KiB
HTML
562 lines
15 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>AMPLIFY AI — The Future Is Now</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600&display=swap" rel="stylesheet" />
|
|
<style>
|
|
:root {
|
|
--cyan: #00f5ff;
|
|
--magenta: #ff00c8;
|
|
--purple: #9d00ff;
|
|
--dark: #050510;
|
|
--darker: #020208;
|
|
--card-bg: rgba(0, 245, 255, 0.04);
|
|
--glow-cyan: 0 0 10px #00f5ff, 0 0 30px #00f5ff55, 0 0 60px #00f5ff22;
|
|
--glow-magenta: 0 0 10px #ff00c8, 0 0 30px #ff00c855, 0 0 60px #ff00c822;
|
|
--glow-purple: 0 0 10px #9d00ff, 0 0 30px #9d00ff55;
|
|
}
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
html { scroll-behavior: smooth; }
|
|
|
|
body {
|
|
background: var(--dark);
|
|
color: #e0e0f0;
|
|
font-family: 'Rajdhani', sans-serif;
|
|
font-size: 18px;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* ── GRID BACKGROUND ── */
|
|
body::before {
|
|
content: '';
|
|
position: fixed;
|
|
inset: 0;
|
|
background-image:
|
|
linear-gradient(rgba(0, 245, 255, 0.06) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(0, 245, 255, 0.06) 1px, transparent 1px);
|
|
background-size: 60px 60px;
|
|
animation: gridPan 20s linear infinite;
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
@keyframes gridPan {
|
|
0% { background-position: 0 0; }
|
|
100% { background-position: 60px 60px; }
|
|
}
|
|
|
|
/* ── SCANLINES ── */
|
|
body::after {
|
|
content: '';
|
|
position: fixed;
|
|
inset: 0;
|
|
background: repeating-linear-gradient(
|
|
0deg,
|
|
transparent,
|
|
transparent 2px,
|
|
rgba(0, 0, 0, 0.15) 2px,
|
|
rgba(0, 0, 0, 0.15) 4px
|
|
);
|
|
pointer-events: none;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* ── NAV ── */
|
|
nav {
|
|
position: fixed;
|
|
top: 0; left: 0; right: 0;
|
|
z-index: 100;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1.2rem 4rem;
|
|
background: rgba(5, 5, 16, 0.85);
|
|
backdrop-filter: blur(12px);
|
|
border-bottom: 1px solid rgba(0, 245, 255, 0.15);
|
|
}
|
|
|
|
.nav-logo {
|
|
font-family: 'Orbitron', sans-serif;
|
|
font-weight: 900;
|
|
font-size: 1.1rem;
|
|
color: var(--cyan);
|
|
text-shadow: var(--glow-cyan);
|
|
letter-spacing: 3px;
|
|
}
|
|
|
|
.nav-links { display: flex; gap: 2rem; list-style: none; }
|
|
.nav-links a {
|
|
color: #aaa;
|
|
text-decoration: none;
|
|
font-family: 'Rajdhani', sans-serif;
|
|
font-weight: 600;
|
|
letter-spacing: 1px;
|
|
transition: color 0.3s, text-shadow 0.3s;
|
|
}
|
|
.nav-links a:hover { color: var(--cyan); text-shadow: var(--glow-cyan); }
|
|
|
|
/* ── HERO ── */
|
|
.hero {
|
|
position: relative;
|
|
z-index: 2;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
padding: 8rem 2rem 4rem;
|
|
}
|
|
|
|
.hero-badge {
|
|
display: inline-block;
|
|
border: 1px solid var(--magenta);
|
|
color: var(--magenta);
|
|
font-family: 'Orbitron', sans-serif;
|
|
font-size: 0.65rem;
|
|
letter-spacing: 4px;
|
|
padding: 0.4rem 1.2rem;
|
|
margin-bottom: 2rem;
|
|
text-shadow: var(--glow-magenta);
|
|
box-shadow: var(--glow-magenta);
|
|
animation: pulse 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.6; }
|
|
}
|
|
|
|
.hero h1 {
|
|
font-family: 'Orbitron', sans-serif;
|
|
font-size: clamp(2.5rem, 7vw, 6rem);
|
|
font-weight: 900;
|
|
line-height: 1.1;
|
|
margin-bottom: 1.5rem;
|
|
position: relative;
|
|
}
|
|
|
|
.glitch {
|
|
position: relative;
|
|
color: #fff;
|
|
text-shadow: 0 0 20px rgba(255,255,255,0.4);
|
|
}
|
|
|
|
.glitch::before,
|
|
.glitch::after {
|
|
content: attr(data-text);
|
|
position: absolute;
|
|
top: 0; left: 0; right: 0;
|
|
}
|
|
|
|
.glitch::before {
|
|
color: var(--cyan);
|
|
animation: glitch1 3.5s infinite;
|
|
clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
|
|
text-shadow: 2px 0 var(--cyan);
|
|
}
|
|
|
|
.glitch::after {
|
|
color: var(--magenta);
|
|
animation: glitch2 3.5s infinite;
|
|
clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
|
|
text-shadow: -2px 0 var(--magenta);
|
|
}
|
|
|
|
@keyframes glitch1 {
|
|
0%, 90%, 100% { transform: none; opacity: 0; }
|
|
92% { transform: translate(-3px, -1px); opacity: 0.8; }
|
|
94% { transform: translate(3px, 1px); opacity: 0.8; }
|
|
96% { transform: translate(-2px, 2px); opacity: 0.8; }
|
|
98% { transform: none; opacity: 0; }
|
|
}
|
|
|
|
@keyframes glitch2 {
|
|
0%, 88%, 100% { transform: none; opacity: 0; }
|
|
90% { transform: translate(3px, 1px); opacity: 0.8; }
|
|
93% { transform: translate(-3px, -1px); opacity: 0.8; }
|
|
95% { transform: translate(2px, -2px); opacity: 0.8; }
|
|
97% { transform: none; opacity: 0; }
|
|
}
|
|
|
|
.hero-sub {
|
|
font-size: clamp(1rem, 2.5vw, 1.4rem);
|
|
font-weight: 300;
|
|
color: #99a;
|
|
max-width: 600px;
|
|
line-height: 1.7;
|
|
margin-bottom: 3rem;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.hero-sub span { color: var(--cyan); font-weight: 600; }
|
|
|
|
.btn-primary {
|
|
display: inline-block;
|
|
padding: 1rem 3rem;
|
|
font-family: 'Orbitron', sans-serif;
|
|
font-size: 0.85rem;
|
|
font-weight: 700;
|
|
letter-spacing: 3px;
|
|
text-transform: uppercase;
|
|
text-decoration: none;
|
|
color: var(--dark);
|
|
background: var(--cyan);
|
|
border: none;
|
|
cursor: pointer;
|
|
position: relative;
|
|
clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
|
|
transition: all 0.3s ease;
|
|
box-shadow: var(--glow-cyan);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: #fff;
|
|
box-shadow: 0 0 20px #00f5ff, 0 0 60px #00f5ff, 0 0 100px #00f5ff55;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.hero-scroll {
|
|
position: absolute;
|
|
bottom: 2rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
color: #555;
|
|
font-size: 0.7rem;
|
|
letter-spacing: 2px;
|
|
animation: bounce 2s ease-in-out infinite;
|
|
}
|
|
|
|
.hero-scroll::after {
|
|
content: '';
|
|
display: block;
|
|
width: 1px;
|
|
height: 40px;
|
|
background: linear-gradient(to bottom, var(--cyan), transparent);
|
|
}
|
|
|
|
@keyframes bounce {
|
|
0%, 100% { transform: translateX(-50%) translateY(0); }
|
|
50% { transform: translateX(-50%) translateY(8px); }
|
|
}
|
|
|
|
/* ── FEATURES ── */
|
|
.features {
|
|
position: relative;
|
|
z-index: 2;
|
|
padding: 6rem 2rem;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.section-header {
|
|
text-align: center;
|
|
margin-bottom: 4rem;
|
|
}
|
|
|
|
.section-label {
|
|
font-family: 'Orbitron', sans-serif;
|
|
font-size: 0.65rem;
|
|
letter-spacing: 5px;
|
|
color: var(--magenta);
|
|
text-shadow: var(--glow-magenta);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.section-title {
|
|
font-family: 'Orbitron', sans-serif;
|
|
font-size: clamp(1.8rem, 4vw, 3rem);
|
|
font-weight: 700;
|
|
color: #fff;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.section-title span { color: var(--cyan); text-shadow: var(--glow-cyan); }
|
|
|
|
.cards {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
|
|
.card {
|
|
background: var(--card-bg);
|
|
border: 1px solid rgba(0, 245, 255, 0.15);
|
|
padding: 2.5rem;
|
|
position: relative;
|
|
transition: all 0.4s ease;
|
|
clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
|
|
.card.visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease, border-color 0.4s ease;
|
|
}
|
|
|
|
.card:nth-child(2) { transition-delay: 0.15s; }
|
|
.card:nth-child(3) { transition-delay: 0.3s; }
|
|
|
|
.card:hover {
|
|
border-color: var(--cyan);
|
|
box-shadow: var(--glow-cyan), inset 0 0 30px rgba(0, 245, 255, 0.05);
|
|
}
|
|
|
|
.card-icon {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1.5rem;
|
|
display: block;
|
|
}
|
|
|
|
.card h3 {
|
|
font-family: 'Orbitron', sans-serif;
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
color: var(--cyan);
|
|
margin-bottom: 1rem;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.card p {
|
|
color: #889;
|
|
line-height: 1.7;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.card-corner {
|
|
position: absolute;
|
|
top: -1px; right: -1px;
|
|
width: 20px; height: 20px;
|
|
border-top: 1px solid var(--cyan);
|
|
border-right: 1px solid var(--cyan);
|
|
}
|
|
|
|
/* ── CTA / EMAIL ── */
|
|
.cta-section {
|
|
position: relative;
|
|
z-index: 2;
|
|
padding: 6rem 2rem;
|
|
text-align: center;
|
|
background: linear-gradient(180deg, transparent, rgba(157, 0, 255, 0.08), transparent);
|
|
}
|
|
|
|
.cta-inner {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.cta-section .section-title {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.cta-section p {
|
|
color: #889;
|
|
margin-bottom: 2.5rem;
|
|
font-weight: 300;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.form-group {
|
|
display: flex;
|
|
gap: 0;
|
|
max-width: 480px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.form-input {
|
|
flex: 1;
|
|
padding: 1rem 1.5rem;
|
|
background: rgba(255,255,255,0.04);
|
|
border: 1px solid rgba(0, 245, 255, 0.3);
|
|
border-right: none;
|
|
color: #fff;
|
|
font-family: 'Rajdhani', sans-serif;
|
|
font-size: 1rem;
|
|
outline: none;
|
|
transition: border-color 0.3s, box-shadow 0.3s;
|
|
}
|
|
|
|
.form-input::placeholder { color: #556; }
|
|
|
|
.form-input:focus {
|
|
border-color: var(--cyan);
|
|
box-shadow: inset 0 0 15px rgba(0, 245, 255, 0.08);
|
|
}
|
|
|
|
.btn-submit {
|
|
padding: 1rem 2rem;
|
|
background: transparent;
|
|
border: 1px solid var(--cyan);
|
|
color: var(--cyan);
|
|
font-family: 'Orbitron', sans-serif;
|
|
font-size: 0.7rem;
|
|
font-weight: 700;
|
|
letter-spacing: 2px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
white-space: nowrap;
|
|
text-shadow: var(--glow-cyan);
|
|
box-shadow: var(--glow-cyan);
|
|
}
|
|
|
|
.btn-submit:hover {
|
|
background: var(--cyan);
|
|
color: var(--dark);
|
|
text-shadow: none;
|
|
box-shadow: 0 0 30px #00f5ff, 0 0 60px #00f5ff55;
|
|
}
|
|
|
|
.form-note {
|
|
margin-top: 1rem;
|
|
font-size: 0.8rem;
|
|
color: #446;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
/* ── FOOTER ── */
|
|
footer {
|
|
position: relative;
|
|
z-index: 2;
|
|
text-align: center;
|
|
padding: 2rem;
|
|
border-top: 1px solid rgba(0, 245, 255, 0.08);
|
|
color: #334;
|
|
font-size: 0.8rem;
|
|
letter-spacing: 2px;
|
|
font-family: 'Orbitron', sans-serif;
|
|
}
|
|
|
|
/* ── RESPONSIVE ── */
|
|
@media (max-width: 768px) {
|
|
nav { padding: 1rem 1.5rem; }
|
|
.nav-links { display: none; }
|
|
.form-group { flex-direction: column; }
|
|
.form-input { border-right: 1px solid rgba(0, 245, 255, 0.3); border-bottom: none; }
|
|
.btn-submit { padding: 1rem; }
|
|
}
|
|
|
|
/* ── DECORATIVE LINES ── */
|
|
.deco-line {
|
|
display: block;
|
|
width: 60px;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, var(--cyan), transparent);
|
|
margin: 1.5rem auto 0;
|
|
box-shadow: var(--glow-cyan);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- NAV -->
|
|
<nav>
|
|
<div class="nav-logo">AMPLIFY//AI</div>
|
|
<ul class="nav-links">
|
|
<li><a href="#features">Systems</a></li>
|
|
<li><a href="#cta">Access</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<!-- HERO -->
|
|
<section class="hero">
|
|
<div class="hero-badge">NEXT-GEN AI WORKSHOP</div>
|
|
<h1>
|
|
<span class="glitch" data-text="THE FUTURE">THE FUTURE</span><br/>
|
|
<span style="color: var(--cyan); text-shadow: var(--glow-cyan);">IS AUTOMATED</span>
|
|
</h1>
|
|
<p class="hero-sub">
|
|
Stop fighting AI. <span>Amplify it.</span> Build autonomous content systems,
|
|
scale your brand without lifting a finger, and stay three steps ahead.
|
|
</p>
|
|
<a href="#cta" class="btn-primary">JACK IN NOW</a>
|
|
<div class="hero-scroll">SCROLL</div>
|
|
</section>
|
|
|
|
<!-- FEATURES -->
|
|
<section class="features" id="features">
|
|
<div class="section-header">
|
|
<div class="section-label">// CORE SYSTEMS</div>
|
|
<h2 class="section-title">What You'll <span>Master</span></h2>
|
|
<span class="deco-line"></span>
|
|
</div>
|
|
<div class="cards">
|
|
<div class="card">
|
|
<div class="card-corner"></div>
|
|
<span class="card-icon">⚡</span>
|
|
<h3>Autonomous Agents</h3>
|
|
<p>Deploy AI agents that research, write, and publish content 24/7 — no prompts, no babysitting. Your brand runs on autopilot.</p>
|
|
</div>
|
|
<div class="card">
|
|
<div class="card-corner"></div>
|
|
<span class="card-icon">🎬</span>
|
|
<h3>Avatar Video Systems</h3>
|
|
<p>Turn any idea into a polished video with your digital twin. HeyGen, HyperFrames, and custom pipelines — production at machine speed.</p>
|
|
</div>
|
|
<div class="card">
|
|
<div class="card-corner"></div>
|
|
<span class="card-icon">🔗</span>
|
|
<h3>Full-Stack Automation</h3>
|
|
<p>One trigger. Blog post, social reels, email blast, YouTube — all distributed simultaneously across every channel you own.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- EMAIL CTA -->
|
|
<section class="cta-section" id="cta">
|
|
<div class="cta-inner">
|
|
<div class="section-label">// GAIN ACCESS</div>
|
|
<h2 class="section-title">Ready to <span>Plug In?</span></h2>
|
|
<span class="deco-line"></span>
|
|
<p style="margin-top: 1.5rem;">Join the Amplify AI Workshop and get instant access to systems, templates, and a community building the future — right now.</p>
|
|
<form class="form-group" onsubmit="handleSubmit(event)">
|
|
<input type="email" class="form-input" placeholder="your@email.com" required />
|
|
<button type="submit" class="btn-submit">ENTER //</button>
|
|
</form>
|
|
<div class="form-note">// NO SPAM. UNSUBSCRIBE ANYTIME. //</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- FOOTER -->
|
|
<footer>
|
|
<span>© 2026 AMPLIFY AI WORKSHOP // ALL SYSTEMS OPERATIONAL</span>
|
|
</footer>
|
|
|
|
<script>
|
|
// Scroll-triggered card animations
|
|
const cards = document.querySelectorAll('.card');
|
|
const observer = new IntersectionObserver((entries) => {
|
|
entries.forEach(entry => {
|
|
if (entry.isIntersecting) entry.target.classList.add('visible');
|
|
});
|
|
}, { threshold: 0.15 });
|
|
cards.forEach(c => observer.observe(c));
|
|
|
|
// Form handler
|
|
function handleSubmit(e) {
|
|
e.preventDefault();
|
|
const btn = e.target.querySelector('.btn-submit');
|
|
const input = e.target.querySelector('.form-input');
|
|
btn.textContent = 'ACCESS GRANTED //';
|
|
btn.style.background = 'var(--cyan)';
|
|
btn.style.color = 'var(--dark)';
|
|
input.value = '';
|
|
setTimeout(() => {
|
|
btn.textContent = 'ENTER //';
|
|
btn.style.background = 'transparent';
|
|
btn.style.color = 'var(--cyan)';
|
|
}, 3000);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|