*{margin:0;padding:0;box-sizing:border-box;}

:root{
  --text:#e5e5e5;
  --muted:rgba(229,229,229,0.70);
  --glass:rgba(0,0,0,0.45);
  --glass2:rgba(0,0,0,0.55);
  --stroke:rgba(255,255,255,0.10);
}

body{
  min-height:100vh;
  font-family:"Georgia",serif;
  color:var(--text);
  background:
    linear-gradient(rgba(10,10,10,0.78), rgba(10,10,10,0.88)),
    url("tlo.jpg");
  background-size:cover;
  background-position:center 5%;
  background-repeat:no-repeat;
}

.site-header{
  padding:28px 18px 10px;
}

.brand{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:6px;
  text-align:center;
}

.logo{
  font-size:34px;
  letter-spacing:2px;
  font-weight:400;
}

.tag{
  font-size:14px;
  letter-spacing:3px;
  opacity:0.70;
}

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:18px;
}

.hero{
  margin-top:10px;
}

.hero-card{
  background:linear-gradient(180deg, var(--glass), var(--glass2));
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:22px 20px;
  text-align:center;
}

.hero-card h1{
  font-size:40px;
  font-weight:400;
  letter-spacing:1px;
}

.lead{
  margin-top:10px;
  color:var(--muted);
  line-height:1.6;
  font-size:16px;
}

.hub{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.tile{
  text-decoration:none;
  color:var(--text);
  background:rgba(0,0,0,0.38);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:18px 18px;
  transition:transform .25s ease, background .25s ease, border-color .25s ease;
  min-height:120px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.tile h2{
  font-size:22px;
  font-weight:400;
  letter-spacing:1px;
}

.tile p{
  margin-top:8px;
  color:var(--muted);
  line-height:1.55;
  font-size:15px;
}

.tile:hover{
  transform:translateY(-3px);
  background:rgba(0,0,0,0.48);
  border-color:rgba(255,255,255,0.18);
}

.note{
  margin-top:16px;
}

.note-card{
  background:rgba(0,0,0,0.35);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px 16px;
  text-align:center;
  color:var(--muted);
}

.site-footer{
  padding:24px 18px 26px;
  text-align:center;
  opacity:0.70;
  font-size:14px;
}

@media (max-width:800px){
  .hub{grid-template-columns:1fr;}
  .hero-card h1{font-size:34px;}
}