
:root{
  --bg:#090b10;--panel:#11141b;--panel2:#151923;--text:#f5f7fb;--muted:#9ea7b7;
  --line:rgba(255,255,255,.09);--accent:#7c5cff;--accent2:#29d3ff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:
 radial-gradient(circle at 10% 0%,rgba(124,92,255,.15),transparent 28%),
 radial-gradient(circle at 90% 4%,rgba(41,211,255,.08),transparent 24%),var(--bg);
 color:var(--text);font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}
a{color:inherit;text-decoration:none}
.topbar{position:sticky;top:0;z-index:20;display:flex;justify-content:space-between;align-items:center;
 padding:16px 5vw;border-bottom:1px solid var(--line);background:rgba(9,11,16,.84);backdrop-filter:blur(18px)}
.brand{display:flex;align-items:center;gap:11px;font-weight:780;letter-spacing:-.025em}
.brand-mark{display:grid;place-items:center;width:35px;height:35px;border-radius:11px;
 background:linear-gradient(135deg,var(--accent),var(--accent2));font-weight:850}
.nav{display:flex;gap:8px;align-items:center}
.nav a{padding:9px 12px;border-radius:11px;color:#c5cbd7;font-size:13px}
.nav a:hover{background:rgba(255,255,255,.05);color:#fff}
.nav .primary{background:#fff;color:#10131a;font-weight:750}
.wrap{max-width:1180px;margin:0 auto;padding:62px 24px 100px}
.breadcrumb{font-size:13px;color:#858fa1;margin-bottom:28px}
.breadcrumb a:hover{color:#fff}
.eyebrow{font-size:12px;letter-spacing:.14em;font-weight:800;color:#9f8cff}
h1{font-size:clamp(40px,6vw,68px);line-height:1.02;letter-spacing:-.052em;margin:13px 0 18px;max-width:900px}
.lead{font-size:17px;line-height:1.75;color:#b4bdcc;max-width:820px}
.meta{display:flex;gap:10px;flex-wrap:wrap;margin:24px 0 38px}
.pill{border:1px solid var(--line);border-radius:999px;padding:8px 11px;color:#aeb6c5;font-size:12px;background:rgba(255,255,255,.035)}
.actions{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:44px}
.btn{padding:12px 16px;border-radius:12px;font-size:13px;font-weight:750;border:1px solid var(--line)}
.btn.primary{background:#fff;color:#111}
.btn.secondary{background:#141822;color:#fff}
.grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:15px}
.wall{display:block;border:1px solid var(--line);border-radius:18px;overflow:hidden;background:#121620;transition:.2s transform,.2s border-color}
.wall:hover{transform:translateY(-3px);border-color:rgba(255,255,255,.18)}
.wall img{display:block;width:100%;aspect-ratio:9/16;object-fit:cover;background:#111}
.wall-info{display:flex;justify-content:space-between;gap:8px;align-items:center;padding:11px}
.wall-info span{font-size:12px;color:#c9cfda}
.download{font-size:11px;color:#a797ff;font-weight:750}
.related{margin-top:72px;padding-top:34px;border-top:1px solid var(--line)}
.related h2{font-size:28px;letter-spacing:-.035em}
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.related-card{padding:20px;border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,.035)}
.related-card b{display:block;margin-bottom:6px}.related-card span{font-size:13px;color:#929bab}
.collections-intro{max-width:780px;margin-bottom:34px}
.collection-list{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.collection-card{display:grid;grid-template-columns:150px 1fr;overflow:hidden;border:1px solid var(--line);border-radius:20px;background:#11141b}
.collection-card img{width:100%;height:100%;min-height:210px;object-fit:cover}
.collection-copy{padding:22px}
.collection-copy h2{margin:7px 0 8px;font-size:25px;letter-spacing:-.03em}
.collection-copy p{color:#9da6b6;line-height:1.6;font-size:13px}
.collection-copy .open{display:inline-block;margin-top:10px;color:#ad9fff;font-size:13px;font-weight:750}
footer{max-width:1180px;margin:0 auto;padding:28px 24px 50px;border-top:1px solid var(--line);
 display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap;color:#7f8899;font-size:12px}
.footer-links{display:flex;gap:14px;flex-wrap:wrap}
@media(max-width:950px){.grid{grid-template-columns:repeat(4,1fr)}.collection-list{grid-template-columns:1fr}}
@media(max-width:700px){.wrap{padding:44px 16px 80px}.topbar{padding:13px 16px}.nav a:not(.primary){display:none}
 .grid{grid-template-columns:repeat(2,1fr);gap:10px}.wall{border-radius:14px}.related-grid{grid-template-columns:1fr}
 .collection-card{grid-template-columns:115px 1fr}.collection-copy{padding:16px}.collection-copy h2{font-size:20px}
 h1{font-size:44px}.lead{font-size:15px}}

/* v14 collection polish */
body{
  min-height:100vh;
}
.wrap{
  padding-top:92px;
}
.collections-intro{
  margin-top:8px;
  margin-bottom:42px;
}
.collections-intro h1{
  margin-top:12px;
  padding-top:4px;
}
.collection-list{
  gap:20px;
}
.collection-card{
  min-height:250px;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.collection-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.16);
  box-shadow:0 18px 48px rgba(0,0,0,.24);
}
.collection-card img{
  min-height:250px;
}
.collection-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.collection-copy .open{
  margin-top:14px;
}
.collection-kicker{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:12px;
}
.collection-kicker span{
  border:1px solid var(--line);
  border-radius:999px;
  padding:6px 9px;
  color:#9da6b6;
  font-size:11px;
}
.collection-hero{
  padding:30px;
  margin-bottom:34px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.025));
}
.collection-hero h1{
  margin-top:12px;
}
.collection-hero .lead{
  margin-bottom:0;
}
@media(max-width:700px){
  .wrap{padding-top:62px}
  .collection-card{min-height:200px}
  .collection-card img{min-height:200px}
  .collections-intro h1{font-size:42px}
}


/* v17: shorter, non-distorted collection previews */
.wall{
  background:#0d1016;
}

.wall img{
  width:100%;
  height:340px;
  aspect-ratio:auto;
  object-fit:contain;
  object-position:center;
  background:#0d1016;
}

@media(max-width:950px){
  .wall img{
    height:300px;
  }
}

@media(max-width:700px){
  .wall img{
    width:100%;
    height:auto;
    aspect-ratio:9/16;
    object-fit:contain;
  }
}
