:root{
  --bg:#070b14;
  --panel:#0c1326;
  --panel2:#0a1020;
  --text:#e9eefc;
  --muted:#a9b5d6;
  --line:rgba(255,255,255,.10);
  --glow:rgba(135,180,255,.18);
  --accent:#86b4ff;
  --accent2:#65f2c5;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 22px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:radial-gradient(1200px 800px at 12% 8%, rgba(134,180,255,.14), transparent 55%),
                                   radial-gradient(900px 900px at 88% 18%, rgba(101,242,197,.10), transparent 60%),
                                   linear-gradient(180deg, #070b14 0%, #050814 100%);
          color:var(--text);
          font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
          line-height:1.45;
          scroll-behavior:smooth;
}

a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

.container{ max-width:1120px; margin:0 auto; padding:26px 18px 70px; }
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7,11,20,.80), rgba(7,11,20,.55));
  border-bottom:1px solid var(--line);
}
.nav-inner{
  max-width:1120px; margin:0 auto; padding:14px 18px;
  display:flex; align-items:center; gap:14px; justify-content:space-between;
}
.brand{
  display:flex; align-items:center; gap:10px;
  letter-spacing:.2px;
}
.badge{
  width:34px; height:34px; border-radius:11px;
  background: radial-gradient(circle at 30% 30%, rgba(134,180,255,.45), rgba(7,11,20,.9));
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.45), 0 0 0 6px rgba(134,180,255,.06);
}
.brand-title{ font-weight:760; font-size:15px; }
.brand-sub{ font-size:12px; color:var(--muted); margin-top:2px; }

.links{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.pill{
  padding:10px 12px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(12,19,38,.55);
  color:var(--text);
  font-size:13px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.pill:hover{ transform: translateY(-1px); border-color: rgba(134,180,255,.30); background:rgba(12,19,38,.72); }
.pill.primary{
  border-color: rgba(134,180,255,.35);
  background: linear-gradient(180deg, rgba(134,180,255,.18), rgba(12,19,38,.55));
  box-shadow: 0 16px 36px rgba(0,0,0,.35);
}

.hero{
  display:grid; gap:18px;
  grid-template-columns: 1.25fr .85fr;
  margin-top:22px;
}
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
}

.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(12,19,38,.74), rgba(10,16,32,.62));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-pad{ padding:22px; }

.kicker{
  display:inline-flex; gap:8px; align-items:center;
  padding:7px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,11,20,.48);
  color: var(--muted);
  font-size:12px;
}
.dot{
  width:8px; height:8px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, var(--accent2), rgba(101,242,197,.0));
  box-shadow: 0 0 0 7px rgba(101,242,197,.10);
}

.h1{
  margin:14px 0 10px;
  font-size:44px;
  letter-spacing:-.6px;
  line-height:1.05;
}
@media (max-width: 520px){
  .h1{ font-size:34px; }
}
.lede{ color:var(--muted); font-size:15px; max-width:60ch; }

.meta-row{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:16px;
}
.chip{
  display:inline-flex; gap:9px; align-items:center;
  padding:10px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,11,20,.40);
  color: var(--text);
  font-size:13px;
}
.chip svg{ opacity:.85; }

.cta-row{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:18px;
}
.btn{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,11,20,.35);
  color: var(--text);
  padding:12px 14px;
  border-radius: 14px;
  font-size:14px;
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(134,180,255,.34); background: rgba(12,19,38,.68); }
.btn.primary{
  border-color: rgba(134,180,255,.40);
  background: linear-gradient(180deg, rgba(134,180,255,.18), rgba(12,19,38,.64));
}

.side{
  display:grid; gap:14px;
  align-content:start;
}
.portrait-wrap{
  padding:18px;
  display:grid; gap:12px;
}
.portrait{
  width:100%;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  background: rgba(0,0,0,.15);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 28%;
}
.small{
  color: var(--muted);
  font-size:12px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  margin-top:16px;
}
.col-6{ grid-column: span 6; }
.col-4{ grid-column: span 4; }
.col-8{ grid-column: span 8; }
.col-12{ grid-column: span 12; }
@media (max-width: 980px){
  .col-6, .col-4, .col-8{ grid-column: span 12; }
}

.section-title{
  font-size:14px;
  letter-spacing:.3px;
  color: var(--muted);
  text-transform:uppercase;
  margin:0 0 10px;
}

.item{
  padding:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,11,20,.34);
  border-radius: 18px;
  position:relative;
  overflow:hidden;
}
.item:before{
  content:"";
  position:absolute; inset:-40px -60px auto auto;
  width:180px; height:180px;
  background: radial-gradient(circle at 30% 30%, rgba(134,180,255,.28), transparent 62%);
  transform: rotate(18deg);
  pointer-events:none;
}
.item h3{ margin:0 0 6px; font-size:16px; }
.item p{ margin:0; color:var(--muted); font-size:13px; }

.footer{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color: var(--muted);
  font-size:12px;
  display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; align-items:center;
}

.toast{
  position: fixed;
  inset: auto 14px 14px auto;
  background: rgba(12,19,38,.92);
  border:1px solid rgba(255,255,255,.14);
  color: var(--text);
  padding:12px 12px;
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  transform: translateY(12px);
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  max-width: 340px;
}
.toast.show{ opacity:1; transform: translateY(0); }

.gallery-hero{
  display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between; gap:14px;
}
.gallery-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.g-item{
  grid-column: span 4;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
  background: rgba(7,11,20,.30);
  transform: translateY(0);
  transition: transform .18s ease, border-color .18s ease;
}
.g-item:hover{ transform: translateY(-2px); border-color: rgba(134,180,255,.30); }
.g-item img{
  width:100%; height: 260px;
  object-fit: cover;
  display:block;
}
.g-cap{
  padding:12px 12px 14px;
  color: var(--muted);
  font-size:12px;
}
@media (max-width: 980px){ .g-item{ grid-column: span 6; } .g-item img{ height: 230px; } }
@media (max-width: 560px){ .g-item{ grid-column: span 12; } .g-item img{ height: 240px; } }

.fade-up{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.show{
  opacity:1;
  transform: translateY(0);
}
