<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SatyaVox | AI Revenue Intelligence</title>
<style>
:root { --gold: #D4AF37; --black: #0a0a0a; --dark-grey: #1a1a1a; }
body { background-color: var(--black); color: white; font-family: serif; margin: 0; scroll-behavior: smooth; }
header { position: fixed; width: 100%; background: rgba(10, 10, 10, 0.9); border-bottom: 1px solid var(--gold); z-index: 1000; }
nav { display: flex; justify-content: center; padding: 1rem; }
nav a { color: var(--gold); text-decoration: none; margin: 0 1rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }
section { padding: 100px 20px; max-width: 900px; margin: 0 auto; border-bottom: 1px solid #222; }
h1, h2 { color: var(--gold); letter-spacing: 3px; text-align: center; }
.gold-box { border: 1px solid var(--gold); padding: 2rem; background: var(--dark-grey); margin: 20px 0; border-radius: 5px; }
.calculator { background: #111; padding: 2rem; border: 1px solid var(--gold); border-radius: 10px; }
input[type="range"] { width: 100%; accent-color: var(--gold); margin: 10px 0; }
.res-val { color: var(--gold); font-size: 1.8rem; font-weight: bold; }
</style>
</head>
<body>
<header><nav><a href="#home">Home</a><a href="#sol">Solution</a><a href="#calc">Calculator</a><a href="#team">Team</a></nav></header>
<section id="home">
<h1 style="font-size: 4rem;">SATYAVOX</h1>
<p style="text-align:center; color: #888;">AI-POWERED REVENUE INTELLIGENCE FOR B2B</p>
</section>
<section id="sol">
<h2>The Solution</h2>
<div class="gold-box">
<h3>Indistinguishable Voice</h3>
<p>Our neural voice technology removes the "robot" stigma, allowing for natural BANT qualification in IT, Cloud, and Cybersecurity.</p>
</div>
</section>
<section id="calc">
<h2>Projected Returns</h2>
<div class="calculator">
<label>Monthly Calls: <span id="callVal">10,000</span></label>
<input type="range" id="calls" min="1000" max="50000" value="10000" oninput="calc()">
<label>Price per Held Meeting: $<span id="priceVal">250</span></label>
<input type="range" id="price" min="100" max="600" value="250" oninput="calc()">
<p>Monthly Revenue Potential: <span class="res-val" id="total">$200,000</span></p>
</div>
</section>
<section id="team">
<h2>Leadership</h2>
<p><strong>Vishal Mehta</strong> - New York | Strategy</p>
<p><strong>Anuj Gupta</strong> - India | Operations (Ex-CEO Hitachi India)</p>
</section>
<script>
function calc() {
const c = document.getElementById('calls').value;
const p = document.getElementById('price').value;
document.getElementById('callVal').innerText = Number(c).toLocaleString();
document.getElementById('priceVal').innerText = p;
// Assuming 8% success rate
const total = (c * 0.08) * p;
document.getElementById('total').innerText = "$" + total.toLocaleString();
}
</script>
</body>
</html>