-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
160 lines (151 loc) · 3.62 KB
/
index.html
File metadata and controls
160 lines (151 loc) · 3.62 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Evaltics</title>
<style>
:root {
--bg-light: #ffffff;
--text-light: #000000;
--bg-dark: #0f1115;
--text-dark: #eeeeee;
--accent: #2e89ff;
--muted: #888;
--max-width: 720px;
}
[data-theme="light"] {
background-color: var(--bg-light);
color: var(--text-light);
}
[data-theme="dark"] {
background-color: var(--bg-dark);
color: var(--text-dark);
}
html, body {
margin: 0;
padding: 0;
min-height: 100vh;
font-family: "Inter", system-ui, sans-serif;
background-color: var(--bg);
color: var(--fg);
display: flex;
flex-direction: column;
transition: background-color 0.3s, color 0.3s;
}
main {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem 1rem;
}
.container {
max-width: var(--max-width);
width: 100%;
text-align: center;
}
h1 {
font-size: 3.2rem;
font-weight: 700;
margin: 0 0 1rem;
/* color: #fff; */
color: var(--accent);
}
h2 {
font-size: 1.5rem;
font-weight: 500;
color: var(--accent);
margin: 0 0 2rem;
}
p {
font-size: 1.1rem;
line-height: 1.6;
color: var(--fg);
margin: 1rem 0;
}
button {
padding: 0.5rem 1rem;
font-size: 1rem;
border: none;
border-radius: 5px;
background-color: #2e89ff;
color: white;
cursor: pointer;
}
.toggle {
position: absolute;
top: 1rem;
right: 1rem;
cursor: pointer;
font-size: 0.9rem;
padding: 0.3rem 0.6rem;
border-radius: 5px;
}
[data-theme="light"] .toggle {
background: #000;
color: #fff;
border: 1px solid #000;
}
[data-theme="dark"] .toggle {
background: #fff;
color: #000;
border: 1px solid #fff;
}
footer {
font-size: 0.9rem;
color: var(--muted);
text-align: center;
padding: 1.5rem 1rem;
}
@media (max-width: 600px) {
h1 {
font-size: 2.4rem;
}
h2 {
font-size: 1.2rem;
}
p {
font-size: 1rem;
}
}
</style>
</head>
<body>
<main>
<div class="container">
<h1>Yatharth AI <span style="font-size:2.0rem; color:#aaa;">(यथार्थ AI)</span></h1>
<h2>Operational & Ethical Assurance for AI Systems</h2>
<p>
Investors are betting on AI. Regulators are catching up. Users are watching closely.
</p>
<p>
Evaltics ensures your models do what they’re supposed to—and <em>nothing else</em>.
We validate intent, detect misbehavior, and provide auditable guarantees that your systems
function as claimed.
</p>
<p>
Because “trust us” isn’t a strategy.
</p>
</div>
</main>
<footer>
© 2025 Evaltics. Behavioral assurance for machine intelligence.
</footer>
<button class="toggle" onclick="toggleTheme()">Toggle Theme</button>
<!-- <h1>Evaltics</h1> -->
<!-- <p>Auditing the machine. Trust, traced.</p> -->
<!-- <form name="waitlist" method="POST" data-netlify="true">
<input type="hidden" name="form-name" value="waitlist">
<input type="email" name="email" placeholder="Your email" required />
<button type="submit">Join Waitlist</button>
</form> -->
<script>
function toggleTheme() {
const html = document.documentElement;
const current = html.getAttribute("data-theme");
html.setAttribute("data-theme", current === "dark" ? "light" : "dark");
}
</script>
</body>
</html>