:root{
  --bg:#0b1220;
  --card:#101a30;
  --text:#eaf0ff;
  --muted:#b7c3e0;
  --primary:#4f8cff;
  --border:rgba(255,255,255,.10);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Tahoma, Arial;
  background: radial-gradient(1200px 600px at 80% 10%, rgba(79,140,255,.25), transparent 60%),
              radial-gradient(900px 500px at 10% 20%, rgba(34,211,238,.18), transparent 55%),
              var(--bg);
  color:var(--text);
}

.wrap{max-width:1050px; margin:0 auto; padding:24px}
.hero{display:grid; gap:18px; align-items:center; grid-template-columns: 1.2fr .8fr; padding-top:42px}
@media (max-width: 860px){ .hero{grid-template-columns:1fr; padding-top:22px} }

.badge{
  display:inline-block; padding:6px 10px; border:1px solid var(--border);
  border-radius:999px; color:var(--muted); font-size:13px; background:rgba(255,255,255,.04);
}
h1{font-size:48px; margin:12px 0 10px}
.lead{color:var(--muted); font-size:18px; line-height:1.8; margin:0 0 14px}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px; text-decoration:none;
  border:1px solid var(--border); color:var(--text);
}
.btn.primary{background:linear-gradient(135deg, rgba(79,140,255,.95), rgba(34,211,238,.55)); border-color:transparent}
.btn.ghost{background:rgba(255,255,255,.04)}
.btn:hover{transform: translateY(-1px)}
.meta{color:var(--muted); display:flex; gap:10px; flex-wrap:wrap; font-size:14px}

.hero-shot .shot-card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:20px;
  padding:16px;
  min-height:260px;
}
.shot-title{color:var(--muted); font-size:14px; margin-bottom:10px}
.shot-placeholder{
  border:1px dashed rgba(255,255,255,.25);
  border-radius:16px;
  height:200px;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.55);
}

.grid3{
  display:grid; gap:14px; grid-template-columns:repeat(3,1fr);
  margin-top:18px;
}
@media (max-width: 860px){ .grid3{grid-template-columns:1fr} }

.card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.7}

.section{margin-top:26px}
.section h2{margin:0 0 10px; font-size:22px}
.steps{color:var(--muted); line-height:1.9}
.note{color:rgba(255,255,255,.7); font-size:14px}

.gallery{
  display:grid; gap:12px; grid-template-columns:repeat(3,1fr);
}
@media (max-width: 860px){ .gallery{grid-template-columns:1fr} }
.imgph{
  height:160px;
  border-radius:18px;
  border:1px dashed rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.55);
  background:rgba(255,255,255,.03);
}

.footer{
  margin-top:30px; padding:18px 0;
  border-top:1px solid var(--border);
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
  color:var(--muted);
}
.footer a{color:var(--text)}