:root{
  --bg:#0b0d10;
  --panel:#141820;
  --text:#f5f7fb;
  --muted:#a9b2c3;
  --line:#252b36;
  --accent:#ffffff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.wrap{max-width:1120px;margin:0 auto;padding:0 28px}
nav{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
}
.brand{font-weight:800;letter-spacing:.08em}
.navlinks{display:flex;gap:24px;color:var(--muted);font-size:14px}
.hero{
  min-height:68vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:80px 0;
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--muted);
  font-size:13px;
  margin-bottom:18px;
}
h1{
  font-size:clamp(56px, 10vw, 118px);
  line-height:.88;
  margin:0;
  letter-spacing:-.055em;
  max-width:950px;
}
.hero p{
  margin:26px 0 0;
  max-width:640px;
  color:var(--muted);
  font-size:20px;
  line-height:1.55;
}
.section{padding:90px 0;border-top:1px solid var(--line)}
.sectionhead{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:30px;
}
.sectionhead h2{font-size:36px;margin:0;letter-spacing:-.03em}
.sectionhead p{margin:0;color:var(--muted)}
.grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.card{
  min-height:340px;
  border:1px solid var(--line);
  background:var(--panel);
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:transform .2s ease,border-color .2s ease;
}
.card:hover{transform:translateY(-4px);border-color:#566070}
.card .tag{
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
}
.card h3{
  margin:0;
  font-size:48px;
  letter-spacing:-.04em;
}
.card p{color:var(--muted);line-height:1.55;max-width:460px}
.arrow{font-size:26px}
.footer{
  padding:50px 0 70px;
  color:var(--muted);
  display:flex;
  justify-content:space-between;
  gap:24px;
  border-top:1px solid var(--line);
}
.project-hero{
  min-height:70vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.project-hero h1{font-size:clamp(64px,12vw,140px)}
.project-hero p{max-width:680px;color:var(--muted);font-size:20px;line-height:1.6}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  margin-top:24px;
  padding:14px 20px;
  border:1px solid var(--text);
  font-weight:700;
}
.meta{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.meta div{border-top:1px solid var(--line);padding-top:14px}
.meta small{display:block;color:var(--muted);margin-bottom:7px}
@media(max-width:760px){
  .navlinks{display:none}
  .grid,.meta{grid-template-columns:1fr}
  .hero{min-height:60vh}
  .sectionhead{align-items:start;flex-direction:column}
  .footer{flex-direction:column}
}
