:root{
  --bg:#0b0b0c;
  --panel:#141417;
  --panel2:#101013;
  --text:#f3f4f6;
  --muted:#b7bcc7;
  --accent:#7dd3fc;
  --border:rgba(255,255,255,.08);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
  --font: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1200px 600px at 20% 0%, rgba(125,211,252,.12), transparent 55%),
              radial-gradient(1200px 700px at 90% 10%, rgba(167,139,250,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
code{font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size:.95em}

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

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:18px; top:18px; width:auto; height:auto; padding:10px 12px; background:#111; border:1px solid var(--border); border-radius:12px; z-index:999}

.site-header{
  position:sticky; top:0;
  background: rgba(11,11,12,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index:50;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(125,211,252,.22), rgba(167,139,250,.18));
  border:1px solid var(--border);
  font-weight:800;
  letter-spacing:.5px;
}
.brand-title{font-weight:800; font-size:1.02rem}
.brand-sub{color:var(--muted); font-size:.88rem}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); font-weight:600; padding:8px 10px; border-radius:12px}
.nav a:hover{color:var(--text); background: rgba(255,255,255,.06)}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.nav-toggle span{display:block; height:2px; margin:6px 10px; background: rgba(243,244,246,.9)}

.hero{padding:46px 0 18px}
.hero-inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}

.kicker{color:var(--muted); font-weight:700; letter-spacing:.2px; margin:0 0 10px}
.hero h1{font-size:2.2rem; line-height:1.15; margin:0 0 12px}
.accent{color:var(--accent)}
.lead{color:rgba(243,244,246,.88); font-size:1.05rem; margin:0 0 18px}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin:6px 0 16px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-weight:800;
}
.btn:hover{background: rgba(255,255,255,.07)}
.btn.primary{
  background: linear-gradient(135deg, rgba(125,211,252,.18), rgba(167,139,250,.12));
  border-color: rgba(125,211,252,.22);
}

.badges{display:flex; gap:10px; flex-wrap:wrap}
.badge{padding:8px 10px; border:1px solid var(--border); border-radius:999px; color:var(--muted); background: rgba(255,255,255,.03); font-weight:700; font-size:.9rem}

.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.card-top, .card-bottom{padding:14px 14px}
.card-top{display:flex; justify-content:space-between; gap:10px; align-items:baseline}
.card-title{font-weight:900}
.card-note{color:var(--muted); font-weight:600; font-size:.9rem}
.card-bottom{border-top:1px solid var(--border)}

.media-frame{position:relative; aspect-ratio: 16/9; background:#0e0e12}
.featured-video, .featured-image{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
}


.section{padding:42px 0}
.section.alt{background: rgba(255,255,255,.02); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
.section h2{margin:0 0 10px; font-size:1.55rem}

.muted{color:var(--muted)}
.small{font-size:.9rem}

.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:18px}
.panel{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
}
.panel h3{margin:0 0 8px; font-size:1.08rem}
.panel ul{margin:10px 0 0; padding-left:18px; color:rgba(243,244,246,.88)}

.media-grid.one {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.inline-video{width:100%; border-radius:14px; border:1px solid var(--border); background:#0e0e12}
.inline-image{width:100%; border-radius:14px; border:1px solid var(--border)}

.links{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px; margin-top:16px}
.link-card{
  padding:14px 14px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  transition: transform .12s ease, background .12s ease;
}
.link-card:hover{transform: translateY(-1px); background: rgba(255,255,255,.05)}
.lc-title{font-weight:900}
.lc-sub{color:var(--muted); margin-top:4px; font-size:.95rem; overflow-wrap:anywhere}

.note{
  margin-top:18px;
  padding:14px 14px;
  border-radius: var(--radius);
  border:1px dashed rgba(125,211,252,.25);
  background: rgba(125,211,252,.06);
}

.footer{padding:22px 0 34px}
.footer-inner{display:flex; justify-content:space-between; align-items:center; gap:12px; border-top:1px solid var(--border); padding-top:16px}
.footer-title{font-weight:900}

@media (max-width: 920px){
  .hero-inner{grid-template-columns:1fr;}
}

@media (max-width: 760px){
  .nav{display:none; position:absolute; right:18px; top:70px; flex-direction:column; width:min(320px, calc(100vw - 36px));
       background: rgba(11,11,12,.92); border:1px solid var(--border); border-radius:18px; padding:10px; box-shadow: var(--shadow)}
  .nav a{width:100%}
  .nav-toggle{display:block}
  .grid-3{grid-template-columns:1fr}
  .media-grid{grid-template-columns:1fr}
  .links{grid-template-columns:1fr}
}
