:root{
  --bg:#6f4bb6;
  --bg2:#9B8AC4;
  --card:rgba(255,255,255,.10);
  --card2:rgba(255,255,255,.14);
  --text:#ffffff;
  --muted:rgba(255,255,255,.78);
  --line:rgba(255,255,255,.18);
  --shadow: 0 14px 40px rgba(0,0,0,.22);
  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 50% 15%, rgba(255,255,255,.20) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(900px 700px at 50% 85%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  min-height:100vh;
}

a{color:#fff}
.container{width:100%; max-width:var(--max); margin:0 auto; padding:0 18px}

.nav{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter: blur(14px);
  background: rgba(18,12,35,.38);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:10px; text-decoration:none;
}
.brand img{width:34px; height:34px; border-radius:10px; box-shadow: 0 8px 20px rgba(0,0,0,.25)}
.brand span{font-weight:700; letter-spacing:.2px}
.links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
.links a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
  color:var(--muted);
  font-size:14px;
}
.links a:hover{border-color:var(--line); color:#fff; background: rgba(255,255,255,.08)}

.hero{
  padding:56px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:center;
}
@media (max-width: 880px){
  .hero-grid{grid-template-columns:1fr; }
}
.hero-card{
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 22px;
}
.h1{
  font-size: clamp(30px, 4vw, 44px);
  line-height:1.05;
  margin:0 0 12px;
  letter-spacing:.2px;
}
.sub{
  margin:0 0 18px;
  color:var(--muted);
  font-size: 16.5px;
  line-height:1.5;
}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:#fff;
  font-size: 13.5px;
}
.cta-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
  font-weight:600;
}
.btn:hover{background: rgba(255,255,255,.18)}
.btn.secondary{background: rgba(0,0,0,.14)}
.btn.secondary:hover{background: rgba(0,0,0,.20)}

.mock{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mock img{display:block; width:100%; height:auto}

.section{
  padding: 26px 0;
}
.section h2{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing:.2px;
}
.section p{
  margin: 0 0 10px;
  color:var(--muted);
  line-height:1.6;
}

.grid{
  display:grid;
  gap:14px;
}
.grid.cards{
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px){
  .grid.cards{grid-template-columns:1fr}
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.card strong{display:block; margin-bottom:6px}
.small{font-size: 13.5px; color: var(--muted)}

.gallery{
  display:grid;
  gap: 12px;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 980px){ .gallery{grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 520px){ .gallery{grid-template-columns: 1fr;} }

.shot{
  border-radius: 16px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.shot img{display:block; width:100%; height:auto}

.legal{
  background: rgba(0,0,0,.12);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.legal h3{margin:0 0 8px; font-size: 18px}
.legal ul{margin: 10px 0 0 18px; color: var(--muted); line-height:1.6}
.legal li{margin: 6px 0}

.footer{
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  color: var(--muted);
  font-size: 13.5px;
}
.footer a{color:var(--muted)}
