/*
  Work.europe — lightweight landing (pure HTML/CSS/JS)
  Colors & style tuned to match the provided mockup.
*/
:root{
  --bg:#0e0f13;
  --card:#16171d;
  --muted:#9aa0a6;
  --text:#e8eaed;
  --accent:#c5ff3d; /* neon lime */
  --accent-2:#5ea8ff;
  --shadow:0 20px 60px rgba(0,0,0,.45);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:radial-gradient(1200px 800px at 85% -10%, #1b1d23 0%, #0e0f13 55%);
  overflow-x:hidden;
}

/* Header */
.site-header{
  position:fixed;
  top:18px; right:24px;
  z-index:40;
}
.lang-switch{
  display:flex; align-items:center; gap:8px;
  backdrop-filter: blur(6px);
  background: rgba(22,23,29,.6);
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.06);
}
.lang-btn{
  border:1px solid rgba(255,255,255,.12);
  background:transparent;
  color:#dfe3ea;
  padding:4px 10px;
  border-radius:999px;
  cursor:pointer;
  font-weight:600;
  letter-spacing:.2px;
}
.lang-btn:hover{ border-color: rgba(197,255,61,.6); color:#fff }
.globe{filter:grayscale(.1)}

/* Hero */
.hero{
  position:relative;
  min-height:100svh;
  display:grid;
  place-items:center;
  padding:120px 24px 72px;
}
.hero-inner{
  position:relative;
  width:min(1150px, 92vw);
  margin-inline:auto;
  text-align:left;
}
.brand{
  margin:0 0 8px;
  font-family:"Playfair Display", Georgia, serif;
  font-weight:800;
  font-size:clamp(46px, 6vw, 84px);
  letter-spacing:.5px;
}
.brand .dot{ color:var(--accent); margin:0 .06em }
.tagline{
  margin:4px 0 42px;
  color:var(--muted);
  font-weight:500;
  letter-spacing:.2px;
  font-size:clamp(14px, 2.4vw, 18px);
}

/* Foreground card */
.card{
  position:relative;
  width:min(520px, 92vw);
  background: linear-gradient(180deg, rgba(197,255,61,.08), rgba(197,255,61,0) 26%) , var(--card);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  padding:36px 28px;
  border-radius:24px;
}
.card:before{
  content:"";
  position:absolute; inset:-2px;
  border-radius:26px;
  padding:1px;
  background:linear-gradient(140deg, rgba(197,255,61,.55), rgba(255,255,255,0) 40%);
  -webkit-mask:linear-gradient(#0000,#000) content-box, linear-gradient(#000,#000);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.card-icon{
  width:52px; height:52px;
  display:grid; place-items:center;
  margin-bottom:14px;
  color:#ffd24a;
  background:rgba(255,210,74,.14);
  border:1px solid rgba(255,210,74,.25);
  border-radius:14px;
}
.card-title{
  margin:0 0 18px;
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight:600;
}
.cta{
  --h:48px;
  display:inline-flex; align-items:center; gap:10px;
  background: var(--accent);
  color:#121314;
  height:var(--h);
  padding:0 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  min-width:140px;
  justify-content:center;
  transition: transform .08s ease, box-shadow .18s ease;
  box-shadow: 0 10px 24px rgba(197,255,61,.25);
}
.cta:hover{ transform: translateY(-2px); box-shadow: 0 14px 34px rgba(197,255,61,.35); }
.cta .arrow{ transform: translateX(0); transition: transform .18s ease; }
.cta:hover .arrow{ transform: translateX(2px); }

/* Background split images */
.bg{
  position:absolute; inset:0;
  pointer-events:none;
}
.bg-left, .bg-right{ mix-blend-mode:normal }
.bg-left{
  background:
    radial-gradient(700px 300px at 35% 10%, rgba(197,255,61,.12), transparent 60%),
    url('https://images.unsplash.com/photo-1595152452543-e5fc28ebc2b8?q=80&w=1400&auto=format&fit=crop') center left / cover no-repeat;
  clip-path: polygon(0 0, 60% 0, 48% 100%, 0% 100%);
  filter:saturate(1.05) brightness(.9);
}
.bg-right{
  background:
    radial-gradient(700px 300px at 80% 10%, rgba(94,168,255,.18), transparent 65%),
    url('https://images.unsplash.com/photo-1601297183305-6df142704ea4?q=80&w=1400&auto=format&fit=crop') center right / cover no-repeat;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 52% 100%);
  filter:saturate(1.05) brightness(.9);
}

/* Footer badge */
.made{
  position:fixed; right:22px; bottom:18px;
  display:inline-flex; align-items:center; gap:8px;
  color:#cfd6df; text-decoration:none; font-size:13px;
  padding:8px 12px; border-radius:12px;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}
.made:hover{ color:#fff; border-color: rgba(255,255,255,.12) }

/* Responsive */
@media (max-width: 900px){
  .tagline{ margin-bottom:26px }
  .card{ margin-top:12px }
}
