/* PIXAM.XYZ - dark cinematic layout */
:root{
  --bg:#070A10;
  --panel:#0D121C;
  --text:#EAF0FA;
  --muted:#A7B3C6;
  --line:#1E2A3B;
  --orange:#FF8A2A;
  --blue:#3AA0FF;
  --radius:18px;
  --shadow:0 14px 40px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 550px at 15% -10%, rgba(58,160,255,.16), transparent 60%),
    radial-gradient(900px 550px at 85% -10%, rgba(255,138,42,.12), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit}
.container{max-width:1140px; margin:0 auto; padding:0 20px}
.section{padding:64px 0}
.section-tight{padding:40px 0}
h1,h2,h3{line-height:1.12; margin:0 0 12px}
p{margin:0 0 14px}
.muted{color:var(--muted)}
.skip-link{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip-link:focus{left:20px; top:20px; width:auto; height:auto; background:var(--panel); padding:10px 12px; border-radius:12px; border:1px solid rgba(255,255,255,.10)}
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(7,10,16,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand img{height:34px; width:auto; display:block}
.nav{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.nav a{color:var(--muted); text-decoration:none; font-size:14px}
.nav a:hover{color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 14px; border-radius:999px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  color:#07101A;
  font-weight:800;
  text-decoration:none;
  box-shadow: var(--shadow);
}
.btn-ghost{
  background: transparent;
  color:var(--text);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none;
}
.nav-toggle{display:none}
.hero{padding:70px 0 44px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:center;
}
.kicker{color:var(--orange); font-weight:800; letter-spacing:.14em; text-transform:uppercase; font-size:12px}
.hero h1{font-size:48px}
.hero p{color:var(--muted); max-width:62ch}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero-card{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius: calc(var(--radius) + 8px);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.hero-card img{width:100%; height:auto; display:block}
.chips{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:12px;
  margin-top:22px;
}
.chip{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding:14px;
}
.chip .label{color:var(--muted); font-size:12px}
.chip .value{font-size:16px; font-weight:800; margin-top:4px}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:14px;
}
.card{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius: calc(var(--radius) + 6px);
  padding:18px;
}
.card h3{font-size:18px}
.card p{color:var(--muted)}
.card .icon{
  width:34px; height:34px; border-radius:12px;
  background: rgba(255,138,42,.18);
  border:1px solid rgba(255,138,42,.25);
  display:grid; place-items:center;
  margin-bottom:10px;
  font-weight:900;
  color:var(--orange);
}
.media-row{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
  margin-top:18px;
}
.media{
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.media img{width:100%; height:100%; object-fit:cover; display:block; aspect-ratio: 4/3}
.media a { display:block; height:100%; }
.media img { display:block; width:100%; height:100%; object-fit:cover; }
.banner{
  margin-top:34px;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  background: linear-gradient(90deg, rgba(58,160,255,.10), rgba(255,138,42,.10));
}
.banner-inner{padding:34px 0}
.banner h2{font-size:30px}
.banner p{color:var(--muted); max-width:80ch}
.video-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:14px;
  margin-top:18px;
}
.video-card{
  border:1px solid rgba(255,255,255,.08);
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  background: rgba(255,255,255,.03);
}
.video-embed{position:relative; width:100%; padding-top:56.25%; background:#000}
.video-embed iframe{position:absolute; inset:0; width:100%; height:100%; border:0}
.video-meta{padding:12px 14px}
.video-meta p{color:var(--muted); font-size:14px}
.footer{
  border-top:1px solid rgba(255,255,255,.06);
  padding:24px 0;
}
.footer-inner{display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--text)}
.small{font-size:14px; color:var(--muted)}
hr.sep{border:0; border-top:1px solid rgba(255,255,255,.06); margin:24px 0}
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .hero h1{font-size:40px}
  .chips{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .media-row{grid-template-columns:1fr}
  .video-grid{grid-template-columns:1fr}
}
@media (max-width: 620px){
  .nav{display:none}
  .nav-toggle{display:inline-block; background:transparent; border:1px solid rgba(255,255,255,.14); color:var(--text); border-radius:12px; padding:8px 10px}
}




/* Banner spacing */
.banner-inner{padding:30px 0}


/* --- Brand updates (bigger logo, PIXAM only) --- */
.brand{gap:14px}
.brand .mark{height:44px; width:auto; display:block}
.brand .brand-stack{display:flex; flex-direction:column; line-height:1.05}
.brand .brand-name{font-weight:900; letter-spacing:.08em; text-transform:uppercase; font-size:18px}
.brand .brand-sub{color:var(--muted); font-size:12px; letter-spacing:.14em; text-transform:uppercase}
@media (max-width: 620px){
  .brand .brand-sub{display:none}
  .brand .mark{height:40px}
}
