:root{
  --bg:#000000;
  --card:#0a0a0a;
  --muted:#9e9e9e;
  --accent:#bfbfbf;
  --glass: rgba(255,255,255,0.03);
  --radius:14px;
  --gap:18px;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:
    radial-gradient(800px 400px at 10% 10%, rgba(191,191,191,0.02), transparent 10%),
    var(--bg);
  color:#e6eef6;
  -webkit-font-smoothing:antialiased;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  min-height:100vh;
}

.card{
  width:100%;
  max-width:980px;
  height:calc(100vh - 48px);
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
  border-radius:var(--radius);
  display:flex;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

/* Left column - content */
.left{
  width:54%;
  min-width:320px;
  padding:36px;
  display:flex;
  flex-direction:column;
  gap:16px;
  justify-content:center;
}

.logo{
  font-weight:700;
  font-size:20px;
  color:var(--accent);
  letter-spacing:0.6px;
}

.headline{
  margin:0;
  font-size:28px;
  line-height:1.05;
  color:#f7fbff;
}

.sub{
  margin:0;
  color:var(--muted);
  max-width:45ch;
}

/* Contact */
.contact{
  margin-top:12px;
  color:var(--muted);
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
.contact a{ color:var(--muted); text-decoration:none; margin-left:8px; }

/* Footer */
.foot{
  margin-top:18px;
  color:rgba(255,255,255,0.3);
  font-size:13px;
}

/* Right column - static illustration */
.right{
  width:46%;
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

/* Keep PNG at natural scale, centered, and responsive */
.right .illustration{
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  border-radius:12px;
  transform:none;
  filter:none;
}

/* Remove unused crane animation visibility if present */
.crane, .beam, .cabin, .hook, .load, .box { display:none !important; }

/* Ground and bars - keep hidden to avoid overlap */
.ground, .bar { display:none !important; }

/* Responsive - keep single screen view on small devices */
@media (max-width:880px){
  body{
    /* Make sure the whole card centers vertically on phones */
    display:flex;
    align-items:center;
    justify-content:center;
    padding:16px;
  }

  .card{
    flex-direction:column;
    width:100%;
    height:auto;
    max-height:none;
    justify-content:center;
    align-items:center;
  }

  .left{
    width:100%;
    padding:20px;
    justify-content:center;
    align-items:center;
    text-align:center;
    gap:12px;
  }

  .right{
    width:100%;
    height:auto;
    padding:12px;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .right .illustration{
    width:100%;
    height:auto;
    max-width:400px; /* keeps it from getting too large on wide phones */
    object-fit:contain;
    border-radius:12px;
  }

  .logo{ font-size:18px; }
  .headline{ font-size:22px; line-height:1.15; }
}

/* Ultra-small phones */
@media (max-width:480px){
  .right .illustration{
    max-width:300px;
  }
  .headline{
    font-size:20px;
  }
  .sub{
    font-size:14px;
  }
}
