:root{
  --bg:#0b0d10;
  --fg:#e8e8e8;
  --muted:#b6bcc6;
  --card:#12161c;
  --line:rgba(255,255,255,.12);
  --max:980px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  background: linear-gradient(180deg, #07080a 0%, #0b0d10 100%);
  color:var(--fg);
  line-height:1.65;
}

a{color:inherit; text-decoration: none}
a:hover{opacity:.9; text-decoration: underline}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}

header.site{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(8px);
  background: rgba(11,13,16,.72);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{
  display:flex; flex-direction:column;
}
.brand .name{font-weight:700; letter-spacing:.2px}
.brand .tag{font-size:12px; color:var(--muted)}

.menu{display:flex; flex-wrap:wrap; gap:12px; align-items:center; justify-content:flex-end}
.menu a{
  font-size:13px;
  padding:6px 10px;
  border:1px solid transparent;
  border-radius:999px;
}
.menu a.active{
  border-color: var(--line);
  background: rgba(255,255,255,.06);
}

.hero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:#000;
}
.hero .media{
  width:100%;
  height:min(62vh, 520px);
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.05);
}
.hero .overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.45) 40%,
    rgba(0,0,0,.55) 100%
  );
}
.hero .content{
  position:absolute; left:0; right:0; bottom:0;
  padding:28px 0 30px;
}
.kicker{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,.78);
}
.h1{
  margin:10px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height:1.12;
  letter-spacing:.2px;
}
.sub{
  max-width: 720px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
}
.cta-row{margin-top:16px; display:flex; flex-wrap:wrap; gap:10px}
.btn{
  display:inline-block;
  border:1px solid var(--line);
  background: rgba(255,255,255,.07);
  padding:10px 14px;
  border-radius:12px;
  font-size:13px;
}
.btn.primary{
  background: rgba(255,255,255,.14);
}

.main{padding:28px 0 40px}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}

.card{
  grid-column: span 12;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
}

.card .pad{padding:16px 16px 14px}
.card h2{
  margin:0 0 8px;
  font-size:18px;
  letter-spacing:.1px;
}
.card p{margin:0 0 10px; color:rgba(255,255,255,.86)}
.card p.small{font-size:13px; color:var(--muted)}

.split{
  display:grid;
  grid-template-columns: 1fr;
  gap:0;
}
.split img{
  width:100%;
  height: 280px;
  object-fit:cover;
  display:block;
  filter:saturate(1.03) contrast(1.02);
}

.list{
  margin:10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.86);
}
.list li{margin:6px 0}

.hr{
  height:1px; background: var(--line);
  margin:18px 0;
}

footer.site{
  border-top:1px solid var(--line);
  padding:16px 0 30px;
  color: var(--muted);
  font-size:12px;
}

.note{
  border-left: 3px solid rgba(255,255,255,.18);
  padding:10px 12px;
  background: rgba(255,255,255,.03);
  border-radius:12px;
  color: rgba(255,255,255,.84);
}

@media (min-width: 860px){
  .card.span6{grid-column: span 6}
  .card.span4{grid-column: span 4}
  .split{grid-template-columns: 1.1fr .9fr}
  .split img{height: 100%}
}
