/* Disruptor Art Warehouse — Phase 1 starter
   Edit the :root values to re-skin instantly. */

:root{
  --bg: #0a0e14;
  --bg2:#0d1520;
  --card:#0e1826;
  --stroke:#1a2d44;
  --text:#e0f2ff;
  --muted:#8fb5d9;
  --accent:#52e5ff;
  --accent2:#4a9fff;
  --shadow: 0 12px 50px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 28px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 10% 0%, rgba(110,243,255,.12), transparent 55%),
              radial-gradient(900px 700px at 90% 10%, rgba(196,107,255,.10), transparent 60%),
              linear-gradient(180deg, var(--bg), #070812 70%);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.9; }

.container{
  width:min(var(--max), calc(100% - 48px));
  margin-inline:auto;
}

.skip{
  position:absolute;
  top:-40px; left:12px;
  background:var(--card);
  border:1px solid var(--stroke);
  padding:10px 12px;
  border-radius:12px;
}
.skip:focus{ top:12px; z-index:999; }

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(10,11,16,.55);
  border-bottom:1px solid rgba(31,36,68,.65);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand__mark{
  width:42px; height:42px;
  border-radius:14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(110,243,255,.9), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(196,107,255,.8), transparent 60%),
    linear-gradient(135deg, #0e1020, #141a3a);
  border:1px solid rgba(31,36,68,.9);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.brand__name{ font-weight:700; letter-spacing:.2px; }
.brand__tag{ font-size:12px; color:var(--muted); margin-top:2px; }

.nav{
  display:flex; gap:18px; align-items:center;
  padding:10px 14px;
  border:1px solid rgba(31,36,68,.7);
  background: rgba(15,18,36,.35);
  border-radius: 999px;
}
.nav a{ font-size:14px; color:var(--muted); }
.nav a:hover{ color:var(--text); opacity:1; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(110,243,255,.20), rgba(196,107,255,.14));
  border:1px solid rgba(110,243,255,.38);
  color:var(--text);
  font-weight:600;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.btn--ghost{
  background: rgba(15,18,36,.35);
  border:1px solid rgba(31,36,68,.9);
  color:var(--text);
  box-shadow:none;
}
.btn--small{
  padding:10px 14px;
  font-size:14px;
}

.hero{ padding:54px 0 24px; }
.hero__grid{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero__copy{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow{
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
  margin:0 0 10px;
}
h1{
  font-size: clamp(32px, 5vw, 56px);
  line-height:1.05;
  margin:0 0 14px;
  letter-spacing:-.02em;
}
.lead{
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
  margin:0 0 18px;
  max-width: 60ch;
}
.cta{ display:flex; gap:12px; flex-wrap:wrap; margin: 12px 0 18px; justify-content: center; }
.chips{ display:flex; gap:10px; flex-wrap:wrap; justify-content: center; }
.chip{
  font-size:13px;
  color:var(--muted);
  border:1px solid rgba(31,36,68,.9);
  background: rgba(15,18,36,.35);
  padding:8px 10px;
  border-radius:999px;
}

.section{ padding:56px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(15,18,36,.22), rgba(10,11,16,0));
  border-top:1px solid rgba(31,36,68,.4);
  border-bottom:1px solid rgba(31,36,68,.35);
}
.section__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
.section__head h2{
  margin:0;
  font-size:28px;
  letter-spacing:-.02em;
}
.section__head p{
  margin:0;
  color:var(--muted);
  max-width: 62ch;
  line-height:1.5;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.card{
  border-radius: var(--radius);
  border:1px solid rgba(31,36,68,.9);
  background: rgba(15,18,36,.40);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  padding:18px;
}
.card--flat{ box-shadow:none; }
.card h3{ margin:0 0 8px; font-size:18px; }
.card p{ margin:0 0 14px; color:var(--muted); line-height:1.55; }

.tags{ display:flex; gap:8px; flex-wrap:wrap; margin-top:6px; }
.tag{
  font-size:12px;
  border:1px solid rgba(31,36,68,.8);
  padding:6px 9px;
  border-radius:999px;
  color:var(--muted);
  background: rgba(10,11,16,.28);
}

.note{
  margin-top:14px;
  border-radius: var(--radius);
  border:1px dashed rgba(110,243,255,.28);
  background: rgba(110,243,255,.06);
  padding:16px;
}
.note__title{ font-weight:700; margin-bottom:6px; }
.note__body{ color:var(--muted); line-height:1.6; }

.mini{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(31,36,68,.8);
  background: rgba(10,11,16,.20);
  margin-bottom:12px;
}
.mini__label{ color:var(--muted); font-size:12px; letter-spacing:.14em; }
.mini__value{ font-weight:600; }

.two{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
}
.bullets{ margin:0; padding-left:18px; color:var(--muted); }
.bullets li{ margin:10px 0; }

.list{
  display:flex; flex-direction:column;
  gap:10px;
}
.list__item{
  display:flex; justify-content:space-between; align-items:center; gap:18px;
  padding:14px 16px;
  border-radius: 16px;
  border:1px solid rgba(31,36,68,.85);
  background: rgba(15,18,36,.35);
}
.list__item:hover{ background: rgba(15,18,36,.55); }

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

.footer{
  padding:26px 0 40px;
  border-top:1px solid rgba(31,36,68,.55);
  background: rgba(8,9,16,.35);
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:center; gap:14px;
  color:var(--muted);
}
.footer__links{ display:flex; gap:14px; }
.footer__links a{ color:var(--muted); }
.footer__links a:hover{ color:var(--text); }

.mono{
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.muted{ color:var(--muted); }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-bottom:18px;
}
.gallery__item{
  aspect-ratio: 1;
  border-radius: var(--radius);
  border:1px solid rgba(31,36,68,.9);
  overflow:hidden;
  position:relative;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  display: block;
}
.gallery__item:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.gallery__item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform .3s ease;
}
.gallery__item:hover img{
  transform: scale(1.05);
}
.gallery__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,14,20,.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery__item:hover .gallery__overlay{
  opacity: 1;
}
.gallery__title{
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
/* Placeholder gradients for demo */
.gallery__item--placeholder{
  background: linear-gradient(135deg, rgba(110,243,255,.25), rgba(196,107,255,.20));
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  font-size:14px;
  font-weight:500;
}
.gallery__item--placeholder:nth-child(1){
  background: radial-gradient(circle at 30% 30%, rgba(110,243,255,.35), rgba(196,107,255,.15));
}
.gallery__item--placeholder:nth-child(2){
  background: linear-gradient(225deg, rgba(196,107,255,.3), rgba(110,243,255,.18));
}
.gallery__item--placeholder:nth-child(3){
  background: radial-gradient(circle at 70% 70%, rgba(248,107,255,.25), rgba(110,243,255,.20));
}
.gallery__item--placeholder:nth-child(4){
  background: linear-gradient(165deg, rgba(110,243,255,.28), rgba(140,107,255,.22));
}
.gallery__item--placeholder:nth-child(5){
  background: radial-gradient(circle at 40% 60%, rgba(180,107,255,.30), rgba(110,243,255,.15));
}
.gallery__item--placeholder:nth-child(6){
  background: linear-gradient(315deg, rgba(110,243,255,.32), rgba(196,107,255,.18));
}

/* Gallery pages */
.gallery-full{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.gallery-full__item{
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid rgba(31,36,68,.9);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  background: rgba(15,18,36,.40);
  position: relative;
}
.gallery-full__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.gallery-full__item:hover img{
  transform: scale(1.05);
}
.gallery-full__item--placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(82,229,255,.15), rgba(74,159,255,.10));
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}
.gallery-actions{
  display: flex;
  gap: 14px;
  justify-content: center;
  padding-top: 12px;
}

@media (max-width: 920px){
  .nav{ display:none; }
  .grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .gallery-full{ grid-template-columns: 1fr; }
  .two{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .section__head{ flex-direction:column; align-items:flex-start; }
}
