:root{
  --bg:#0b0f14;
  --panel: rgba(255,255,255,.07);
  --line: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --accent: #6ee7b7;
  --accent2:#7be7ff;
  --accent3:#ff8a2a;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --r: 18px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 650px at 20% 10%, rgba(110,231,183,.16), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, rgba(123,231,255,.12), transparent 55%),
    radial-gradient(900px 600px at 70% 85%, rgba(255,138,42,.10), transparent 60%),
    linear-gradient(180deg, #071019, #0b1320);
}

a{ color: inherit; }
.wrap{ max-width:1100px; margin:0 auto; padding: 26px 18px 56px; }

.header{
  padding: 30px 18px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
}
.header .inner{ max-width:1100px; margin:0 auto; }
.brand{
  display:flex; gap:10px; align-items:center; flex-wrap:wrap;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}
.brand b{ color: var(--text); }
h1{
  margin: 10px 0 8px;
  font-size: clamp(26px, 3.8vw, 38px);
  letter-spacing: .2px;
}
.lead{ margin: 0; color: var(--muted); line-height: 1.55; max-width: 900px; }

.badges{ margin-top: 12px; display:flex; flex-wrap:wrap; gap:10px; }
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size: 13px;
}
.badge .dot{ width:10px; height:10px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 6px rgba(110,231,183,.12); }

.grid{
  margin-top: 20px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.card{
  grid-column: span 12;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.cardLink{
  text-decoration:none;
  display:block;
  height:100%;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.cardLink:hover{
  transform: translateY(-2px);
}

.heroCard{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 220px;
}

.heroText{ padding: 18px 18px 16px; }
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-size: 12px; letter-spacing:.25px; text-transform: uppercase;
  color: var(--accent2);
}
.kicker .dot{ width:10px; height:10px; border-radius:999px; background: var(--accent2); box-shadow: 0 0 0 6px rgba(123,231,255,.10); }

.heroTitle{
  margin: 10px 0 8px;
  font-size: 22px;
}
.heroDesc{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.heroImg{
  padding: 12px;
  border-left: 1px solid rgba(255,255,255,.10);
  display:flex; align-items:center; justify-content:center;
  background: rgba(0,0,0,.10);
}
.heroImg img{
  width:100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  display:block;
  box-shadow: 0 16px 45px rgba(0,0,0,.35);
}

@media (max-width: 860px){
  .heroCard{ grid-template-columns: 1fr; }
  .heroImg{ border-left:none; border-top: 1px solid rgba(255,255,255,.10); }
  .heroImg img{ height: 220px; object-fit: cover; }
}

.pageNav{
  margin-top: 18px;
  display:flex; flex-wrap:wrap; gap:10px;
}
.btn{
  appearance:none;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.26);
}

.sectionTitle{
  margin: 24px 0 10px;
  font-size: 18px;
  color: rgba(255,255,255,.88);
}

.items{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 10px;
}
.item{
  grid-column: span 12;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: var(--r);
  overflow:hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  display:grid;
  grid-template-columns: 1fr 1.2fr;
}
.itemImg{
  background: rgba(0,0,0,.12);
  padding: 10px;
}
.itemImg img{
  width:100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  display:block;
}
.itemBody{ padding: 14px 14px 12px; }
.itemBody h3{ margin: 0 0 6px; font-size: 18px; }
.itemBody p{ margin: 0; color: var(--muted); line-height: 1.55; }
.pills{ margin-top: 10px; display:flex; flex-wrap:wrap; gap:8px; }
.pill{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.75);
}

@media (max-width: 900px){
  .item{ grid-template-columns: 1fr; }
  .itemImg img{ height: 240px; }
}
@media (min-width: 720px){
  .item{ grid-column: span 6; }
}
footer{
  border-top: 1px solid var(--line);
  padding: 18px;
  color: var(--muted);
  font-size: 13px;
  text-align:center;
  background: rgba(0,0,0,.10);
}
