@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Manrope:wght@400;500;600;700&display=swap');

:root{--bg:#070707;--fg:#f4f2ed;--muted:#9b9b98;--line:#262626;--accent:#d9ff45}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
margin:0;
background:var(--bg);
color:var(--fg);
font-family:Manrope,Arial,sans-serif;
overflow-x:hidden
}

.noise{
position:fixed;
inset:0;
pointer-events:none;
z-index:50;
opacity:.035;
background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.nav{
position:fixed;
z-index:20;
top:0;
left:0;
right:0;
padding:24px 4vw;
display:flex;
align-items:center;
justify-content:space-between;
background:linear-gradient(#070707dd,transparent)
}

.brand{
display:flex;
flex-direction:column;
color:var(--fg);
text-decoration:none;
letter-spacing:.14em;
font-weight:700;
font-size:14px
}

.brand small{
font:10px 'DM Mono',monospace;
letter-spacing:.34em;
margin-top:4px;
color:#aaa
}

.nav nav{
display:flex;
gap:28px
}

.nav nav a,.nav-cta,.contact-links a{
color:#ddd;
text-decoration:none;
font-size:12px
}

.nav nav a:hover,.contact-links a:hover{
color:var(--accent)
}

.nav-cta{
border:1px solid #555;
padding:11px 16px
}

.hero{
height:100vh;
min-height:700px;
position:relative;
display:flex;
align-items:flex-end;
padding:0 8vw 10vh;
overflow:hidden
}

.hero-media{
position:absolute;
inset:0;
background:radial-gradient(circle at 70% 45%,#473d34 0,#191817 28%,#070707 66%)
}

.hero-gradient{
position:absolute;
inset:0;
background:linear-gradient(90deg,#070707 5%,transparent 55%,#070707 100%),linear-gradient(0deg,#070707,transparent 55%)
}

.hero-grid{
position:absolute;
inset:0;
opacity:.12;
background-image:linear-gradient(#fff1 1px,transparent 1px),linear-gradient(90deg,#fff1 1px,transparent 1px);
background-size:90px 90px;
transform:perspective(600px) rotateX(58deg) scale(1.8);
transform-origin:bottom
}

.hero-content{
position:relative;
max-width:900px
}

.eyebrow{
font:10px 'DM Mono',monospace;
letter-spacing:.22em;
color:#aaa;
margin:0 0 24px
}

.hero h1{
font-size:clamp(58px,9vw,150px);
line-height:.86;
letter-spacing:-.07em;
margin:0
}

.hero h1 em,h2 em,.manifesto em{
font-family:Georgia,serif;
font-weight:400
}

.hero-copy{
max-width:560px;
color:#bbb;
font-size:16px;
line-height:1.65;
margin:30px 0
}

.actions{
display:flex;
gap:12px;
flex-wrap:wrap
}

.button{
displa
