-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
430 lines (377 loc) · 12.8 KB
/
index.html
File metadata and controls
430 lines (377 loc) · 12.8 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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Event Tech Research | Audio · Control · R&D</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Event Tech Research is a London-based R&D and education studio focused on modern event audio, networking, and control. Field-tested tools, open-architecture design, and practical documentation for engineers." />
<link rel="canonical" href="https://eventresearch.io/" />
<!-- Open Graph -->
<meta property="og:title" content="Event Tech Research" />
<meta property="og:description" content="Research-led tools for the next generation of events — audio, networking, control, and practical field engineering." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://eventresearch.io/" />
<meta property="og:image" content="https://eventresearch.io/assets/logo.png" />
<!-- Favicon -->
<link rel="icon" href="/favicon/favicon.ico" />
<style>
:root{
--bg:#02040a;
--card:#10121a;
--muted:#d1d5db;
--border:#3f3f46;
--radius:14px;
--soft:#111827;
}
*{box-sizing:border-box}
body{
margin:0;
font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
background:radial-gradient(circle at top,#020617,#02040a);
color:#f9fafb;
min-height:100vh;
}
/* ===== HEADER ===== */
header{
position:sticky;top:0;z-index:10;
padding:1rem 7vw;
display:flex;justify-content:space-between;align-items:center;
gap:1rem;
background:rgba(3,4,7,.96);
border-bottom:1px solid #111827;
backdrop-filter:blur(16px);
}
.brand{
display:flex;gap:.75rem;align-items:center;
text-decoration:none;color:inherit;
}
.logo-img{width:42px;height:42px;display:flex;align-items:center;justify-content:center}
.logo-img img{width:100%;height:100%;object-fit:contain}
.brand-text-title{font-weight:700;text-transform:uppercase;letter-spacing:.04em}
.brand-text-sub{
font-size:.7rem;color:var(--muted);
letter-spacing:.18em;text-transform:uppercase;
}
.social-header{
display:flex;gap:.5rem;flex-wrap:wrap;justify-content:flex-end;
}
.social-chip{
display:inline-flex;align-items:center;gap:.35rem;
padding:.3rem .7rem;
border-radius:999px;
border:1px solid #27272f;
background:#09090b;
font-size:.75rem;
color:var(--muted);
text-decoration:none;
white-space:nowrap;
transition:border-color .15s ease, color .15s ease, background .15s ease, transform .15s ease;
}
.social-chip:hover{
border-color:#e5e7eb;
color:#e5e7eb;
background:#111827;
transform:translateY(-1px);
}
.social-dot{width:6px;height:6px;border-radius:50%;background:#e5e7eb}
/* ===== MAIN ===== */
main{
max-width:980px;
margin:auto;
padding:0 7vw 3.2rem;
display:grid;
gap:1.5rem;
position:relative;
}
/* ===== HERO ===== */
.hero{
position:relative;
text-align:center;
padding-top:5.7rem;
padding-bottom:3.2rem;
display:grid;
gap:1rem;
}
.hero::before{
content:"";
position:absolute;
top:-40px;
left:50%;
width:100vw;
height:calc(100% + 80px);
transform:translateX(-50%);
background:
linear-gradient(to bottom,rgba(5,10,25,.45),rgba(2,4,10,.92)),
linear-gradient(to right,
#02040a 0%,
rgba(2,4,10,.35) 18%,
rgba(2,4,10,.35) 82%,
#02040a 100%
),
url("/assets/circuit-main.png") center top / cover no-repeat;
z-index:-1;
}
.badge{
display:inline-flex;
padding:.25rem .9rem;
border-radius:999px;
border:1px solid #27272f;
background:rgba(15,23,42,.92);
font-size:.78rem;
letter-spacing:.15em;
text-transform:uppercase;
color:var(--muted);
margin:0 auto;
}
h1{
margin:0;
font-size:clamp(2.2rem,3.8vw,2.9rem);
line-height:1.22;
}
h1 span{
text-decoration:underline;
text-decoration-thickness:2px;
text-underline-offset:4px;
}
.hero-lead{
max-width:56rem;
margin:0 auto;
line-height:1.9;
color:#e5e7eb;
font-size:1rem;
}
.hero-links{
display:flex;
gap:.5rem;
flex-wrap:wrap;
justify-content:center;
margin-top:.25rem;
}
/* ===== SECTIONS ===== */
.section-title{
margin:0 0 .5rem;
font-size:1.05rem;
letter-spacing:.18em;
text-transform:uppercase;
color:var(--muted);
}
.grid{display:grid;gap:1.2rem}
@media(min-width:900px){ .grid-2{grid-template-columns:1.1fr 1fr} }
@media(min-width:900px){ .grid-3{grid-template-columns:repeat(3,1fr)} }
.card{
background:linear-gradient(to bottom,var(--card),#050609);
border:1px solid var(--border);
border-radius:var(--radius);
padding:1.55rem 1.7rem;
box-shadow:0 10px 30px rgba(0,0,0,.6);
position:relative;
overflow:hidden;
}
.card::after{
content:"";
position:absolute;top:0;left:0;right:0;height:1px;
background:linear-gradient(to right,transparent,rgba(249,250,251,.45),transparent);
opacity:.7;
}
.card h2{margin:.1rem 0 .6rem;font-size:1.2rem}
.card p{margin:.25rem 0 .6rem;line-height:1.9;color:#f3f4f6}
.muted{color:var(--muted)}
ul{margin:.6rem 0 0;padding-left:1.1rem;line-height:1.85;color:#e5e7eb}
li{margin:.25rem 0}
.kpi-row{
display:flex;
flex-wrap:wrap;
gap:.5rem;
justify-content:center;
margin-top:.25rem;
}
.kpi{
display:inline-flex;
align-items:center;
gap:.45rem;
padding:.35rem .7rem;
border-radius:999px;
border:1px solid #27272f;
background:rgba(9,9,11,.7);
color:#e5e7eb;
font-size:.82rem;
}
.kpi b{font-weight:700}
.kpi .dot{width:6px;height:6px;border-radius:50%;background:#e5e7eb}
.fine{
font-size:.86rem;
color:var(--muted);
line-height:1.8;
margin:.35rem 0 0;
}
footer{
margin-top:2rem;
padding:2rem 7vw;
border-top:1px solid #111827;
font-size:.82rem;
color:var(--muted);
text-align:center;
}
@media (max-width:640px){
header, main { padding-inline: 5vw; }
.hero{ padding-top: 4.8rem; }
.hero::before{
top:-30px;
height:calc(100% + 60px);
background-size:180% auto;
}
}
</style>
</head>
<body>
<header>
<a class="brand" href="/">
<div class="logo-img"><img src="/assets/logo.png" alt="Event Tech Research"></div>
<div>
<div class="brand-text-title">Event Tech Research</div>
<div class="brand-text-sub">Audio · Control · R&D</div>
</div>
</a>
<nav class="social-header" aria-label="Links">
<a class="social-chip" href="/hedera.html"><span class="social-dot"></span> Hedera</a>
<a class="social-chip"
href="https://www.linkedin.com/in/event-tech-research-uk/"
target="_blank" rel="noreferrer">
<span class="social-dot"></span> LinkedIn
</a>
<a class="social-chip"
href="https://www.facebook.com/people/Event-Tech-Research/61583230261617/?rdid=BHO47zEHDuyOcPt6&share_url=https%3A%2F%2Fwww.facebook.com%2Fshare%2F17czJerMNB%2F"
target="_blank" rel="noreferrer">
<span class="social-dot"></span> Facebook
</a>
<a class="social-chip"
href="https://www.instagram.com/eventtechresearch"
target="_blank" rel="noreferrer">
<span class="social-dot"></span> Instagram
</a>
<a class="social-chip"
href="https://github.com/eventtech-io"
target="_blank" rel="noreferrer">
<span class="social-dot"></span> GitHub
</a>
</nav>
</header>
<main>
<!-- HERO -->
<section class="hero">
<span class="badge">Research · Field Engineering · Education</span>
<h1>
Research-led tools for the <span>next generation</span> of events.
</h1>
<p class="hero-lead">
Event Tech Research is a London-based R&D and education studio focused on modern event audio, networking,
and control. We prototype practical tools for technicians and production teams — then share the knowledge back
through documentation, training, and open-architecture design.
</p>
<div class="hero-links" aria-label="Primary actions">
<a class="social-chip" href="/hedera.html"><span class="social-dot"></span> Explore Hedera</a>
<a class="social-chip" href="https://github.com/eventtech-io" target="_blank" rel="noreferrer">
<span class="social-dot"></span> View on GitHub
</a>
</div>
<div class="kpi-row" aria-label="Highlights">
<span class="kpi"><span class="dot"></span> <b>Field-tested</b> workflows</span>
<span class="kpi"><span class="dot"></span> <b>Open standards</b> mindset</span>
<span class="kpi"><span class="dot"></span> <b>Engineer-first</b> tools</span>
<span class="kpi"><span class="dot"></span> <b>Documentation</b> + training</span>
</div>
</section>
<!-- OVERVIEW -->
<section class="grid grid-2">
<article class="card">
<div class="section-title">Overview</div>
<h2>What we do</h2>
<p>
We explore how networked audio, OSC, and open protocols can simplify real-world workflows for engineers
in live events, theatre, and broadcast — especially when reliability, speed, and clarity matter most.
</p>
<ul>
<li>Event-focused R&D and prototyping</li>
<li>Audio networking & monitoring tools</li>
<li>Show control, device integration, and automation</li>
<li>Practical templates, guides, and educational resources</li>
</ul>
<p class="fine">
The goal is simple: reduce friction on show day and make complex systems feel approachable.
</p>
</article>
<article class="card">
<div class="section-title">Principles</div>
<h2>How we work</h2>
<p>
Our approach is grounded in real deployments — the kind where RF noise is brutal, time is short,
and the show still has to go on.
</p>
<ul>
<li><b>Engineer-first design:</b> minimise cognitive load</li>
<li><b>Observability:</b> status, logs, and clear diagnostics</li>
<li><b>Graceful failure:</b> predictable behaviour under stress</li>
<li><b>Open architecture:</b> standards and interoperability over silos</li>
</ul>
</article>
</section>
<!-- CAPABILITIES -->
<section class="grid">
<div class="section-title">Capabilities</div>
<div class="grid grid-3">
<article class="card">
<h2>Audio</h2>
<p class="muted">Transport · monitoring · low-latency engineering</p>
<ul>
<li>Uncompressed PCM workflows</li>
<li>Dante / AES67 thinking</li>
<li>Field capture and diagnostics</li>
</ul>
</article>
<article class="card">
<h2>Control</h2>
<p class="muted">OSC · scene workflows · universal control concepts</p>
<ul>
<li>Cross-vendor control ideas</li>
<li>Automation and monitoring displays</li>
<li>Operator-friendly UI patterns</li>
</ul>
</article>
<article class="card">
<h2>Networking</h2>
<p class="muted">VLANs · PoE · resilient edge deployments</p>
<ul>
<li>Festival / venue network design</li>
<li>RF-aware infrastructure</li>
<li>Repeatable deployment methods</li>
</ul>
</article>
</div>
</section>
<!-- PROJECTS -->
<section class="grid">
<div class="section-title">Featured project</div>
<article class="card">
<h2>Hedera — licence-free wireless audio for moving sound systems</h2>
<p>
Hedera is designed to link moving floats along a parade route. It carries uncompressed stereo audio with minimal
latency, plus a service channel for engineering coordination — engineered for hostile RF environments.
</p>
<div class="hero-links" aria-label="Project actions">
<a class="social-chip" href="/hedera.html"><span class="social-dot"></span> Read the Hedera page</a>
<a class="social-chip" href="mailto:event.tech.research@gmail.com?subject=Hedera%20Technical%20Brief%20Request">
<span class="social-dot"></span> Request brief
</a>
</div>
<p class="fine">Tip: the “Request brief” link opens your email client with a pre-filled subject.</p>
</article>
</section>
</main>
<footer>
© <span id="year"></span> Event Tech Research. Built on GitHub Pages.
</footer>
<script>
document.getElementById("year").textContent = new Date().getFullYear();
</script>
</body>
</html>