
:root{
  --bg:#0f1113;
  --bg-2:#121416;
  --text:#e7e7e7;
  --muted:#b6b6b6;
  --border:#2a2d31;
  --accent:#c9c9c9; /* subtle */
  --btn:#1c1f23;
  --btn-hover:#23262b;
  --shadow:0 10px 30px rgba(0,0,0,.45);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height:1.5;
  overflow-x:hidden;
}

/* Fixed fullscreen background slideshow */
#bg-slideshow, #bg-slideshow .slide{
  position:fixed; inset:0; z-index:-1;
}
#bg-slideshow{background:var(--bg)}
#bg-slideshow .slide{
  background-position:center;
  background-size:cover;
  opacity:0;
  transition:opacity .9s ease-in-out;
  filter:brightness(64%);
}
#bg-slideshow .slide.show{opacity:1}

/* Layout */
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.nav{
  position:sticky; top:0; z-index:20;
  background:rgba(18,20,22,.65);
  backdrop-filter:saturate(120%) blur(8px);
  border-bottom:1px solid var(--border);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.brand{display:flex;align-items:center;gap:10px}
.brand img{width:42px;height:42px;border-radius:10px;object-fit:contain;background:rgba(255,255,255,.03);padding:6px;border:1px solid var(--border)}
.brand .title{font-weight:800;letter-spacing:.2px;color:#f1f1f1}
.menu{display:flex;gap:8px;flex-wrap:wrap}
.menu a{padding:10px 12px;border-radius:10px;color:#e2e2e2}
.menu a:hover{background:#1a1c1f}

.btn{
  appearance:none;border:1px solid var(--border);background:var(--btn);color:#f3f3f3;
  padding:11px 16px;border-radius:12px;cursor:pointer;box-shadow:var(--shadow);
  transition:background .18s ease, transform .18s ease;
}
.btn:hover{background:var(--btn-hover);transform:translateY(-1px)}
.btn.light{background:#1b1d20}
.btn.link{border:0;background:transparent;box-shadow:none;padding:10px 12px}

.hero{min-height:86vh;display:flex;align-items:center}
.hero .inner{width:100%;text-align:center;padding:80px 0 40px}
.hero h1{
  margin:10px 0 6px;
  font-size: clamp(34px, 6vw, 60px);
  line-height:1.05;
}
.hero p{color:#d6d6d6;max-width:820px;margin:0 auto 18px}
.hero .cta{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}

.section{padding:56px 0}
.section .section-title{margin:0 0 14px;font-size:clamp(22px,4vw,32px)}
.card{
  background:rgba(18,20,22,.72);
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(6px);
}
.grid{display:grid;gap:16px}
.grid-3{grid-template-columns:1fr}
@media(min-width:860px){.grid-3{grid-template-columns:repeat(3,1fr)}}

.lead-grid{display:grid;gap:16px;grid-template-columns:1fr}
@media(min-width:860px){.lead-grid{grid-template-columns:repeat(3,1fr)}}
.lead{text-align:center}
.lead img{width:128px;height:128px;border-radius:999px;object-fit:cover;border:1px solid var(--border)}

.footer{border-top:1px solid var(--border);padding:18px 0;text-align:center;color:#cfcfcf;background:rgba(18,20,22,.65);backdrop-filter:blur(6px)}
.small{color:#bdbdbd;font-size:13px}
