/* Interactive idea-to-product workspace visual. */
.workspace-wrap{
  position:relative;
  perspective:1200px;
  padding-bottom:170px
}
.workspace{
  position:relative;
  min-height:560px;
  border:1px solid var(--line);
  border-radius:36px;
  background:radial-gradient(circle at var(--mx,50%) var(--my,30%),rgba(121,242,192,.12),transparent 16rem),radial-gradient(circle at 82% 12%,rgba(130,168,255,.18),transparent 15rem),linear-gradient(145deg,rgba(255,255,255,.1),rgba(255,255,255,.035));
  box-shadow:var(--shadow);
  overflow:hidden;
  transform:perspective(1200px) rotateX(var(--tilt-x,0deg)) rotateY(var(--tilt-y,0deg));
  transition:transform .25s,border-color .25s
}
.workspace:hover{
  border-color:rgba(121,242,192,.28)
}
.window-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 20px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(7,10,16,.34)
}
.traffic{
  display:flex;
  gap:8px
}
.traffic span{
  width:11px;
  height:11px;
  border-radius:50%;
  background:#ff6c8e
}
.traffic span:nth-child(2){
  background:#ffd26d
}
.traffic span:nth-child(3){
  background:#79f2c0
}
.window-title,.workspace-status{
  font-family:var(--mono);
  font-size:12px
}
.window-title{
  color:rgba(248,245,236,.75)
}
.workspace-status{
  color:var(--green)
}
.workspace-main{
  position:relative;
  min-height:500px;
  padding:28px
}
.idea-map{
  position:absolute;
  inset:34px 28px auto;
  height:360px
}
.idea-node{
  position:absolute;
  z-index:2;
  display:grid;
  gap:4px;
  width:142px;
  padding:13px 14px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:20px;
  background:rgba(9,13,20,.78);
  backdrop-filter:blur(14px);
  box-shadow:0 18px 46px rgba(0,0,0,.25)
}
.idea-node strong{
  font-size:14px
}
.idea-node span{
  color:rgba(248,245,236,.55);
  font-family:var(--mono);
  font-size:11px
}
.idea-node.input{
  left:16px;
  top:96px;
  transform:rotate(-1.2deg)
}
.idea-node.apps{
  left:236px;
  top:52px;
  transform:rotate(1deg)
}
.idea-node.tools{
  left:92px;
  top:246px;
  transform:rotate(.8deg)
}
.idea-node.output{
  left:338px;
  top:170px;
  transform:rotate(-1deg);
  border-color:rgba(121,242,192,.27);
  background:rgba(18,45,39,.66)
}
.idea-line{
  position:absolute;
  z-index:1;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(121,242,192,.72),rgba(130,168,255,.28));
  transform-origin:left center;
  box-shadow:0 0 18px rgba(121,242,192,.15)
}
.idea-line.one{
  left:150px;
  top:132px;
  width:102px;
  transform:rotate(-28deg)
}
.idea-line.two{
  left:250px;
  top:126px;
  width:150px;
  transform:rotate(113deg)
}
.idea-line.three{
  left:226px;
  top:282px;
  width:138px;
  transform:rotate(-33deg)
}
.handover-badge{
  position:absolute;
  right:28px;
  bottom:136px;
  width:236px;
  padding:16px;
  border:1px solid rgba(121,242,192,.25);
  border-radius:22px;
  background:linear-gradient(135deg,rgba(121,242,192,.16),rgba(130,168,255,.08));
  backdrop-filter:blur(14px)
}
.handover-badge strong{
  display:block;
  font-size:15px
}
.handover-badge span{
  display:block;
  margin-top:5px;
  color:rgba(248,245,236,.65);
  font-size:12px
}
.workspace-strip{
  position:absolute;
  left:28px;
  right:28px;
  bottom:24px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:9px
}
.status-chip{
  min-height:70px;
  padding:12px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:18px;
  background:rgba(255,255,255,.05)
}
.status-chip small{
  display:block;
  color:var(--green);
  font-family:var(--mono);
  font-weight:900
}
.status-chip span{
  display:block;
  margin-top:4px;
  color:rgba(248,245,236,.68);
  font-size:11px
}
.floating-code-file{
  position:absolute;
  z-index:4;
  left:28px;
  top:592px;
  width:286px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:22px;
  background:rgba(5,8,12,.95);
  box-shadow:0 26px 70px rgba(0,0,0,.36);
  overflow:hidden;
  transform:rotate(-1.1deg)
}
.code-head{
  display:flex;
  justify-content:space-between;
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:rgba(248,245,236,.55);
  font-family:var(--mono);
  font-size:11px
}
.code-body{
  margin:0;
  padding:14px 15px 16px;
  color:rgba(248,245,236,.82);
  font-family:var(--mono);
  font-size:11.5px;
  line-height:1.58;
  white-space:pre-wrap
}
.code-body .key{
  color:var(--blue)
}
.code-body .str{
  color:var(--green)
}
.code-body .var{
  color:var(--gold)
}
.code-tether{
  position:absolute;
  z-index:3;
  left:170px;
  top:558px;
  width:38px;
  height:2px;
  background:linear-gradient(90deg,rgba(121,242,192,.66),rgba(130,168,255,.25));
  transform:rotate(90deg);
  transform-origin:left center
}

