Dashboard Temp Share Shortlinks Frames API

HTMLify

features.html
Views: 34 | Author: karbonsites
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Features | VeriSkill AI</title>
    <link rel="stylesheet" href="style.css">
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap" rel="stylesheet">
</head>
<body>
    <header class="main-header">
        <nav class="navbar">
            <div class="logo">VeriSkill AI</div>
            <ul class="nav-links">
                <li><a href="index.html">Home</a></li>
                <li><a href="features.html" class="active">Features</a></li>
                <li><a href="about.html">About Us</a></li>
                <li><a href="#contact" class="cta-nav">Get Started</a></li>
            </ul>
            <div class="menu-toggle" id="menu-toggle">&#9776;</div>
        </nav>
    </header>

    <main>
        <section class="page-header">
            <h1 class="fade-in-up">The Architecture of Fairness</h1>
            <p class="fade-in-up delay-1">A suite of interconnected agents designed for precision, security, and equity.</p>
        </section>

        <section class="feature-detail bento-grid">
            <div class="bento-item item-1 fade-in-up">
                <div class="icon">&#9989;</div>
                <h3>Verifiable Skill Chains (VSC)</h3>
                <p>Skills are proven through chained, auditable micro-tasks verified by specialized agents, not just self-reported claims.</p>
            </div>
            <div class="bento-item item-2 fade-in-up delay-1">
                <div class="icon">&#128065;</div>
                <h3>Bias Detection Core</h3>
                <p>Real-time monitoring of matching algorithms. Detects proxy discrimination based on non-skill related data points.</p>
            </div>
            <div class="bento-item item-3 fade-in-up delay-2">
                <div class="icon">&#128161;</div>
                <h3>Transparent Matching Ledger</h3>
                <p>Every interaction score and recommendation is logged cryptographically. Developers can query their own match history.</p>
            </div>
            <div class="bento-item item-4 fade-in-up delay-3">
                <div class="icon">&#128274;</div>
                <h3>Zero-Knowledge Proofs</h3>
                <p>Verify technical competence without revealing underlying sensitive personal or proprietary project data.</p>
            </div>
            <div class="bento-item item-5 span-2 fade-in-up delay-4">
                <div class="icon">&#128640;</div>
                <h3>Opportunity Equalizer</h3>
                <p>Automated system that flags roles where qualified candidates from underrepresented groups are systematically excluded from initial review.</p>
            </div>
        </section>

        <section class="cta-final">
            <h2 class="fade-in-up">Ready to build a truly meritocratic pipeline?</h2>
            <a href="index.html#contact" class="btn btn-primary large-btn fade-in-up delay-1">Request a Demo</a>
        </section>
    </main>

    <footer class="main-footer">
        <div class="footer-content">
            <div class="footer-col">
                <h4>VeriSkill AI</h4>
                <p>&copy; 2024. Creating equitable hiring ecosystems.</p>
            </div>
            <div class="footer-col">
                <h4>Navigation</h4>
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="features.html">Features</a></li>
                    <li><a href="about.html">About</a></li>
                </ul>
            </div>
            <div class="footer-col">
                <h4>Legal</h4>
                <ul>
                    <li><a href="#privacy">Privacy Policy</a></li>
                    <li><a href="#terms">Terms of Service</a></li>
                </ul>
            </div>
        </div>
    </footer>

    <script src="script.js"></script>
</body>
</html>