-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
234 lines (206 loc) · 7.65 KB
/
index.html
File metadata and controls
234 lines (206 loc) · 7.65 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interition - Applied Artificial Intelligence</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #333;
color: white;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.brand-section {
padding: 4rem 0;
background: linear-gradient(180deg, #262626 0%, #333333 100%);
}
.brand {
text-align: center;
display: inline-block;
}
.brand h1 {
font-size: 3.5rem;
font-weight: 700;
letter-spacing: 0.05em;
margin-bottom: 0;
}
.trademark {
font-size: 0.25em;
position: relative;
top: -0.2em;
margin-left: 0.08rem;
}
.tagline {
font-size: 1.1rem;
color: #ff6600;
font-weight: 300;
letter-spacing: 0.1em;
margin-top: 0.5rem;
}
.main-content {
background: #333;
padding: 4rem 0;
}
.main-content p {
font-size: 1.15rem;
line-height: 1.8;
margin-bottom: 2rem;
font-weight: 300;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.cta-section {
background: #444;
padding: 4rem 0;
}
.cta-section h2 {
font-size: 2rem;
font-weight: 700;
margin-bottom: 1rem;
}
.cta-section p {
font-size: 1rem;
margin-bottom: 2rem;
}
.footer {
background-color: #262626;
color: #999;
padding: 2rem 0;
margin-top: auto;
}
.footer p {
margin-bottom: 0.5rem;
font-size: 0.9rem;
}
/* Quote panel (matches page dark theme with orange accent) */
.quote-panel {
background: transparent;
padding: 2.5rem 0;
color: #fff;
margin-bottom: 1.5rem;
}
.quote-panel blockquote {
margin: 0;
font-size: 1.25rem;
font-weight: 300;
line-height: 1.5;
font-style: italic;
quotes: """ """ "'" "'";
}
.quote-panel blockquote::before,
.quote-panel blockquote::after {
content: none;
}
.quote-panel .quote-author {
margin-top: 0.75rem;
font-size: 0.95rem;
color: #fff;
font-weight: 700;
text-align: right;
}
.quote-panel .quote-context {
margin-top: 0.5rem;
font-size: 0.85rem;
color: #999;
font-weight: 400;
text-align: right;
font-style: normal;
}
/* end quote panel */
@media (max-width: 768px) {
.brand h1 {
font-size: 2.5rem;
}
.main-content p {
font-size: 1rem;
padding: 0 1rem;
}
.cta-section h2 {
font-size: 1.5rem;
}
}
</style>
</head>
<body>
<!-- Brand Section -->
<section class="brand-section">
<div class="container">
<div class="text-center">
<div class="brand">
<h1>INTERITION<span class="trademark">®</span></h1>
<div class="tagline">Keep yourself</div>
</div>
</div>
</div>
</section>
<!-- Quote Panel: place before the Learn More / three-panel section -->
<section class="quote-panel">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8 col-md-10">
<blockquote>
"You really don't want someone to take information from your AI assistant when it knows everything about you."<sup> <a href="#footnote-altman" style="color: #ff6600; text-decoration: none; font-size: 0.8em;">*</a></sup>
</blockquote>
<div class="quote-author">Sam Altman</div>
<div class="quote-context">CEO, OpenAI</div>
</div>
</div>
</div>
</section>
<!-- Main Content Section -->
<section class="main-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8 col-md-10">
<div class="text-center">
<p class="lead mb-4">Every time you interact with AI, it learns something about you — creating a unique memory of your choices, ideas, and intentions.</p>
<p class="lead mb-4">In the age of AI, it's not what you know that defines your value — it's your lived experience and that will be stored somewhere and by someone.</p>
<p class="lead">Interition gives you ownership of that memory. You decide where it is stored, how it's used, which apps and services can access it.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Call to Action Section -->
<section class="cta-section py-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6">
<div class="text-center mb-4">
<h2 class="h3 mb-3">Learn More</h2>
<p class="lead">Join our mailing list and find out how you can keep yourself in the age of AI.</p>
</div>
<form action="https://formspree.io/f/xwpqynkb" method="POST" class="needs-validation" novalidate>
<div class="input-group mb-3">
<input type="email" name="email" class="form-control form-control-lg bg-dark text-white border-secondary"
placeholder="Enter your email" required>
<button class="btn btn-outline-light px-4" type="submit">Subscribe</button>
</div>
<div class="text-center small text-muted">
<p class="mb-0">We respect your privacy and will never share your information.</p>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="text-center">
<p id="footnote-altman" class="mb-2" style="font-size: 0.85rem;"><sup>*</sup> Paraphrased from a Sam Altman interview on <a href="https://youtu.be/940zih5bee4?si=OUsO_soKHLSwgCMu&t=1019" target="_blank" rel="noopener noreferrer" style="color: #ff6600; text-decoration: none;">Stanford Online</a>.</p>
<p>© 2024 Interition Digital Transformation Limited. All Rights Reserved.</p>
<p>Company registered in England number 12852453.</p>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" defer></script>
</body>
</html>