<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>index [copy]</title>
<style>
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #ffffff;
color: #111;
line-height: 1.5;
font-size: 16px;
}
.container {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 24px;
padding: 60px 5vw;
min-height: 100vh;
}
header {
grid-column: 1 / span 12;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 100px;
}
.logo {
font-weight: 500;
font-size: 1rem;
letter-spacing: 0.05em;
text-transform: uppercase;
}
nav {
display: flex;
gap: 2rem;
}
nav a {
text-decoration: none;
color: #666;
font-size: 0.9rem;
transition: color 0.3s ease;
}
nav a:hover {
color: #000;
}
.hero {
grid-column: 2 / span 10;
margin-top: 3rem;
}
.title {
font-size: 5rem;
font-weight: 400;
position: relative;
cursor: default;
}
.title span {
color: #ccc;
letter-spacing: 0.02em;
}
.title::after {
content: "project under construction";
position: absolute;
bottom: -1.5rem;
left: 0;
font-size: 1rem;
opacity: 0;
transition: opacity 0.4s ease;
color: #777;
}
.title:hover::after {
opacity: 1;
}
.glitch {
margin-top: 5rem;
grid-column: 2 / span 10;
font-family: monospace;
color: #aaa;
font-size: 0.95rem;
letter-spacing: 0.08em;
line-height: 1.8;
user-select: none;
}
.glitch::before {
content: "⧉ ⟟⎔∿∰⟟⧉ ⌇𝒏𝓭𝒆𝔁𝓒𐐬𐑌𐐿... 01100110 01101001 01101100 01100101";
}
footer {
grid-column: 2 / span 10;
margin-top: auto;
font-size: 0.75rem;
color: #999;
padding-top: 120px;
}
@media (max-width: 768px) {
.title {
font-size: 3rem;
}
.container {
padding: 40px 4vw;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="logo">index [copy]</div>
<nav>
<a href="#">about</a>
<a href="#">archive</a>
<a href="#">contact</a>
</nav>
</header>
<div class="hero">
<div class="title">index <span>[copy]</span></div>
</div>
<div class="glitch"></div>
<footer>© 2025 index [copy] — launch scheduled for August 2025</footer>
</div>
</body>
</html>