:root{
  --bg: #0f0f12;
  --card: rgba(255,255,255,0.06);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.65);
  --border: rgba(255,255,255,0.10);
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(255,255,255,0.08), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(255,255,255,0.06), transparent 55%),
              var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a{ color: var(--text); text-decoration: none; opacity: 0.9; }
a:hover{ opacity: 1; text-decoration: underline; }

.header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15,15,18,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__inner{
  max-width: 1050px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  font-weight: 700;
}

.brand__name{ font-weight: 700; }
.brand__tagline{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.nav{
  display: flex;
  gap: 14px;
  font-size: 14px;
}

.main{
  max-width: 1050px;
  margin: 0 auto;
  padding: 18px;
}

.hero{
  padding: 26px 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-top: 18px;
}

.hero h1{
  margin: 0 0 10px 0;
  font-size: 34px;
  letter-spacing: -0.4px;
}

.hero p{
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}

.badge-row{
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
}

.section{
  margin-top: 26px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.section__head h2{
  margin: 0;
  font-size: 22px;
}
.section__head p{
  margin: 6px 0 0 0;
  color: var(--muted);
  font-size: 14px;
}

.grid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card{
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.card img{
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.card--empty{
  display: grid;
  place-items: center;
  min-height: 320px;
}

.empty{
  text-align: center;
  padding: 14px;
  color: var(--muted);
}
.empty__title{
  color: var(--text);
  font-weight: 700;
  margin-bottom: 6px;
}
.empty__text{
  font-size: 13px;
}

.note{
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 14px;
}

.about, .contact{
  margin-top: 14px;
  color: var(--muted);
}

.list{
  margin: 10px 0 0 18px;
}

.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  padding: 2px 6px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

.small{
  font-size: 13px;
  opacity: 0.9;
}

.footer{
  max-width: 1050px;
  margin: 24px auto 40px auto;
  padding: 0 18px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

@media (max-width: 900px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .card img{ height: 280px; }
}
@media (max-width: 560px){
  .nav{ display: none; }
  .grid{ grid-template-columns: 1fr; }
  .card img{ height: 260px; }
  .footer{ flex-direction: column; }
}
