:root{
  --bg:#ffffff;
  --card:#dedee3;
  --alt:#9e9e9e;
  --text:#2e2e2e;
  --muted:#47474d;
  --line:rgba(255,255,255,0.10);
  --radius:18px;
  --max:1080px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: 0.9; }

.container{
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.site-header{
  position: center;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(11,11,12,0.70);
  border-bottom: 0px solid var(--line);
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 20px 4vw;
}

.logo{
  font-weight: 1000;
  letter-spacing: 1.5px;
  font-size: 75px;
  text-align: center;
  

}

.nav{
  display:flex;
  gap: 14px;
  align-items:center;
  
}

.hero{
  padding: 76px 0 40px;
}
.hero-inner{
  width: min(760px, 92vw);
  margin: 0 auto;
  text-align: center;
}
.eyebrow{
  color: var(--muted);
  margin: 0 0 10px;
}

h1{
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.1;
  margin: 0 0 12px;
  text-align: center;
}
.lead{
  color: var(--muted);
  font-size: 18px;
  margin: 0 auto 22px;
  width: min(640px, 100%);
}

.section{
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.section-alt{
  background: var(--alt);
}
h2{
  margin: 0 0 14px;
  font-size: 28px;
  text-align: center;
}
.muted{ color: var(--muted); margin-top: 0; }

.grid-3{
  display:grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}
.card, .tile{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.card h3, .tile h3{ margin: 0 0 8px; }
.card p, .tile p{ margin: 0; color: var(--muted); }

.list{
  margin-top: 16px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.list-item{
  display:flex;
  align-items:center;
  justify-content: space-between;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.pill{
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 13px;
}

.btn{
  display:inline-block;
  border: 1px solid rgba(255,255,255,0.20);
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-weight: 650;
}
.btn:hover{ background: rgba(255,255,255,0.12); }

.btn-ghost{
  background: transparent;
}
.btn-small{
  padding: 9px 12px;
  font-size: 14px;
}


.site-footer{
  border-top: 1px solid var(--line);
  padding: 15px 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.footer-links{
  display:flex;
  gap: 12px;
  color: var(--muted);
}

@media (max-width: 860px){
  .grid-3{ grid-template-columns: 1fr; }
  .nav a{ display:none; }
  .nav .btn-small{ display:inline-block; }
}
