*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
p, ul, li, h1, h2, h3 {
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0a;
  --nav-bg: #141414;
  --green: #2ecc40;
  --green-glow: rgba(46, 204, 64, 0.35);
  --text: #f0f0f0;
  --muted: #8a8a8a;
  --border: #2a2a2a;
  --font-display: 'Syne', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  min-height: 100vh;
}

nav {
  background: var(--nav-bg);
  position: sticky;
  padding: 0 10rem;
  display: flex;
  align-items: center;
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 7rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  font-family: var(--font-mono);
}

.nav-links a:hover { color: var(--text); }

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7rem 8rem;
  min-height: calc(100vh - 60px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 1;
  max-width: 700px;
  animation: fadeUp 0.8s ease both;
}

.hero-tag {
  font-size: 0.7rem;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  color: #ffffff;
}

.hero-left p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--muted);
  
  max-width: 700px;
  text-align: justify;
}

.hero-right {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.2s ease both;
}

.avatar-wrap {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 0 60px rgba(46, 204, 64, 0.1);
  background: #1e2a1f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.karir-group {
  margin-bottom: 1.5rem;  
}

.karir-judul {
  color: var(--green);    
  font-size: 0.85rem;
  
  text-transform: uppercase;
}

.karir-group ul {
  list-style: disc;
  padding-left: 1.2rem;
  padding-top: 0;  /* ← jarak kecil saja */
}

.karir-group ul li {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0;              
}

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #000;
  padding: 1rem 2.2rem;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.2s;
  box-shadow: 0 0 18px var(--green-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 32px var(--green-glow), 0 0 6px var(--green);
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    padding: 4rem 2rem;
    gap: 3rem;
    text-align: center;
  }
  .hero-left p { max-width: 100%; }
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 1.4rem; }
}