:root{
--bg:#050505;
--text:#fff;
--muted:rgba(255,255,255,.55);
--gold:rgba(255,214,125,.08);
--mint:#73d8b0;
--orange:#df8852;
--yellow:#d9d75d;
}
*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%}
body{
background:radial-gradient(circle at 50% 28%,var(--gold),transparent 42%),var(--bg);
font-family:Inter,sans-serif;
display:flex;
justify-content:center;
align-items:center;
overflow:hidden;
color:var(--text);
-webkit-font-smoothing:antialiased;
}
.lines{
position:fixed;
left:42px;
top:0;
height:100vh;
display:flex;
gap:12px;
}
.line{width:2px;height:100vh}
.mint{background:var(--mint);box-shadow:0 0 10px var(--mint)}
.orange{background:var(--orange);box-shadow:0 0 10px var(--orange)}
.yellow{background:var(--yellow);box-shadow:0 0 10px var(--yellow)}
.hero{
width:min(900px,90vw);
padding:48px 32px;
text-align:center;
}
.logo{
display:block;
width:min(520px,75vw);
margin:0 auto 10px;
}
.eyebrow{
font-size:clamp(12px,1.2vw,17px);
font-weight:300;
letter-spacing:.45em;
line-height:1.8;
margin-bottom:35px;
}
h1{
font-size:clamp(38px,5vw,62px);
font-weight:200;
letter-spacing:.28em;
}
.divider{
width:110px;
height:1px;
background:rgba(255,255,255,.7);
margin:25px auto;
}
.mail{
color:#fff;
text-decoration:none;
letter-spacing:.32em;
font-size:12px;
}
.mail:hover{opacity:.7}
footer{
margin-top:70px;
display:flex;
justify-content:center;
gap:28px;
flex-wrap:wrap;
font-size:11px;
letter-spacing:.28em;
color:var(--muted);
}
@media (max-width:768px){
body{overflow:auto}
.lines{left:18px;gap:8px}
.hero{padding:72px 24px 40px;min-height:100vh;display:flex;flex-direction:column;justify-content:center}
.logo{width:min(320px,72vw);margin-bottom:26px}
.eyebrow{font-size:12px;letter-spacing:.22em}
h1{font-size:34px;letter-spacing:.16em}
footer{gap:12px;font-size:10px;margin-top:48px}
}
@media (max-height:760px){
.logo{width:min(420px,60vw);margin-bottom:24px}
.eyebrow{margin-bottom:28px}
h1{font-size:clamp(32px,4vw,52px)}
footer{margin-top:40px}
}
