*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#0a0a0a;
  color:white;
}

/* NAV */
header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  padding:30px 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:12px;
  letter-spacing:4px;
}

nav a{
  color:white;
  text-decoration:none;
  margin-left:40px;
  font-size:12px;
  letter-spacing:2px;
  opacity:0.7;
}

nav a:hover{
  opacity:1;
}

/* HERO */
.hero{
  height:100vh;
  display:flex;
  align-items:center;
  padding:0 8%;
}

.tag{
  font-size:12px;
  letter-spacing:4px;
  opacity:0.6;
  margin-bottom:25px;
}

.hero h1{
font-size:52px;
line-height:1.1;
font-weight:800;
margin-bottom:40px;
}
}

.btn{
  display:inline-block;
  padding:16px 32px;
  border:1px solid white;
  color:white;
  text-decoration:none;
  letter-spacing:3px;
  font-size:12px;
}

.btn:hover{
  background:white;
  color:black;
}

/* SECTIONS */
.section{
  padding:120px 8%;
}

.section h2{
  font-size:14px;
  letter-spacing:4px;
  margin-bottom:40px;
  opacity:0.6;
}

.section p{
  max-width:800px;
  font-size:20px;
  line-height:1.6;
  opacity:0.8;
}

/* WORK GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.card{
  height:400px;
  background:#1a1a1a;
  border-radius:10px;
}

/* CONTACT */
.center{
  text-align:center;
}

/* FOOTER */
footer{
  padding:40px;
  text-align:center;
  opacity:0.5;
  font-size:12px;
}

/* MOBILE */
@media(max-width:900px){

.hero h1{
  font-size:38px;
}

.grid{
  grid-template-columns:1fr;
}

header{
  padding:20px;
}

nav a{
  margin-left:15px;
}

}


*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#070707;
color:white;
overflow-x:hidden;
}

/* HEADER */
header{
position:fixed;
top:0;
left:0;
width:100%;
padding:30px 60px;
display:flex;
justify-content:space-between;
align-items:center;
z-index:100;
mix-blend-mode:difference;
}

.logo{
font-size:12px;
letter-spacing:4px;
}

nav a{
color:white;
text-decoration:none;
margin-left:40px;
font-size:12px;
letter-spacing:3px;
opacity:0.7;
transition:0.3s;
}

nav a:hover{
opacity:1;
}

/* HERO */
.hero{
height:100vh;
display:flex;
align-items:center;
padding:0 8%;
}

.hero-inner{
max-width:1100px;
}

.tag{
font-size:12px;
letter-spacing:5px;
opacity:0.6;
margin-bottom:25px;
}

h1{
font-size:78px;
line-height:1.05;
font-weight:800;
margin-bottom:40px;
}

.btn{
display:inline-block;
padding:16px 34px;
border:1px solid white;
color:white;
text-decoration:none;
font-size:12px;
letter-spacing:3px;
transition:0.3s;
}

.btn:hover{
background:white;
color:black;
transform:scale(1.05);
}

/* SECTIONS */
.section{
padding:140px 8%;
}

.section h2{
font-size:12px;
letter-spacing:5px;
opacity:0.5;
margin-bottom:50px;
}

.section p{
max-width:800px;
font-size:22px;
line-height:1.7;
opacity:0.8;
}

/* GRID */
.grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.card{
height:420px;
background:linear-gradient(135deg,#111,#1c1c1c);
border-radius:14px;
transition:0.4s;
position:relative;
overflow:hidden;
}

.card:hover{
transform:translateY(-10px) scale(1.02);
background:linear-gradient(135deg,#1c1c1c,#2a2a2a);
}

/* CENTER */
.center{
text-align:center;
}

/* FOOTER */
footer{
padding:40px;
text-align:center;
opacity:0.4;
font-size:12px;
}

/* ANIMATION */
.reveal{
opacity:0;
transform:translateY(40px);
transition:all 1s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* MOBILE */
@media(max-width:900px){

h1{
font-size:40px;
}

.grid{
grid-template-columns:1fr;
}

header{
padding:20px;
}

nav a{
margin-left:15px;
font-size:10px;
}

}

