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

:root{
  --bg: #0a0b10;
  --bg2:#0e1020;
  --card:#0f1224;
  --stroke:#1f2444;
  --text:#e9ecff;
  --muted:#a7b0de;
  --accent:#6ef3ff;
  --accent2:#c46bff;
  --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{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:stretch;
}
.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; }
.chips{ display:flex; gap:10px; flex-wrap:wrap; }
.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;
}

.hero__panel{
  border-radius: var(--radius2);
  border:1px solid rgba(31,36,68,.9);
  background: linear-gradient(180deg, rgba(15,18,36,.7), rgba(10,11,16,.5));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero__panel::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(circle at 20% 10%, rgba(110,243,255,.16), transparent 45%),
              radial-gradient(circle at 70% 80%, rgba(196,107,255,.12), transparent 55%);
  pointer-events:none;
}
.panel{ position:relative; padding:22px; height:100%; display:flex; flex-direction:column; gap:16px; }
.panel__row{ display:flex; gap:12px; }
.meter{
  flex:1;
  display:flex; gap:6px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(31,36,68,.7);
  background: rgba(15,18,36,.35);
}
.meter span{
  flex:1;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(110,243,255,.65), rgba(196,107,255,.35));
  opacity:.25;
}
.meter span:nth-child(2){ opacity:.45; }
.meter span:nth-child(3){ opacity:.65; }
.meter span:nth-child(4){ opacity:.85; }

.knob{
  width:52px; height:52px;
  border-radius: 999px;
  border:1px solid rgba(31,36,68,.9);
  background: radial-gradient(circle at 30% 30%, rgba(233,236,255,.12), transparent 60%),
              linear-gradient(180deg, rgba(15,18,36,.65), rgba(10,11,16,.5));
  box-shadow: inset 0 0 0 6px rgba(0,0,0,.18);
  position:relative;
}
.knob::after{
  content:"";
  position:absolute;
  width:4px; height:18px;
  background: rgba(110,243,255,.8);
  border-radius:999px;
  top:9px; left:50%;
  transform: translateX(-50%) rotate(12deg);
  box-shadow: 0 0 18px rgba(110,243,255,.35);
}

.screen{
  flex:1;
  border-radius: 18px;
  border:1px solid rgba(31,36,68,.85);
  background: linear-gradient(180deg, rgba(8,9,16,.55), rgba(15,18,36,.35));
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.screen__line{
  height:10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(110,243,255,.35), rgba(196,107,255,.22));
  opacity:.7;
}
.screen__line:nth-child(2){ width:72%; opacity:.55; }
.screen__line:nth-child(3){ width:48%; opacity:.4; }

.panel__footer{
  display:flex; justify-content:space-between; gap:12px;
  padding-top:4px;
  color:var(--muted);
}

.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;
}
.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;
}
/* 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));
}

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